{
  "openapi": "3.0.1",
  "info": {
    "title": "in-co-sandbox-gst-compliance",
    "description": "**GST Compliance API** enables businesses to automate compliance requirements like [Taxpayer verification](https://developer.sandbox.co.in/reference/search-gstin-api), [GSTR Filing](https://developer.sandbox.co.in/reference/gst-taxpayer-authentication), [Generating E-Invoices](https://developer.sandbox.co.in/reference/e-invoice-authentication-api), and [E-Way Bills](https://developer.sandbox.co.in/reference/e-way-bill-authentication-api).We provide these APIs from GSTN-authorised GST Suvidha Providers, handling the encryption-decryption and signing so you don't have to handle the complexities.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://api.sandbox.co.in"
    },
    {
      "url": "https://test-api.sandbox.co.in"
    }
  ],
  "tags": [
    {
      "name": "Public"
    },
    {
      "name": "Taxpayer"
    },
    {
      "name": "Taxpayer Auth"
    },
    {
      "name": "Returns"
    },
    {
      "name": "GSTR-1 Documents"
    },
    {
      "name": "File GSTR-1"
    },
    {
      "name": "GSTR-2A Documents"
    },
    {
      "name": "GSTR-2B Document"
    },
    {
      "name": "File GSTR-3B"
    },
    {
      "name": "GSTR-4"
    },
    {
      "name": "File GSTR-9"
    },
    {
      "name": "Invoice Management System"
    },
    {
      "name": "GSTR-1A Documents"
    },
    {
      "name": "File GSTR-1A"
    },
    {
      "name": "Ledgers"
    },
    {
      "name": "e-Invoice"
    },
    {
      "name": "Sales e-Invoices for return period"
    },
    {
      "name": "Purchase e-Invoices for return period"
    },
    {
      "name": "Front Office Notices"
    },
    {
      "name": "Front Office"
    },
    {
      "name": "AATO"
    },
    {
      "name": "e-Invoice1"
    },
    {
      "name": "Authentication"
    },
    {
      "name": "e-Invoice12"
    },
    {
      "name": "E-Way Bill"
    },
    {
      "name": "E-Way Bill1"
    },
    {
      "name": "Authentication1"
    },
    {
      "name": "Consignor"
    },
    {
      "name": "Consolidated E-Way Bill"
    },
    {
      "name": "Multi-Vehicle Movement"
    },
    {
      "name": "Consignee"
    },
    {
      "name": "Transporter"
    },
    {
      "name": "Consolidated E-Way Bill1"
    },
    {
      "name": "Multi-vehicle Movement"
    },
    {
      "name": "Common"
    }
  ],
  "paths": {
    "/gst/compliance/public/gstin/changed-list": {
      "post": {
        "summary": "Get day-wise changed GSTINs",
        "deprecated": false,
        "description": "Retrieve GSTIN changes reported for a state on a specified date. Each record contains an MD5 hash of the GSTIN and its change type.",
        "operationId": "getDayWiseChangedGstins",
        "tags": [
          "Public"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token used to authorize the request.",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-accept-cache",
            "in": "header",
            "description": "Pass true to accept a cached response. Requests without this header, or with false, are sent to the origin.",
            "required": false,
            "example": "true",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key used to identify your Sandbox account.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Sandbox API version to use.",
            "required": false,
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "description": "Filters for retrieving the changed GSTIN list.",
                "additionalProperties": false,
                "required": [
                  "date",
                  "state_code"
                ],
                "properties": {
                  "date": {
                    "type": "string",
                    "description": "Date for which to retrieve changed GSTIN records, in DD-MM-YYYY format.",
                    "pattern": "^\\d{2}-\\d{2}-\\d{4}$",
                    "example": "04-01-2017"
                  },
                  "state_code": {
                    "type": "string",
                    "description": "Required two-digit GST state code for which to retrieve changed GSTIN records.",
                    "minLength": 2,
                    "maxLength": 2,
                    "pattern": "^\\d{2}$",
                    "example": "01"
                  },
                  "page": {
                    "type": "integer",
                    "format": "int32",
                    "description": "Page number of the changed GSTIN list to retrieve. Defaults to 1.",
                    "minimum": 1,
                    "default": 1,
                    "example": 1
                  }
                }
              },
              "examples": {
                "Changed GSTIN list": {
                  "summary": "Changed GSTINs for a state and date",
                  "value": {
                    "date": "04-01-2017",
                    "state_code": "01",
                    "page": 1
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Changed GSTIN records retrieved successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "description": "Sandbox response containing the changed GSTIN list.",
                  "required": [
                    "code",
                    "data",
                    "timestamp",
                    "transaction_id"
                  ],
                  "properties": {
                    "code": {
                      "type": "integer",
                      "description": "HTTP status code.",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "description": "Response payload containing the requested data or error details.",
                      "required": [
                        "data",
                        "status_cd"
                      ],
                      "properties": {
                        "data": {
                          "type": "object",
                          "description": "GSTN payload containing changed GSTIN records and pagination details.",
                          "required": [
                            "tpgcnt",
                            "cpgnum",
                            "ismpg",
                            "cnt",
                            "gstLst",
                            "totalCount"
                          ],
                          "properties": {
                            "tpgcnt": {
                              "type": "integer",
                              "description": "Total number of pages in the result set.",
                              "example": 1
                            },
                            "cpgnum": {
                              "type": "integer",
                              "description": "Page number returned in this response.",
                              "example": 1
                            },
                            "ismpg": {
                              "type": "string",
                              "description": "Whether more than one page is available: Y for yes or N for no.",
                              "enum": [
                                "Y",
                                "N"
                              ],
                              "example": "N"
                            },
                            "cnt": {
                              "type": "integer",
                              "description": "Number of changed GSTIN records returned on this page.",
                              "example": 6
                            },
                            "gstLst": {
                              "type": "array",
                              "description": "Changed GSTIN records grouped by GST state code.",
                              "items": {
                                "type": "object",
                                "required": [
                                  "state_cd",
                                  "gstdtls"
                                ],
                                "properties": {
                                  "state_cd": {
                                    "type": "string",
                                    "description": "Two-digit GST state code for the grouped records.",
                                    "minLength": 2,
                                    "maxLength": 2,
                                    "pattern": "^\\d{2}$",
                                    "example": "24"
                                  },
                                  "gstdtls": {
                                    "type": "array",
                                    "description": "Changed GSTIN records for the state.",
                                    "items": {
                                      "type": "object",
                                      "required": [
                                        "chng_typ",
                                        "gstin",
                                        "chng_dt"
                                      ],
                                      "properties": {
                                        "chng_typ": {
                                          "type": "string",
                                          "description": "GSTIN change type: G for generated, C for cancelled, U for updated, I for inactive, or E for expired.",
                                          "enum": [
                                            "G",
                                            "C",
                                            "U",
                                            "I",
                                            "E"
                                          ],
                                          "example": "G"
                                        },
                                        "gstin": {
                                          "type": "string",
                                          "description": "32-character MD5 hash of the GSTIN, not the plaintext GSTIN.",
                                          "minLength": 32,
                                          "maxLength": 32,
                                          "pattern": "^[a-f0-9]{32}$",
                                          "example": "427adfe66a80ec823a53c1dd56fd0157"
                                        },
                                        "chng_dt": {
                                          "type": "string",
                                          "description": "Date on which the GSTIN changed, in DD-MM-YYYY format.",
                                          "pattern": "^\\d{2}-\\d{2}-\\d{4}$",
                                          "example": "24-01-2017"
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            },
                            "totalCount": {
                              "type": "integer",
                              "description": "Total number of changed GSTIN records across all pages.",
                              "example": 7
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "description": "GSTN status code for the response.",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "integer",
                      "format": "int64",
                      "description": "Unix timestamp in milliseconds indicating when the server generated the response.",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "format": "uuid",
                      "description": "Unique identifier for tracking the request across systems.",
                      "example": "a4bcca2e-7e82-4eaf-8046-6cd4e8c028c1"
                    }
                  }
                },
                "examples": {
                  "Changed GSTIN list": {
                    "summary": "Changed GSTIN records",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "tpgcnt": 1,
                          "cpgnum": 1,
                          "ismpg": "N",
                          "cnt": 6,
                          "gstLst": [
                            {
                              "state_cd": "24",
                              "gstdtls": [
                                {
                                  "chng_typ": "G",
                                  "gstin": "427adfe66a80ec823a53c1dd56fd0157",
                                  "chng_dt": "24-01-2017"
                                }
                              ]
                            }
                          ],
                          "totalCount": 7
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a4bcca2e-7e82-4eaf-8046-6cd4e8c028c1"
                    }
                  }
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/gst/compliance/public/gstrs/preference": {
      "post": {
        "summary": "Get Return Preference",
        "deprecated": false,
        "description": "API to get Return preference for taxpayers",
        "operationId": "getReturnPreference",
        "tags": [
          "Public"
        ],
        "parameters": [
          {
            "name": "financial_year",
            "in": "query",
            "description": "Financial year for which the return preference is requested",
            "required": true,
            "schema": {
              "type": "string",
              "example": "FY 2025-26"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT authorization token",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-accept-cache",
            "in": "header",
            "description": "Pass true to get cached response.",
            "required": false,
            "example": "",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "gstin"
                ],
                "properties": {
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN for which the return preference is requested"
                  }
                }
              },
              "examples": {
                "Monthly preference 2": {
                  "value": {
                    "gstin": "24ABKCS2033B1ZV"
                  },
                  "summary": "Monthly preference 2"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Monthly preference",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "data": {
                          "type": "object",
                          "properties": {
                            "response": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "preference": {
                                    "type": "string",
                                    "description": "Return filing preference",
                                    "example": "M"
                                  },
                                  "quarter": {
                                    "type": "string",
                                    "description": "Quarter for which the preference applies",
                                    "example": "Q1"
                                  }
                                },
                                "required": [
                                  "preference",
                                  "quarter"
                                ]
                              },
                              "example": [
                                {
                                  "preference": "M",
                                  "quarter": "Q1"
                                },
                                {
                                  "preference": "M",
                                  "quarter": "Q2"
                                },
                                {
                                  "preference": "M",
                                  "quarter": "Q3"
                                },
                                {
                                  "preference": "M",
                                  "quarter": "Q4"
                                }
                              ]
                            }
                          },
                          "required": [
                            "response"
                          ]
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        }
                      },
                      "required": [
                        "data",
                        "status_cd"
                      ]
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1775825033134
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "903962ca-bc29-45c5-b879-3e51c7f9887d"
                    }
                  },
                  "required": [
                    "code",
                    "data",
                    "timestamp",
                    "transaction_id"
                  ]
                },
                "examples": {
                  "Monthly preference": {
                    "summary": "Monthly preference",
                    "value": {
                      "code": 200,
                      "timestamp": 1775825033134,
                      "data": {
                        "data": {
                          "response": [
                            {
                              "preference": "M",
                              "quarter": "Q1"
                            },
                            {
                              "preference": "M",
                              "quarter": "Q2"
                            },
                            {
                              "preference": "M",
                              "quarter": "Q3"
                            },
                            {
                              "preference": "M",
                              "quarter": "Q4"
                            }
                          ]
                        },
                        "status_cd": "1"
                      },
                      "transaction_id": "903962ca-bc29-45c5-b879-3e51c7f9887d"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/public/gstin/verify": {
      "post": {
        "summary": "Verify GSTIN",
        "deprecated": false,
        "description": "Validate GST-registered businesses by passing their GSTIN and return basic taxpayer registration details.",
        "operationId": "verifyGstin",
        "tags": [
          "Public"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-accept-cache",
            "in": "header",
            "description": "Pass true to get cached response",
            "required": false,
            "example": "",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "gstin"
                ],
                "properties": {
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN of the taxpayer"
                  }
                }
              },
              "examples": {
                "200 valid gstin": {
                  "value": {
                    "gstin": "24ABKCS2033B1ZV"
                  },
                  "summary": "200 valid gstin"
                },
                "Cancelled on application of Taxpayer": {
                  "value": {
                    "gstin": "33EIUPS5109E1ZZ"
                  },
                  "summary": "Cancelled on application of Taxpayer"
                },
                "NRI Gstin": {
                  "value": {
                    "gstin": "9917SGP29002OSR"
                  },
                  "summary": "NRI Gstin"
                },
                "Verify Gstin Bank": {
                  "value": {
                    "gstin": "24AAACS8577K1ZV"
                  },
                  "summary": "Verify Gstin Bank"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Valid GSTIN / 200 Cancelled GSTIN / 200 NRI GSTIN / 200 Bank GSTIN",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "data": {
                          "type": "object",
                          "properties": {
                            "legalName": {
                              "type": "string",
                              "description": "Legal name of the taxpayer",
                              "example": "SANDBOX FINANCIAL TECHNOLOGIES PRIVATE LIMITED"
                            },
                            "bussNature": {
                              "type": "string",
                              "description": "Business nature of the taxpayer",
                              "example": "Service Provider and Others"
                            },
                            "stateName": {
                              "type": "string",
                              "description": "State name",
                              "example": "Gujarat"
                            },
                            "validGstin": {
                              "type": "boolean",
                              "description": "Whether the GSTIN is valid",
                              "example": true
                            },
                            "stateCode": {
                              "type": "string",
                              "description": "State code",
                              "example": "24"
                            },
                            "pan": {
                              "type": "string",
                              "description": "PAN of the taxpayer",
                              "example": "ABKCS2033B"
                            },
                            "gstin": {
                              "type": "string",
                              "description": "GST Identification Number",
                              "example": "24ABKCS2033B1ZV"
                            },
                            "regStartDate": {
                              "type": "string",
                              "description": "Registration start date",
                              "example": "06/02/2023"
                            },
                            "status": {
                              "type": "string",
                              "description": "GST registration status",
                              "example": "Active"
                            }
                          },
                          "required": [
                            "legalName",
                            "bussNature",
                            "stateName",
                            "validGstin",
                            "stateCode",
                            "pan",
                            "gstin",
                            "regStartDate",
                            "status"
                          ]
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        }
                      },
                      "required": [
                        "data",
                        "status_cd"
                      ]
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1775824753133
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "31ac0ccf-39b6-42e0-9646-aebf47d8d980"
                    }
                  }
                },
                "examples": {
                  "200 valid gstin": {
                    "summary": "200 valid gstin",
                    "value": {
                      "code": 200,
                      "timestamp": 1775824753133,
                      "data": {
                        "data": {
                          "legalName": "SANDBOX FINANCIAL TECHNOLOGIES PRIVATE LIMITED",
                          "bussNature": "Service Provider and Others",
                          "stateName": "Gujarat",
                          "validGstin": true,
                          "stateCode": "24",
                          "pan": "ABKCS2033B",
                          "gstin": "24ABKCS2033B1ZV",
                          "regStartDate": "06/02/2023",
                          "status": "Active"
                        },
                        "status_cd": "1"
                      },
                      "transaction_id": "31ac0ccf-39b6-42e0-9646-aebf47d8d980"
                    }
                  },
                  "Cancelled on application of Taxpayer": {
                    "summary": "Cancelled on application of Taxpayer",
                    "value": {
                      "code": 200,
                      "timestamp": 1775824883550,
                      "data": {
                        "data": {
                          "legalName": "SRINIVASAN",
                          "bussNature": "Service Provider and Others",
                          "stateName": "Tamil Nadu",
                          "validGstin": true,
                          "stateCode": "33",
                          "pan": "EIUPS5109E",
                          "gstin": "33EIUPS5109E1ZZ",
                          "regStartDate": "11/02/2021",
                          "status": "Cancelled on application of Taxpayer"
                        },
                        "status_cd": "1"
                      },
                      "transaction_id": "e0d44d67-957a-48d1-8cd5-f48879a1bde4"
                    }
                  },
                  "NRI Gstin": {
                    "summary": "NRI Gstin",
                    "value": {
                      "code": 200,
                      "timestamp": 1775824954977,
                      "data": {
                        "data": {
                          "legalName": "LINKEDIN SINGAPORE PTE. LTD.",
                          "bussNature": "",
                          "stateName": "CBIC",
                          "validGstin": true,
                          "stateCode": "99",
                          "pan": "AADCL0508Q",
                          "gstin": "9917SGP29002OSR",
                          "regStartDate": "01/07/2017",
                          "status": "Active"
                        },
                        "status_cd": "1"
                      },
                      "transaction_id": "c1d91a87-fe0d-471f-8e69-02a9fe363383"
                    }
                  },
                  "Verify Gstin Bank": {
                    "summary": "Verify Gstin Bank",
                    "value": {
                      "code": 200,
                      "timestamp": 1775824996094,
                      "data": {
                        "data": {
                          "legalName": "STATE BANK OF INDIA",
                          "bussNature": "Service Provider and Others",
                          "stateName": "Gujarat",
                          "validGstin": true,
                          "stateCode": "24",
                          "pan": "AAACS8577K",
                          "gstin": "24AAACS8577K1ZV",
                          "regStartDate": "01/07/2017",
                          "status": "Active"
                        },
                        "status_cd": "1"
                      },
                      "transaction_id": "dd61da24-1e0b-4956-ab37-28d99bee75ef"
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "422": {
            "description": "Invalid GSTIN pattern",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 422
                    },
                    "message": {
                      "type": "string",
                      "example": "Invalid GSTIN pattern"
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1775824753133
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "71060364-7cc1-4436-84d7-3bdf4a47de55"
                    }
                  }
                },
                "examples": {
                  "Invalid GSTIN pattern": {
                    "summary": "Invalid GSTIN pattern",
                    "value": {
                      "code": 422,
                      "message": "Invalid GSTIN pattern",
                      "timestamp": 1775824753133,
                      "transaction_id": "71060364-7cc1-4436-84d7-3bdf4a47de55"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/public/unregistered-applicants": {
      "post": {
        "summary": "Get unregistered applicant details",
        "deprecated": false,
        "description": "Retrieve GST registration details for an unregistered e-commerce applicant using its enrolment number.",
        "operationId": "getUnregisteredApplicants",
        "tags": [
          "Public"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token used to authorize the request.",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-accept-cache",
            "in": "header",
            "description": "Pass true to accept a cached response. Requests without this header, or with false, are sent to the origin.",
            "required": false,
            "example": "true",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key used to identify your Sandbox account.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Sandbox API version to use.",
            "required": false,
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "description": "Identifier for the unregistered applicant.",
                "additionalProperties": false,
                "required": [
                  "enrolment_number"
                ],
                "properties": {
                  "enrolment_number": {
                    "type": "string",
                    "description": "GST enrolment number of the unregistered applicant.",
                    "example": "292200000001ES9"
                  }
                }
              },
              "examples": {
                "Unregistered applicant": {
                  "summary": "Fetch an unregistered applicant",
                  "value": {
                    "enrolment_number": "292200000001ES9"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Unregistered applicant details retrieved successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code",
                    "data",
                    "timestamp",
                    "transaction_id"
                  ],
                  "properties": {
                    "code": {
                      "type": "integer",
                      "description": "HTTP status code.",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "required": [
                        "data",
                        "status_cd"
                      ],
                      "properties": {
                        "data": {
                          "type": "object",
                          "description": "GSTN details for the unregistered applicant.",
                          "required": [
                            "name",
                            "pan",
                            "state",
                            "authstatus",
                            "regdt",
                            "addtls"
                          ],
                          "properties": {
                            "name": {
                              "type": "string",
                              "description": "Legal name of the unregistered applicant.",
                              "maxLength": 200,
                              "example": "Dev Prakruthi"
                            },
                            "pan": {
                              "type": "string",
                              "description": "PAN of the unregistered applicant.",
                              "minLength": 10,
                              "maxLength": 10,
                              "example": "SRIFP2884S"
                            },
                            "state": {
                              "type": "string",
                              "description": "State of the unregistered applicant.",
                              "maxLength": 200,
                              "example": "Tamil Nadu"
                            },
                            "goodsdetails": {
                              "type": "string",
                              "description": "Goods details supplied by the applicant.",
                              "maxLength": 250,
                              "example": ""
                            },
                            "servicedetails": {
                              "type": "string",
                              "description": "Service details supplied by the applicant.",
                              "maxLength": 250,
                              "example": ""
                            },
                            "authstatus": {
                              "type": "string",
                              "description": "Applicant status: A for active or C for cancelled.",
                              "enum": [
                                "A",
                                "C"
                              ],
                              "example": "A"
                            },
                            "regdt": {
                              "type": "string",
                              "description": "Applicant registration date in DD/MM/YYYY format.",
                              "pattern": "^\\d{2}/\\d{2}/\\d{4}$",
                              "example": "28/09/1989"
                            },
                            "candt": {
                              "type": "string",
                              "description": "Applicant cancellation date in DD/MM/YYYY format, when cancelled.",
                              "pattern": "^(|\\d{2}/\\d{2}/\\d{4})$",
                              "example": ""
                            },
                            "addtls": {
                              "type": "object",
                              "description": "Address details of the unregistered applicant.",
                              "required": [
                                "bnm",
                                "st",
                                "loc",
                                "pncd",
                                "stcd",
                                "dst",
                                "cnty",
                                "city"
                              ],
                              "properties": {
                                "bno": {
                                  "type": "string",
                                  "description": "Building number.",
                                  "maxLength": 60,
                                  "example": "3/1-10"
                                },
                                "bnm": {
                                  "type": "string",
                                  "description": "Building name.",
                                  "maxLength": 60,
                                  "example": ""
                                },
                                "st": {
                                  "type": "string",
                                  "description": "Street name.",
                                  "maxLength": 50,
                                  "example": "3rd Street"
                                },
                                "loc": {
                                  "type": "string",
                                  "description": "Locality.",
                                  "maxLength": 50,
                                  "example": "West Mambalam"
                                },
                                "pncd": {
                                  "type": "string",
                                  "description": "Six-digit postal code.",
                                  "pattern": "^\\d{6}$",
                                  "example": "600033"
                                },
                                "stcd": {
                                  "type": "string",
                                  "description": "State name.",
                                  "maxLength": 50,
                                  "example": "Tamil Nadu"
                                },
                                "lg": {
                                  "type": "string",
                                  "description": "Longitude.",
                                  "maxLength": 27,
                                  "example": "13.035805"
                                },
                                "lt": {
                                  "type": "string",
                                  "description": "Latitude.",
                                  "maxLength": 27,
                                  "example": "80.2204520000001"
                                },
                                "dst": {
                                  "type": "string",
                                  "description": "District name.",
                                  "maxLength": 50,
                                  "example": "Chennai"
                                },
                                "cnty": {
                                  "type": "string",
                                  "description": "Country code.",
                                  "maxLength": 50,
                                  "example": "IND"
                                },
                                "landMark": {
                                  "type": "string",
                                  "description": "Landmark.",
                                  "maxLength": 50,
                                  "example": "West Mambalam Sub Post Office"
                                },
                                "city": {
                                  "type": "string",
                                  "description": "City name.",
                                  "maxLength": 50,
                                  "example": "Chennai"
                                }
                              }
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "description": "GSTN status code for the response.",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "integer",
                      "format": "int64",
                      "description": "Unix timestamp in milliseconds indicating when the server generated the response.",
                      "example": 1785424627417
                    },
                    "transaction_id": {
                      "type": "string",
                      "format": "uuid",
                      "description": "Unique identifier for tracking the request across systems.",
                      "example": "f8be2d24-ed85-4a65-9763-0a3bef00870a"
                    }
                  }
                },
                "examples": {
                  "Unregistered applicant": {
                    "summary": "Unregistered applicant details",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "name": "Dev Prakruthi",
                          "pan": "SRIFP2884S",
                          "state": "Tamil Nadu",
                          "authstatus": "A",
                          "regdt": "28/09/1989",
                          "candt": "",
                          "addtls": {
                            "bno": "3/1-10",
                            "bnm": "",
                            "st": "3rd Street",
                            "loc": "West Mambalam",
                            "pncd": "600033",
                            "stcd": "Tamil Nadu",
                            "lg": "13.035805",
                            "lt": "80.2204520000001",
                            "dst": "Chennai",
                            "cnty": "IND",
                            "landMark": "West Mambalam Sub Post Office",
                            "city": "Chennai"
                          },
                          "goodsdetails": "",
                          "servicedetails": ""
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1785424627417,
                      "transaction_id": "f8be2d24-ed85-4a65-9763-0a3bef00870a"
                    }
                  }
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/gst/compliance/public/unregistered-applicants/validation": {
      "post": {
        "summary": "Validate unregistered applicants",
        "deprecated": false,
        "description": "Validate the email address and/or mobile number registered for an unregistered e-commerce applicant.",
        "operationId": "validateUnregisteredApplicant",
        "tags": [
          "Public"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token used to authorize the request.",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-accept-cache",
            "in": "header",
            "description": "Pass true to accept a cached response. Requests without this header, or with false, are sent to the origin.",
            "required": false,
            "example": "true",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key used to identify your Sandbox account.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Sandbox API version to use.",
            "required": false,
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "description": "Contact details to validate for an unregistered applicant.",
                "additionalProperties": false,
                "required": [
                  "enrolment_number"
                ],
                "anyOf": [
                  {
                    "required": [
                      "email"
                    ]
                  },
                  {
                    "required": [
                      "mobile"
                    ]
                  }
                ],
                "properties": {
                  "enrolment_number": {
                    "type": "string",
                    "description": "GST enrolment number of the unregistered applicant.",
                    "maxLength": 15,
                    "example": "372300000015ES1"
                  },
                  "mobile": {
                    "type": "string",
                    "description": "Mobile number registered for the applicant.",
                    "maxLength": 10,
                    "example": "9898989898"
                  },
                  "email": {
                    "type": "string",
                    "format": "email",
                    "description": "Email address registered for the applicant.",
                    "maxLength": 254,
                    "example": "abcd@gmail.com"
                  }
                }
              },
              "examples": {
                "Validate email and mobile": {
                  "summary": "Validate both contact details",
                  "value": {
                    "enrolment_number": "372300000015ES1",
                    "mobile": "9898989898",
                    "email": "abcd@gmail.com"
                  }
                },
                "Validate email only": {
                  "summary": "Validate an email address",
                  "value": {
                    "enrolment_number": "372300000015ES1",
                    "email": "abcd@gmail.com"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Unregistered applicant contact details validated successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code",
                    "data",
                    "timestamp",
                    "transaction_id"
                  ],
                  "properties": {
                    "code": {
                      "type": "integer",
                      "description": "HTTP status code.",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "required": [
                        "data",
                        "status_cd"
                      ],
                      "properties": {
                        "data": {
                          "type": "object",
                          "description": "GSTN contact-detail validation result.",
                          "required": [
                            "Enrolment Number"
                          ],
                          "properties": {
                            "Enrolment Number": {
                              "type": "string",
                              "description": "Enrolment number of the unregistered applicant.",
                              "example": "372300000015ES1"
                            },
                            "Mobile Number": {
                              "type": "string",
                              "description": "Whether the supplied mobile number matched the applicant record.",
                              "enum": [
                                "matched",
                                "unmatched"
                              ],
                              "example": "matched"
                            },
                            "Email Address": {
                              "type": "string",
                              "description": "Whether the supplied email address matched the applicant record.",
                              "enum": [
                                "matched",
                                "unmatched"
                              ],
                              "example": "unmatched"
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "description": "GSTN status code for the response.",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "integer",
                      "format": "int64",
                      "description": "Unix timestamp in milliseconds indicating when the server generated the response.",
                      "example": 1785424627417
                    },
                    "transaction_id": {
                      "type": "string",
                      "format": "uuid",
                      "description": "Unique identifier for tracking the request across systems.",
                      "example": "eb03920d-5dae-447b-aa2a-8e4931ccbe58"
                    }
                  }
                },
                "examples": {
                  "Validated contact details": {
                    "summary": "Email and mobile validation result",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "Enrolment Number": "372300000015ES1",
                          "Mobile Number": "matched",
                          "Email Address": "unmatched"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1785424627417,
                      "transaction_id": "eb03920d-5dae-447b-aa2a-8e4931ccbe58"
                    }
                  }
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/gst/compliance/public/gstin/search": {
      "post": {
        "summary": "Search GSTIN",
        "deprecated": false,
        "description": "Verify GST-registered businesses by passing their GSTIN.",
        "operationId": "searchGstin",
        "tags": [
          "Public"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-accept-cache",
            "in": "header",
            "description": "Pass true to accept the cached response. If the header is not passed, or if false is sent as the value, the request will hit the origin.",
            "required": false,
            "example": "true",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "gstin"
                ],
                "properties": {
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN of the taxpayer"
                  }
                }
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "gstin": "33ABKCS2033B1ZW"
                  },
                  "summary": "200 Success"
                },
                "200 Success 2": {
                  "value": {
                    "gstin": "29AFSPB9500E1ZY"
                  },
                  "summary": "200 Success 2"
                },
                "FO8000 No records found": {
                  "value": {
                    "gstin": "07CQZCD1111I4Z7"
                  },
                  "summary": "FO8000 No records found"
                },
                "200 Cancelled GSTIN": {
                  "value": {
                    "gstin": "36AEOFS9999J1ZI"
                  },
                  "summary": "200 Cancelled GSTIN"
                },
                "200 SEZ": {
                  "value": {
                    "gstin": "anurag24AAACZ0629H1ZI"
                  },
                  "summary": "200 SEZ"
                },
                "200 ISD": {
                  "value": {
                    "gstin": "27AACCA8432H2ZP"
                  },
                  "summary": "200 ISD"
                },
                "200 Multiple additional addresses of business": {
                  "value": {
                    "gstin": "24AABCG8033D1Z2"
                  },
                  "summary": "200 Multiple additional addresses of business"
                },
                "200 Public Limited Company": {
                  "value": {
                    "gstin": "27AACCN0053F1ZW"
                  },
                  "summary": "200 Public Limited Company"
                },
                "200 Public Sector Bank": {
                  "value": {
                    "gstin": "24AAACS8577K1ZV"
                  },
                  "summary": "200 Public Sector Bank"
                },
                "200 NRI GSTIN": {
                  "value": {
                    "gstin": "9917SGP29002OSR"
                  },
                  "summary": "200 NRI GSTIN"
                },
                "Invalid GSTIN pattern": {
                  "value": {
                    "gstin": "3418FIN00001UNY"
                  },
                  "summary": "Invalid GSTIN pattern"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Success / 200 Success / 200 SEZ / 200 ISD / 200 Multiple additional addresses of business / 200 Cancelled GSTIN / 200 Public Limited Company / 200 Public Sector Bank / FO8000 No records found / 200 NRI GSTIN",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "data": {
                          "type": "object",
                          "properties": {
                            "adadr": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "addr": {
                                    "type": "object",
                                    "properties": {
                                      "bnm": {
                                        "type": "string",
                                        "description": "Building Name",
                                        "example": "ELPHINSTONE BUILDING"
                                      },
                                      "bno": {
                                        "type": "string",
                                        "description": "Building Number",
                                        "example": "10"
                                      },
                                      "flno": {
                                        "type": "string",
                                        "description": "Floor number",
                                        "example": "1ST FLOOR"
                                      },
                                      "lg": {
                                        "type": "string",
                                        "description": "longitude",
                                        "example": "27.0238"
                                      },
                                      "loc": {
                                        "type": "string",
                                        "description": "location",
                                        "example": "FORT"
                                      },
                                      "lt": {
                                        "type": "string",
                                        "description": "lattitude",
                                        "example": "74.2179"
                                      },
                                      "pncd": {
                                        "type": "string",
                                        "description": "Pincode",
                                        "example": "249185"
                                      },
                                      "st": {
                                        "type": "string",
                                        "description": "Street Name",
                                        "example": "10, VEER NARIMAN ROAD"
                                      },
                                      "stcd": {
                                        "type": "string",
                                        "description": "State Name",
                                        "example": "Uttarakhand"
                                      }
                                    },
                                    "required": [
                                      "loc",
                                      "lg",
                                      "pncd",
                                      "stcd",
                                      "st",
                                      "lt",
                                      "bno",
                                      "bnm",
                                      "flno"
                                    ]
                                  },
                                  "ntr": {
                                    "type": "array",
                                    "items": {
                                      "type": "string",
                                      "description": "Nature of Additional place of business",
                                      "example": "Wholesale Business"
                                    },
                                    "example": [
                                      "Wholesale Business"
                                    ]
                                  }
                                },
                                "required": [
                                  "ntr",
                                  "addr"
                                ]
                              },
                              "example": [
                                {
                                  "addr": {
                                    "bnm": "ELPHINSTONE BUILDING",
                                    "bno": "10",
                                    "flno": "1ST FLOOR",
                                    "lg": "27.0238",
                                    "loc": "FORT",
                                    "lt": "74.2179",
                                    "pncd": "249185",
                                    "st": "10, VEER NARIMAN ROAD",
                                    "stcd": "Uttarakhand"
                                  },
                                  "ntr": [
                                    "Wholesale Business"
                                  ]
                                }
                              ]
                            },
                            "canclDt": {
                              "type": "string",
                              "example": ""
                            },
                            "ctb": {
                              "type": "string",
                              "description": "Constitution of Business",
                              "example": "Foreign LLP"
                            },
                            "ctj": {
                              "type": "string",
                              "description": "Center Jurisdiction",
                              "example": "BCP THUMMAKUNTA"
                            },
                            "ctjCd": {
                              "type": "string",
                              "description": "Center Jurisdiction Code",
                              "example": "AP004"
                            },
                            "cxdt": {
                              "type": "string",
                              "description": "Date Of Cancellation",
                              "example": ""
                            },
                            "dty": {
                              "type": "string",
                              "description": "TaxPayer type",
                              "example": "Regular"
                            },
                            "einvoiceStatus": {
                              "type": "string",
                              "description": "eInvoice enablement status for GSTIN",
                              "example": "Yes"
                            },
                            "gstin": {
                              "type": "string",
                              "description": "GST Identification Number",
                              "example": "05ABNTY3290P8ZB"
                            },
                            "lgnm": {
                              "type": "string",
                              "example": "MS CORPORATION"
                            },
                            "lstupdt": {
                              "type": "string",
                              "example": "05/01/2017"
                            },
                            "nba": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "example": "Bonded Warehouse"
                              },
                              "description": "Nature of Business Activity",
                              "example": [
                                "Bonded Warehouse",
                                "EOU / STP / EHTP",
                                "Factory / Manufacturing",
                                "Input Service Distributor (ISD)",
                                "Leasing Business"
                              ]
                            },
                            "pradr": {
                              "type": "object",
                              "properties": {
                                "addr": {
                                  "type": "object",
                                  "properties": {
                                    "bnm": {
                                      "type": "string",
                                      "description": "Building Name",
                                      "example": "ELPHINSTONE BUILDING"
                                    },
                                    "bno": {
                                      "type": "string",
                                      "description": "Building Number",
                                      "example": "10"
                                    },
                                    "dst": {
                                      "type": "string",
                                      "example": "Bengaluru Urban"
                                    },
                                    "flno": {
                                      "type": "string",
                                      "description": "Floor Number",
                                      "example": "1ST FLOOR"
                                    },
                                    "geocodelvl": {
                                      "type": "string",
                                      "example": "NA"
                                    },
                                    "landMark": {
                                      "type": "string",
                                      "example": ""
                                    },
                                    "lg": {
                                      "type": "string",
                                      "description": "longitude",
                                      "example": "27.0238"
                                    },
                                    "loc": {
                                      "type": "string",
                                      "description": "Location",
                                      "example": "FORT"
                                    },
                                    "locality": {
                                      "type": "string",
                                      "example": ""
                                    },
                                    "lt": {
                                      "type": "string",
                                      "description": "lattitude",
                                      "example": "74.2179"
                                    },
                                    "pncd": {
                                      "type": "string",
                                      "description": "Pincode",
                                      "example": "249185"
                                    },
                                    "st": {
                                      "type": "string",
                                      "description": "Street Name",
                                      "example": "10, VEER NARIMAN ROAD"
                                    },
                                    "stcd": {
                                      "type": "string",
                                      "description": "State Name",
                                      "example": "Uttarakhand"
                                    }
                                  },
                                  "required": [
                                    "loc",
                                    "lg",
                                    "pncd",
                                    "stcd",
                                    "st",
                                    "lt",
                                    "bno",
                                    "bnm",
                                    "flno"
                                  ]
                                },
                                "ntr": {
                                  "anyOf": [
                                    {
                                      "type": "array",
                                      "items": {
                                        "type": "string",
                                        "example": "Wholesale Business"
                                      },
                                      "example": [
                                        "Wholesale Business"
                                      ]
                                    },
                                    {
                                      "type": "string",
                                      "example": "Supplier of Services"
                                    },
                                    {
                                      "type": "string",
                                      "example": "Service Provision, Recipient of Goods or Services, SEZ"
                                    },
                                    {
                                      "type": "string",
                                      "example": "Recipient of Goods or Services"
                                    },
                                    {
                                      "type": "string",
                                      "example": "Input Service Distributor (ISD)"
                                    },
                                    {
                                      "type": "string",
                                      "example": "Supplier of Services"
                                    },
                                    {
                                      "type": "string",
                                      "example": "Service Provision, Recipient of Goods or Services"
                                    },
                                    {
                                      "type": "string",
                                      "example": "Service Provision"
                                    }
                                  ],
                                  "type": "array",
                                  "items": {
                                    "type": "string",
                                    "description": "Nature of pricipal place of Business"
                                  },
                                  "example": [
                                    "Wholesale Business"
                                  ]
                                }
                              },
                              "required": [
                                "ntr",
                                "addr"
                              ]
                            },
                            "rgdt": {
                              "type": "string",
                              "description": "Lst Updated Date",
                              "example": "05/05/2017"
                            },
                            "rsnCd": {
                              "type": "string",
                              "example": ""
                            },
                            "stj": {
                              "type": "string",
                              "description": "State Jurisdiction",
                              "example": "BCP KODIKONDA"
                            },
                            "stjCd": {
                              "type": "string",
                              "description": "State Jurisdiction Code",
                              "example": "AP003"
                            },
                            "sts": {
                              "type": "string",
                              "description": "GSTN status",
                              "example": "Provisional"
                            },
                            "tradeNam": {
                              "type": "string",
                              "description": "trade Name",
                              "example": "ALTON PLASTIC PRIVATE LTD"
                            },
                            "typeOfSup": {
                              "type": "string",
                              "example": "OIDAR"
                            }
                          },
                          "required": [
                            "stj",
                            "dty",
                            "rgdt",
                            "ctb",
                            "sts",
                            "gstin",
                            "lgnm",
                            "nba",
                            "ctj",
                            "cxdt",
                            "stjCd",
                            "ctjCd",
                            "tradeNam",
                            "pradr",
                            "adadr"
                          ]
                        },
                        "error": {
                          "type": "object",
                          "properties": {
                            "error_cd": {
                              "type": "string",
                              "example": "FO8000"
                            },
                            "message": {
                              "type": "string",
                              "example": "No records found"
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "b14e175f-a03a-4e61-8cf1-1853a12bbc21"
                    }
                  }
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "adadr": [],
                          "ctb": "Proprietorship",
                          "ctj": "RANGE-DED8",
                          "ctjCd": "YT0804",
                          "cxdt": "",
                          "dty": "Regular",
                          "einvoiceStatus": "No",
                          "gstin": "29AFSPB9500E1ZY",
                          "lgnm": "Vicky Pvt Ltd",
                          "lstupdt": "18/10/2019",
                          "nba": [
                            "Supplier of Services"
                          ],
                          "pradr": {
                            "addr": {
                              "bnm": "Wellington New Place, Prestige Shantiniketan",
                              "bno": "26666, Block 77",
                              "dst": "Bengaluru Urban",
                              "flno": "Level 05",
                              "geocodelvl": "NA",
                              "landMark": "",
                              "lg": "",
                              "loc": "Bangalore",
                              "locality": "",
                              "lt": "",
                              "pncd": "560048",
                              "st": "Whitefield Main Road, Near ITPL",
                              "stcd": "Karnataka"
                            },
                            "ntr": "Supplier of Services"
                          },
                          "rgdt": "18/10/2019",
                          "stj": "LGSTO 036 - Bengaluru",
                          "stjCd": "KA119",
                          "sts": "Active",
                          "tradeNam": "Vicky Pvt Ltd"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "5248feb5-dd09-4f0d-9a42-14b34b849087"
                    }
                  },
                  "200 Success 2": {
                    "summary": "200 Success 2",
                    "value": {
                      "code": 200,
                      "timestamp": 0,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "data": {
                          "stjCd": "AP003",
                          "lgnm": "MS CORPORATION",
                          "stj": "BCP KODIKONDA",
                          "dty": "Regular",
                          "cxdt": "",
                          "gstin": "05ABNTY3290P8ZB",
                          "einvoiceStatus": "Yes",
                          "nba": [
                            "Bonded Warehouse",
                            "EOU / STP / EHTP",
                            "Factory / Manufacturing",
                            "Input Service Distributor (ISD)",
                            "Leasing Business"
                          ],
                          "lstupdt": "05/01/2017",
                          "rgdt": "05/05/2017",
                          "ctb": "Foreign LLP",
                          "sts": "Provisional",
                          "ctjCd": "AP004",
                          "ctj": "BCP THUMMAKUNTA",
                          "tradeNam": "ALTON PLASTIC PRIVATE LTD",
                          "adadr": [
                            {
                              "addr": {
                                "bnm": "ELPHINSTONE BUILDING",
                                "st": "10, VEER NARIMAN ROAD",
                                "loc": "FORT",
                                "bno": "10",
                                "stcd": "Uttarakhand",
                                "flno": "1ST FLOOR",
                                "lt": "74.2179",
                                "lg": "27.0238",
                                "pncd": "249185"
                              },
                              "ntr": [
                                "Wholesale Business"
                              ]
                            }
                          ],
                          "pradr": {
                            "addr": {
                              "bnm": "ELPHINSTONE BUILDING",
                              "st": "10, VEER NARIMAN ROAD",
                              "loc": "FORT",
                              "bno": "10",
                              "stcd": "Uttarakhand",
                              "flno": "1ST FLOOR",
                              "lt": "74.2179",
                              "lg": "27.0238",
                              "pncd": "249185"
                            },
                            "ntr": [
                              "Wholesale Business"
                            ]
                          }
                        },
                        "status_cd": "1"
                      }
                    }
                  },
                  "FO8000 No records found": {
                    "summary": "FO8000 No records found",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_cd": "FO8000",
                          "message": "No records found"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4ebb94a3-b0c2-4253-b688-4e9842e37b75"
                    }
                  },
                  "200 Cancelled GSTIN": {
                    "summary": "200 Cancelled GSTIN",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "adadr": [],
                          "ctb": "Partnership",
                          "ctj": "JUBILEE HILLS - I",
                          "ctjCd": "YN0703",
                          "cxdt": "26/06/2023",
                          "dty": "Regular",
                          "einvoiceStatus": "No",
                          "gstin": "36AEOFS9999J1ZI",
                          "lgnm": "ACCOUNTS CONSULTANCY",
                          "lstupdt": "17/09/2023",
                          "nba": [
                            "Supplier of Services"
                          ],
                          "pradr": {
                            "addr": {
                              "bnm": "",
                              "bno": "FLAT 999, PLOT NO 3-123, ROAD NO 47",
                              "dst": "Hyderabad",
                              "flno": "NEAR YSR STATUE, 100 FEET ROAD",
                              "geocodelvl": "NA",
                              "landMark": "",
                              "lg": "",
                              "loc": "MADHAPUR",
                              "locality": "",
                              "lt": "",
                              "pncd": "500081",
                              "st": "FINANCE SOCIETY",
                              "stcd": "Telangana"
                            },
                            "ntr": "Supplier of Services"
                          },
                          "rgdt": "18/11/2021",
                          "stj": "MADHAPUR N 1",
                          "stjCd": "TGC022",
                          "sts": "Cancelled",
                          "tradeNam": "ACCOUNTS CONSULTANCY"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "f1b79b82-fdac-43e2-bd78-2324429b7dd4"
                    }
                  },
                  "200 SEZ": {
                    "summary": "200 SEZ",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "adadr": [],
                          "ctb": "Private Limited Company",
                          "ctj": "RANGE V",
                          "ctjCd": "WT0405",
                          "cxdt": "",
                          "dty": "SEZ Developer",
                          "einvoiceStatus": "Yes",
                          "gstin": "24AAACZ0629H1ZI",
                          "lgnm": "ZYDUS INFRASTRUCTURE PRIVATE LIMITED",
                          "lstupdt": "10/12/2021",
                          "nba": [
                            "Service Provision",
                            "Recipient of Goods or Services",
                            "SEZ"
                          ],
                          "pradr": {
                            "addr": {
                              "bnm": "Pharmaceutical Special Economic Zone",
                              "bno": "1",
                              "dst": "Ahmedabad",
                              "flno": "",
                              "geocodelvl": "NA",
                              "landMark": "",
                              "lg": "",
                              "loc": "Village Matoda",
                              "locality": "",
                              "lt": "",
                              "pncd": "382213",
                              "st": "Sarkhej Bavla N H 8A",
                              "stcd": "Gujarat"
                            },
                            "ntr": "Service Provision, Recipient of Goods or Services, SEZ"
                          },
                          "rgdt": "01/07/2017",
                          "stj": "Ghatak 5 (Ahmedabad)",
                          "stjCd": "GJ005",
                          "sts": "Active",
                          "tradeNam": "ZYDUS INFRASTRUCTURE PVT LTD"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1743079046750,
                      "transaction_id": "71bce02d-32a7-446c-ac8d-c3f545bd91c3"
                    }
                  },
                  "200 ISD": {
                    "summary": "200 ISD",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "adadr": [
                            {
                              "addr": {
                                "bnm": "Powai",
                                "bno": "Anjaneya",
                                "dst": "Mumbai",
                                "flno": "Opp Hiranandani Foundation School",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Mumbai",
                                "locality": "",
                                "lt": "",
                                "pncd": "400076",
                                "st": "Powai",
                                "stcd": "Maharashtra"
                              },
                              "ntr": "Recipient of Goods or Services"
                            }
                          ],
                          "ctb": "Public Limited Company",
                          "ctj": "RANGE-I",
                          "ctjCd": "VR0601",
                          "cxdt": "",
                          "dty": "Input Service Distributor (ISD)",
                          "einvoiceStatus": "No",
                          "gstin": "27AACCA8432H2ZP",
                          "lgnm": "AVENUE SUPERMARTS LIMITED",
                          "lstupdt": "25/03/2025",
                          "nba": [
                            "Recipient of Goods or Services"
                          ],
                          "pradr": {
                            "addr": {
                              "bnm": "Near ESIS Hospital, Wagle Estate",
                              "bno": "Plot No B72 AND B72A",
                              "dst": "Thane",
                              "flno": "Beside Spectra Motors,",
                              "geocodelvl": "NA",
                              "landMark": "",
                              "lg": "",
                              "loc": "Wagle Estate MIDC Thane W",
                              "locality": "",
                              "lt": "",
                              "pncd": "400604",
                              "st": "Road No. 33",
                              "stcd": "Maharashtra"
                            },
                            "ntr": "Recipient of Goods or Services"
                          },
                          "rgdt": "26/07/2017",
                          "stj": "WAGLE I.E._704",
                          "stjCd": "MHCG1479",
                          "sts": "Active",
                          "tradeNam": "DMART"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1743079271934,
                      "transaction_id": "78c50d8e-3568-451e-904a-d0f5851d1db5"
                    }
                  },
                  "200 Multiple additional addresses of business": {
                    "summary": "200 Multiple additional addresses of business",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "adadr": [
                            {
                              "addr": {
                                "bnm": "Fadia Chambers",
                                "bno": "3rd Floor",
                                "dst": "Ahmedabad",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Ahmedabad",
                                "locality": "",
                                "lt": "",
                                "pncd": "380009",
                                "st": "Ashram Road",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "New Office Building",
                                "bno": "Plot NO  C-5/101",
                                "dst": "Valsad",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Vapi",
                                "locality": "",
                                "lt": "",
                                "pncd": "396195",
                                "st": "Nr Telephone Exchange,GIDC Ind. Estate",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "Udyog Bhawan",
                                "bno": "Building no 3",
                                "dst": "Gandhinagar",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Gandhinagar",
                                "locality": "",
                                "lt": "",
                                "pncd": "382011",
                                "st": "GH-3 Circle,Sector 11",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "Jamnagar Industiral Estate",
                                "bno": "GIDC",
                                "dst": "Jamnagar",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Jamnagar",
                                "locality": "",
                                "lt": "",
                                "pncd": "361004",
                                "st": "Shankar Tekri",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "Navsarjan Building",
                                "dst": "Rajkot",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Rajkot",
                                "locality": "",
                                "lt": "",
                                "pncd": "360004",
                                "st": "Opp Swminarayan Gurukul, Gondal Road",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "Vanita Vishram Building",
                                "bno": "GIDC",
                                "dst": "Surat",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Surat",
                                "locality": "",
                                "lt": "",
                                "pncd": "395001",
                                "st": "Athwalines",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "GIDC",
                                "dst": "Junagadh",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Junagadh",
                                "locality": "",
                                "lt": "",
                                "pncd": "362003",
                                "st": "Dolatpura",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "GIDC",
                                "dst": "Junagadh",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Junagadh",
                                "locality": "",
                                "lt": "",
                                "pncd": "362003",
                                "st": "Dolatpura",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "GIDC",
                                "dst": "Junagadh",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Junagadh",
                                "locality": "",
                                "lt": "",
                                "pncd": "362003",
                                "st": "Dolatpura",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "GIDC",
                                "dst": "Junagadh",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Junagadh",
                                "locality": "",
                                "lt": "",
                                "pncd": "362003",
                                "st": "Dolatpura",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "GIDC",
                                "dst": "Junagadh",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Junagadh",
                                "locality": "",
                                "lt": "",
                                "pncd": "362003",
                                "st": "Dolatpura",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "Plot No 43",
                                "dst": "Mahesana",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Mehsana",
                                "locality": "",
                                "lt": "",
                                "pncd": "384002",
                                "st": "Near FCI Godown, Modhera Road",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "Plot No 43",
                                "dst": "Mahesana",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Mehsana",
                                "locality": "",
                                "lt": "",
                                "pncd": "384002",
                                "st": "Near FCI Godown, Modhera Road",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "",
                                "bno": "Plot No 43",
                                "dst": "Mahesana",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Mehsana",
                                "locality": "",
                                "lt": "",
                                "pncd": "384002",
                                "st": "Near FCI Godown, Modhera Road",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "GIDC",
                                "bno": "Admin Office Building",
                                "dst": "Bharuch",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Ankleshwar",
                                "locality": "",
                                "lt": "",
                                "pncd": "393002",
                                "st": "Valia Road",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            },
                            {
                              "addr": {
                                "bnm": "Unique Trade Center",
                                "bno": "5th,6th Floor",
                                "dst": "Vadodara",
                                "flno": "",
                                "geocodelvl": "NA",
                                "landMark": "",
                                "lg": "",
                                "loc": "Vadodara",
                                "locality": "",
                                "lt": "",
                                "pncd": "390020",
                                "st": "Nr Hotel Kansar, Sayajiganj",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Input Service Distributor (ISD)"
                            }
                          ],
                          "ctb": "Statutory Body",
                          "ctj": "RANGE II",
                          "ctjCd": "WU0102",
                          "cxdt": "",
                          "dty": "Regular",
                          "einvoiceStatus": "Yes",
                          "gstin": "24AABCG8033D1Z2",
                          "lgnm": "GUJARAT INDUSTRIAL DEVELOPMENT CORPORATION",
                          "lstupdt": "05/11/2020",
                          "nba": [
                            "Input Service Distributor (ISD)"
                          ],
                          "pradr": {
                            "addr": {
                              "bnm": "Udyog Bhavan",
                              "bno": "Block No. 4",
                              "dst": "Gandhinagar",
                              "flno": "1st Floor",
                              "geocodelvl": "NA",
                              "landMark": "",
                              "lg": "",
                              "loc": "Gandhinagar",
                              "locality": "",
                              "lt": "",
                              "pncd": "382011",
                              "st": "GH-4 Circle, Sector- 11",
                              "stcd": "Gujarat"
                            },
                            "ntr": "Input Service Distributor (ISD)"
                          },
                          "rgdt": "01/07/2017",
                          "stj": "Ghatak 24 (Gan)",
                          "stjCd": "GJ024",
                          "sts": "Active",
                          "tradeNam": "GUJARAT INDUSTRIAL DEVELOPMENT CORPORATION"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1743079100225,
                      "transaction_id": "f8be2d24-ed85-4a65-9763-0a3bef00870a"
                    }
                  },
                  "200 Public Limited Company": {
                    "summary": "200 Public Limited Company",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "adadr": [
                            {
                              "addr": {
                                "bnm": "Plot EL - 25",
                                "bno": "A Wing",
                                "dst": "Thane",
                                "flno": "",
                                "geocodelvl": "locality",
                                "landMark": "",
                                "lg": "73.019462",
                                "loc": "Navi Mumbai",
                                "locality": "Mahape Village",
                                "lt": "19.112067",
                                "pncd": "400710",
                                "st": "Trans Thane Industrial Area",
                                "stcd": "Maharashtra"
                              },
                              "ntr": "Supplier of Services, Recipient of Goods or Services"
                            }
                          ],
                          "ctb": "Public Limited Company",
                          "ctj": "RANGE-IV",
                          "ctjCd": "VO0304",
                          "cxdt": "",
                          "dty": "Regular",
                          "einvoiceStatus": "Yes",
                          "gstin": "27AACCN0053F1ZW",
                          "lgnm": "NSDL DATABASE MANAGEMENT LIMITED",
                          "lstupdt": "04/02/2025",
                          "nba": [
                            "Service Provision",
                            "Recipient of Goods or Services",
                            "Supplier of Services"
                          ],
                          "pradr": {
                            "addr": {
                              "bnm": "One International Center",
                              "bno": "Tower 3",
                              "dst": "Mumbai",
                              "flno": "4th Floor",
                              "geocodelvl": "Building",
                              "landMark": "",
                              "lg": "72.83584713935853",
                              "loc": "Mumbai",
                              "locality": "Prabhadevi",
                              "lt": "19.00916577823824",
                              "pncd": "400013",
                              "st": "S. B. Marg",
                              "stcd": "Maharashtra"
                            },
                            "ntr": "Service Provision, Recipient of Goods or Services"
                          },
                          "rgdt": "01/07/2017",
                          "stj": "DELISLE_ROAD_701",
                          "stjCd": "MHCG0453",
                          "sts": "Active",
                          "tradeNam": "NSDL DATABASE MANAGEMENT LIMITED"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1743079327421,
                      "transaction_id": "a2defd46-0ef8-4614-b83e-5762762b1f23"
                    }
                  },
                  "200 Public Sector Bank": {
                    "summary": "200 Public Sector Bank",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "adadr": [],
                          "ctb": "PUBLIC SECTOR BANK",
                          "ctj": "RANGE IV",
                          "ctjCd": "WS0104",
                          "cxdt": "",
                          "dty": "Regular",
                          "einvoiceStatus": "Yes",
                          "gstin": "24AAACS8577K1ZV",
                          "lgnm": "STATE BANK OF INDIA",
                          "lstupdt": "17/03/2025",
                          "nba": [
                            "Service Provision"
                          ],
                          "pradr": {
                            "addr": {
                              "bnm": "STATE BANK OF INDIA, LOCAL HEAD OFFICE",
                              "bno": "1",
                              "dst": "Ahmedabad",
                              "flno": "",
                              "geocodelvl": "NA",
                              "landMark": "",
                              "lg": "",
                              "loc": "BHADRA",
                              "locality": "",
                              "lt": "",
                              "pncd": "380001",
                              "st": "LAL DARWAJA",
                              "stcd": "Gujarat"
                            },
                            "ntr": "Service Provision"
                          },
                          "rgdt": "01/07/2017",
                          "stj": "Ghatak 3 (Ahmedabad)",
                          "stjCd": "GJ003",
                          "sts": "Active",
                          "tradeNam": "STATE BANK OF INDIA"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1743079411379,
                      "transaction_id": "15ad1d24-bad2-471d-9f94-43ffad9cb695"
                    }
                  },
                  "200 NRI GSTIN": {
                    "summary": "200 NRI GSTIN",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "canclDt": "",
                          "ctb": "NA",
                          "ctj": "State - CBIC,Zone - BENGALURU,Commissionerate - BENGALURU WEST,Division - WEST OIDAR SERVICES,Range - RANGE-BOIDAR (Jurisdictional Office)",
                          "ctjCd": "YU1002",
                          "cxdt": "",
                          "dty": "Non-Resident Online Services Provider and/or Non-Resident Online Money Gaming Supplier",
                          "einvoiceStatus": "No",
                          "gstin": "9917SGP29002OSR",
                          "lgnm": "LINKEDIN SINGAPORE PTE. LTD.",
                          "lstupdt": "",
                          "rgdt": "01/07/2017",
                          "rsnCd": "",
                          "stj": "NA",
                          "stjCd": "NA",
                          "sts": "Active",
                          "tradeNam": "",
                          "typeOfSup": "OIDAR"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1760363540087,
                      "transaction_id": "97176028-96b1-4421-93f1-9291efd5362b"
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "422": {
            "description": "Invalid GSTIN pattern",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 422
                    },
                    "message": {
                      "type": "string",
                      "example": "Invalid GSTIN pattern"
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "71060364-7cc1-4436-84d7-3bdf4a47de55"
                    }
                  }
                },
                "examples": {
                  "Invalid GSTIN pattern": {
                    "summary": "Invalid GSTIN pattern",
                    "value": {
                      "code": 422,
                      "message": "Invalid GSTIN pattern",
                      "timestamp": 1763446641000,
                      "transaction_id": "71060364-7cc1-4436-84d7-3bdf4a47de55"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/public/gstrs/track": {
      "post": {
        "summary": "Track GST Returns",
        "deprecated": false,
        "description": "Check compliance for a GST-registered business by passing the financial year and the GSTIN. Further, you can filter the list by passing the return type.",
        "operationId": "trackGstReturns",
        "tags": [
          "Public"
        ],
        "parameters": [
          {
            "name": "gstr",
            "in": "query",
            "description": "Optional GST Return type to be passed as filter. E.g. gstr-1",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{gstr}}"
            }
          },
          {
            "name": "financial_year",
            "in": "query",
            "description": "Financial Year of GST Returns e.g. FY 2021-22",
            "required": true,
            "example": "FY 2025-26",
            "schema": {
              "type": "string",
              "example": "{{financial_year}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-accept-cache",
            "in": "header",
            "description": "Pass true to accept the cached response. If the header is not passed, or if false is sent as the value, the request will hit the origin.",
            "required": false,
            "example": "",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "gstin"
                ],
                "properties": {
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN of the Taxpayer"
                  }
                }
              },
              "examples": {
                "200 Filed returns": {
                  "value": {
                    "gstin": "33ABKCS2033B1ZW"
                  },
                  "summary": "200 Filed returns"
                },
                "RTN_22 Select Valid FY": {
                  "value": {
                    "gstin": "3418FIN00001UNY"
                  },
                  "summary": "RTN_22 Select Valid FY"
                },
                "RET13510 No Record Found": {
                  "value": {
                    "gstin": "07CQZCD1111I4Z7"
                  },
                  "summary": "RET13510 No Record Found"
                },
                "Request Example": {
                  "value": {
                    "gstin": "33DMOPD7318K1ZT"
                  },
                  "summary": "Request Example"
                },
                "Invalid GSTIN pattern": {
                  "value": {
                    "gstin": "34ACXP00001E0Z0"
                  },
                  "summary": "Invalid GSTIN pattern"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Filed returns / RTN_22 Select Valid FY / RET13510 No Record Found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "data": {
                          "type": "object",
                          "properties": {
                            "EFiledlist": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "arn": {
                                    "type": "string",
                                    "description": "Acknowledgment Reference Number",
                                    "example": "AA330820000343Z"
                                  },
                                  "dof": {
                                    "type": "string",
                                    "description": "Date of Filing",
                                    "example": "01-02-2023"
                                  },
                                  "mof": {
                                    "type": "string",
                                    "description": "Mode of Filing",
                                    "example": "GSP"
                                  },
                                  "ret_prd": {
                                    "type": "string",
                                    "description": "Return period",
                                    "example": "082020"
                                  },
                                  "rtntype": {
                                    "type": "string",
                                    "description": "Return Type",
                                    "example": "GSTR1"
                                  },
                                  "status": {
                                    "type": "string",
                                    "description": "Status of return filing",
                                    "example": "Filed"
                                  },
                                  "valid": {
                                    "type": "string",
                                    "description": "Whether filed return is valid",
                                    "example": "Y"
                                  }
                                }
                              },
                              "example": [
                                {
                                  "arn": "AA330820000343Z",
                                  "dof": "01-02-2023",
                                  "mof": "GSP",
                                  "ret_prd": "082020",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330920000445R",
                                  "dof": "01-02-2023",
                                  "mof": "GSP",
                                  "ret_prd": "092020",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3310200003682",
                                  "dof": "01-02-2023",
                                  "mof": "GSP",
                                  "ret_prd": "102020",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA331120000360G",
                                  "dof": "01-02-2023",
                                  "mof": "GSP",
                                  "ret_prd": "112020",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3312200004719",
                                  "dof": "01-02-2023",
                                  "mof": "GSP",
                                  "ret_prd": "122020",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330121000749R",
                                  "dof": "01-02-2023",
                                  "mof": "GSP",
                                  "ret_prd": "012021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330321000450A",
                                  "dof": "01-02-2023",
                                  "mof": "GSP",
                                  "ret_prd": "032021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330720000428R",
                                  "dof": "01-02-2023",
                                  "mof": "GSP",
                                  "ret_prd": "072020",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330621000547P",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "062021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3303220002437",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "032022",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3302220002629",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "022022",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3301220002283",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "012022",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3311210003448",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "112021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA331221000400G",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "122021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3310210003490",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "102021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330921000392S",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "092021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330821000569F",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "082021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330721000374U",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "072021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3305210003144",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "052021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA330421000474Y",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "042021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3302210003736",
                                  "dof": "30-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "022021",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                },
                                {
                                  "arn": "AA3312220001761",
                                  "dof": "25-01-2023",
                                  "mof": "GSP",
                                  "ret_prd": "122022",
                                  "rtntype": "GSTR1",
                                  "status": "Filed",
                                  "valid": "Y"
                                }
                              ]
                            }
                          }
                        },
                        "error": {
                          "type": "object",
                          "properties": {
                            "error_code": {
                              "type": "string",
                              "example": "RTN_22"
                            },
                            "message": {
                              "type": "string",
                              "example": "Please select a valid financial year"
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "7495493a-b127-4eca-a304-a550fbc98447"
                    }
                  }
                },
                "examples": {
                  "200 Filed returns": {
                    "summary": "200 Filed returns",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "EFiledlist": [
                            {
                              "arn": "AA330820000343Z",
                              "dof": "01-02-2023",
                              "mof": "GSP",
                              "ret_prd": "082020",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330920000445R",
                              "dof": "01-02-2023",
                              "mof": "GSP",
                              "ret_prd": "092020",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3310200003682",
                              "dof": "01-02-2023",
                              "mof": "GSP",
                              "ret_prd": "102020",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA331120000360G",
                              "dof": "01-02-2023",
                              "mof": "GSP",
                              "ret_prd": "112020",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3312200004719",
                              "dof": "01-02-2023",
                              "mof": "GSP",
                              "ret_prd": "122020",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330121000749R",
                              "dof": "01-02-2023",
                              "mof": "GSP",
                              "ret_prd": "012021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330321000450A",
                              "dof": "01-02-2023",
                              "mof": "GSP",
                              "ret_prd": "032021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330720000428R",
                              "dof": "01-02-2023",
                              "mof": "GSP",
                              "ret_prd": "072020",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330621000547P",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "062021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3303220002437",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "032022",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3302220002629",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "022022",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3301220002283",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "012022",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3311210003448",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "112021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA331221000400G",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "122021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3310210003490",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "102021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330921000392S",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "092021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330821000569F",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "082021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330721000374U",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "072021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3305210003144",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "052021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA330421000474Y",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "042021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3302210003736",
                              "dof": "30-01-2023",
                              "mof": "GSP",
                              "ret_prd": "022021",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA3312220001761",
                              "dof": "25-01-2023",
                              "mof": "GSP",
                              "ret_prd": "122022",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            }
                          ]
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7495493a-b127-4eca-a304-a550fbc98447"
                    }
                  },
                  "RTN_22 Select Valid FY": {
                    "summary": "RTN_22 Select Valid FY",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_code": "RTN_22",
                          "message": "Please select a valid financial year"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "24a346fb-7f99-4404-b07d-e770cee882d5"
                    }
                  },
                  "RET13510 No Record Found": {
                    "summary": "RET13510 No Record Found",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_code": "RET13510",
                          "message": "No Record found for the provided Inputs"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6c47d6e5-24dd-4350-8152-c8cf92fd51ac"
                    }
                  }
                }
              }
            },
            "headers": {
              "Connection": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "keep-alive"
                }
              },
              "Content-Length": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "131"
                }
              },
              "Date": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Mon, 18 Mar 2024 11:17:10 GMT"
                }
              },
              "access-control-allow-origin": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "*"
                }
              },
              "vary": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Accept-Encoding"
                }
              },
              "x-amz-apigw-id": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "U0pcZG7vhcwFqJw="
                }
              },
              "x-amzn-Remapped-Connection": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "keep-alive"
                }
              },
              "x-amzn-Remapped-Content-Length": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "131"
                }
              },
              "x-amzn-Remapped-Date": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Mon, 18 Mar 2024 11:17:10 GMT"
                }
              },
              "x-amzn-RequestId": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "be24774c-e064-4ec0-bbb4-46e31a0d321d"
                }
              },
              "x-srv-span": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "v=1;s=2c30935bae37d3f2"
                }
              },
              "x-srv-trace": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "v=1;t=fe95b4e8219a1aa0"
                }
              }
            }
          },
          "422": {
            "description": "Invalid GSTIN pattern",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 422
                    },
                    "message": {
                      "type": "string",
                      "example": "Invalid GSTIN pattern"
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "e32ced0b-fb58-4555-9b47-174bcd2a75d0"
                    }
                  }
                },
                "examples": {
                  "Invalid GSTIN pattern": {
                    "summary": "Invalid GSTIN pattern",
                    "value": {
                      "code": 422,
                      "message": "Invalid GSTIN pattern",
                      "timestamp": 1763446641000,
                      "transaction_id": "e32ced0b-fb58-4555-9b47-174bcd2a75d0"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/public/pan/search": {
      "post": {
        "summary": "Search GSTIN by PAN",
        "deprecated": false,
        "description": "Verify a business registered under GST by passing the PAN and state code.",
        "operationId": "searchGstinByPan",
        "tags": [
          "Public"
        ],
        "parameters": [
          {
            "name": "state_code",
            "in": "query",
            "description": "GST state code",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{state_code}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-accept-cache",
            "in": "header",
            "description": "Pass true to accept the cached response. If the header is not passed, or if false is sent as the value, the request will hit the origin.",
            "required": false,
            "example": "",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "pan"
                ],
                "properties": {
                  "pan": {
                    "type": "string",
                    "description": "PAN of the taxpayer"
                  }
                }
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "pan": "AAACJ2440E"
                  },
                  "summary": "200 Success"
                },
                "200 Success 2": {
                  "value": {
                    "pan": "GSPTN9771G"
                  },
                  "summary": "200 Success 2"
                },
                "NOGSTIN No records found": {
                  "value": {
                    "pan": "AAACS9345K"
                  },
                  "summary": "NOGSTIN No records found"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Success / 200 Success / NOGSTIN No records found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "anyOf": [
                        {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "data": {
                                "type": "object",
                                "properties": {
                                  "adadr": {
                                    "type": "array",
                                    "items": {},
                                    "example": []
                                  },
                                  "ctb": {
                                    "type": "string",
                                    "example": "Private Limited Company"
                                  },
                                  "ctj": {
                                    "type": "string",
                                    "example": "RANGE I"
                                  },
                                  "ctjCd": {
                                    "type": "string",
                                    "example": "WS0601"
                                  },
                                  "dty": {
                                    "type": "string",
                                    "example": "Regular"
                                  },
                                  "gstin": {
                                    "type": "string",
                                    "example": "24AAACJ2440E2ZV"
                                  },
                                  "lgnm": {
                                    "type": "string",
                                    "example": "JOHN DOE PRIVATE LIMITED"
                                  },
                                  "lstupdt": {
                                    "type": "string",
                                    "example": "14/04/2018"
                                  },
                                  "nba": {
                                    "type": "array",
                                    "items": {
                                      "type": "string",
                                      "example": "Service Provision"
                                    },
                                    "example": [
                                      "Service Provision"
                                    ]
                                  },
                                  "pradr": {
                                    "type": "object",
                                    "properties": {
                                      "addr": {
                                        "type": "object",
                                        "properties": {
                                          "bnm": {
                                            "type": "string",
                                            "example": "ABC Lakeview Tower"
                                          },
                                          "bno": {
                                            "type": "string",
                                            "example": "123"
                                          },
                                          "loc": {
                                            "type": "string",
                                            "example": "Vastrapur"
                                          },
                                          "pncd": {
                                            "type": "string",
                                            "example": "380015"
                                          },
                                          "st": {
                                            "type": "string",
                                            "example": "Opp. Vastrapur Lake"
                                          },
                                          "stcd": {
                                            "type": "string",
                                            "example": "Gujarat"
                                          }
                                        }
                                      },
                                      "ntr": {
                                        "type": "string",
                                        "example": "Service Provision"
                                      }
                                    }
                                  },
                                  "rgdt": {
                                    "type": "string",
                                    "example": "01/07/2017"
                                  },
                                  "stj": {
                                    "type": "string",
                                    "example": "Ghatak 9 (Ahmedabad)"
                                  },
                                  "stjCd": {
                                    "type": "string",
                                    "example": "GJ009"
                                  },
                                  "sts": {
                                    "type": "string",
                                    "example": "Active"
                                  },
                                  "tradeNam": {
                                    "type": "string",
                                    "example": "John Doe Private Limited"
                                  }
                                }
                              }
                            }
                          },
                          "example": [
                            {
                              "data": {
                                "adadr": [],
                                "ctb": "Private Limited Company",
                                "ctj": "RANGE I",
                                "ctjCd": "WS0601",
                                "dty": "Regular",
                                "gstin": "24AAACJ2440E2ZV",
                                "lgnm": "JOHN DOE PRIVATE LIMITED",
                                "lstupdt": "14/04/2018",
                                "nba": [
                                  "Service Provision"
                                ],
                                "pradr": {
                                  "addr": {
                                    "bnm": "ABC Lakeview Tower",
                                    "bno": "123",
                                    "loc": "Vastrapur",
                                    "pncd": "380015",
                                    "st": "Opp. Vastrapur Lake",
                                    "stcd": "Gujarat"
                                  },
                                  "ntr": "Service Provision"
                                },
                                "rgdt": "01/07/2017",
                                "stj": "Ghatak 9 (Ahmedabad)",
                                "stjCd": "GJ009",
                                "sts": "Active",
                                "tradeNam": "John Doe Private Limited"
                              }
                            }
                          ]
                        },
                        {
                          "type": "object",
                          "properties": {
                            "error_code": {
                              "type": "string",
                              "example": "NOGSTIN"
                            },
                            "message": {
                              "type": "string",
                              "example": "No records found"
                            }
                          }
                        }
                      ],
                      "example": [
                        {
                          "data": {
                            "adadr": [],
                            "ctb": "Private Limited Company",
                            "ctj": "RANGE I",
                            "ctjCd": "WS0601",
                            "dty": "Regular",
                            "gstin": "24AAACJ2440E2ZV",
                            "lgnm": "JOHN DOE PRIVATE LIMITED",
                            "lstupdt": "14/04/2018",
                            "nba": [
                              "Service Provision"
                            ],
                            "pradr": {
                              "addr": {
                                "bnm": "ABC Lakeview Tower",
                                "bno": "123",
                                "loc": "Vastrapur",
                                "pncd": "380015",
                                "st": "Opp. Vastrapur Lake",
                                "stcd": "Gujarat"
                              },
                              "ntr": "Service Provision"
                            },
                            "rgdt": "01/07/2017",
                            "stj": "Ghatak 9 (Ahmedabad)",
                            "stjCd": "GJ009",
                            "sts": "Active",
                            "tradeNam": "John Doe Private Limited"
                          }
                        }
                      ]
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "a4bcca2e-7e82-4eaf-8046-6cd4e8c028c1"
                    }
                  }
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": [
                        {
                          "data": {
                            "ctjCd": "",
                            "cxdt": "-",
                            "dty": "Regular",
                            "einvoiceStatus": "No",
                            "gstin": "33GSPTN9771G1ZR",
                            "lgnm": "NARENDRA KUMAR PAREEK",
                            "lstupdt": "11/09/2017",
                            "stjCd": "",
                            "sts": "Cancelled",
                            "tradeNam": "M/S AJAY GAS CENTRE"
                          },
                          "gstin": "33GSPTN9771G1ZR"
                        },
                        {
                          "data": {
                            "ctjCd": "",
                            "cxdt": "-",
                            "dty": "Regular",
                            "einvoiceStatus": "No",
                            "gstin": "33GSPTN9771G2ZQ",
                            "lgnm": "NISAR ALI",
                            "lstupdt": "11/09/2017",
                            "stjCd": "",
                            "sts": "Cancelled",
                            "tradeNam": ""
                          },
                          "gstin": "33GSPTN9771G2ZQ"
                        },
                        {
                          "data": {
                            "ctb": "Proprietorship",
                            "ctj": "",
                            "ctjCd": "0101",
                            "cxdt": "",
                            "dty": "Regular",
                            "einvoiceStatus": "No",
                            "gstin": "33GSPTN9771G3ZP",
                            "lgnm": "Adaequare TN TaxPayer 1 Ltd",
                            "lstupdt": "06/01/2018",
                            "rgdt": "01/04/2016",
                            "stj": "ADYAR",
                            "stjCd": "TN001",
                            "sts": "Active",
                            "tradeNam": "Adaequare TN TaxPayer 1 Ltd"
                          },
                          "gstin": "33GSPTN9771G3ZP"
                        }
                      ],
                      "timestamp": 200,
                      "transaction_id": "a8822161-3bbd-467e-8404-db3e3e489c17"
                    }
                  },
                  "NOGSTIN No records found": {
                    "summary": "NOGSTIN No records found",
                    "value": {
                      "code": 200,
                      "data": {
                        "error_code": "NOGSTIN",
                        "message": "No records found"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "c871a8fa-b8fc-47dd-bd15-9f9c3bacd60e"
                    }
                  },
                  "200 Success 2": {
                    "summary": "200 Success 2",
                    "value": {
                      "code": 200,
                      "timestamp": 1776921876217,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": [
                        {
                          "data": {
                            "stjCd": "GJ009",
                            "dty": "Regular",
                            "stj": "Ghatak 9 (Ahmedabad)",
                            "lgnm": "JOHN DOE PRIVATE LIMITED",
                            "adadr": [],
                            "gstin": "24AAACJ2440E2ZV",
                            "nba": [
                              "Service Provision"
                            ],
                            "lstupdt": "14/04/2018",
                            "ctb": "Private Limited Company",
                            "rgdt": "01/07/2017",
                            "pradr": {
                              "addr": {
                                "bnm": "ABC Lakeview Tower",
                                "st": "Opp. Vastrapur Lake",
                                "loc": "Vastrapur",
                                "bno": "123",
                                "stcd": "Gujarat",
                                "pncd": "380015"
                              },
                              "ntr": "Service Provision"
                            },
                            "ctjCd": "WS0601",
                            "sts": "Active",
                            "tradeNam": "John Doe Private Limited",
                            "ctj": "RANGE I"
                          }
                        }
                      ]
                    }
                  }
                }
              }
            },
            "headers": {
              "Connection": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "keep-alive"
                }
              },
              "Content-Length": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "150"
                }
              },
              "Date": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Mon, 18 Mar 2024 13:32:14 GMT"
                }
              },
              "X-RateLimit-Limit": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "120"
                }
              },
              "X-RateLimit-Remaining": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "119"
                }
              },
              "X-RateLimit-Reset": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "1710768793"
                }
              },
              "access-control-allow-origin": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "*"
                }
              },
              "vary": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Accept-Encoding"
                }
              },
              "x-amz-apigw-id": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "U09OgFGwhcwFpvw="
                }
              },
              "x-amzn-Remapped-Connection": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "keep-alive"
                }
              },
              "x-amzn-Remapped-Content-Length": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "150"
                }
              },
              "x-amzn-Remapped-Date": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Mon, 18 Mar 2024 13:32:14 GMT"
                }
              },
              "x-amzn-RequestId": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "1288499a-a730-4c01-bf53-4d0dea56765f"
                }
              },
              "x-srv-span": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "v=1;s=56c7d127ee810319"
                }
              },
              "x-srv-trace": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "v=1;t=02a1a86a4c595f63"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/otp": {
      "post": {
        "summary": "Generate OTP",
        "deprecated": false,
        "description": "Generate OTP to authenticate tax payer.",
        "operationId": "generateOtp",
        "tags": [
          "Taxpayer",
          "Taxpayer Auth"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Source. Possible Values: primary (default) or secondary",
            "required": false,
            "example": "primary",
            "schema": {
              "type": "string",
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "username",
                  "gstin"
                ],
                "properties": {
                  "username": {
                    "type": "string",
                    "description": "Username as per GST portal"
                  },
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN of the taxpayer"
                  }
                }
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "username": "TN_NT2.2477",
                    "gstin": "33ABKCS2033B1ZW"
                  },
                  "summary": "200 Success"
                },
                "TEC4001 OTP generation failed": {
                  "value": {
                    "username": "globex.edu.co",
                    "gstin": "23ABCCQ2000E000"
                  },
                  "summary": "TEC4001 OTP generation failed"
                },
                "AUTH403 Maximum sessions reached": {
                  "value": {
                    "username": "acme.gj.com",
                    "gstin": "24AAACQ3770E000"
                  },
                  "summary": "AUTH403 Maximum sessions reached"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Success / TEC4001 OTP generation failed / AUTH403 Maximum sessions reached",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "error": {
                          "type": "object",
                          "properties": {
                            "error_cd": {
                              "type": "string",
                              "example": "TEC4001"
                            },
                            "message": {
                              "type": "string",
                              "example": "OTP generation failed as OTP server is down. Contact Support"
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1712926086000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "9a6ce7b9-de63-48a8-b45b-0c5420538b25"
                    }
                  }
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1"
                      },
                      "timestamp": 1712926086000,
                      "transaction_id": "9a6ce7b9-de63-48a8-b45b-0c5420538b25"
                    }
                  },
                  "AUTH403 Maximum sessions reached": {
                    "summary": "AUTH403 Maximum sessions reached",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_cd": "AUTH403",
                          "message": "Maximum session allowed for user with this GSP account exceeded."
                        },
                        "status_cd": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7047f26a-0993-4cab-8e7c-553034d3a3b4"
                    }
                  },
                  "TEC4001 OTP generation failed": {
                    "summary": "TEC4001 OTP generation failed",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_cd": "TEC4001",
                          "message": "OTP generation failed as OTP server is down. Contact Support"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "c0cba77f-4942-49f5-8a18-6c62d69f354b"
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "422": {
            "description": "Invalid GSTIN Pattern",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 422
                    },
                    "message": {
                      "type": "string",
                      "example": "Invalid GSTIN pattern"
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "021ff404-5b8b-468b-ab92-68ff5a54590b"
                    }
                  }
                },
                "examples": {
                  "Invalid GSTIN Pattern": {
                    "summary": "Invalid GSTIN Pattern",
                    "value": {
                      "code": 422,
                      "message": "Invalid GSTIN pattern",
                      "timestamp": 1763446641000,
                      "transaction_id": "021ff404-5b8b-468b-ab92-68ff5a54590b"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/otp/verify": {
      "post": {
        "summary": "Verify OTP",
        "deprecated": false,
        "description": "Verify OTP to authenticate tax payer. This API will start a session and provide access valid for 6 hrs. Returns date timestamp of expiry of session.",
        "operationId": "verifyOtp",
        "tags": [
          "Taxpayer",
          "Taxpayer Auth"
        ],
        "parameters": [
          {
            "name": "otp",
            "in": "query",
            "description": "One time password",
            "required": true,
            "example": 575757,
            "schema": {
              "type": "integer",
              "format": "int32",
              "example": "575757"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token",
            "required": true,
            "example": "{{access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Source. Possible Values: primary (default) or secondary",
            "required": false,
            "example": "primary",
            "schema": {
              "type": "string",
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "username",
                  "gstin"
                ],
                "properties": {
                  "username": {
                    "type": "string",
                    "description": "Username as per GST portal"
                  },
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN of the taxpayer"
                  }
                }
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "username": "TN_NT2.2477",
                    "gstin": "33ABKCS2033B1ZW"
                  },
                  "summary": "200 Success"
                },
                "AUTH4033 Invalid session": {
                  "value": {
                    "username": "globex.edu.co",
                    "gstin": "23ABCCQ2000E000"
                  },
                  "summary": "AUTH4033 Invalid session"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "AUTH4033 Invalid session / 200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "access_token": {
                          "type": "string",
                          "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ0YXhwYXllci1zZXNzaW9uIiwiZ3N0aW4iOiIyNEFCS0NTMjAzM0IxWlYiLCJpYXQiOjE3MTI5NDQxMDAsImV4cCI6MTcxMjk0NzcxMX0.sandbox-signature"
                        },
                        "error": {
                          "type": "object",
                          "properties": {
                            "error_cd": {
                              "type": "string",
                              "example": "AUTH4033"
                            },
                            "message": {
                              "type": "string",
                              "example": "Invalid Session"
                            }
                          }
                        },
                        "session_expiry": {
                          "type": "number",
                          "example": 1712947711000
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "0"
                        },
                        "token_expiry": {
                          "type": "number",
                          "example": 1712947711000
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "1ad1d698-499e-4b10-a44a-fecba43babbb"
                    }
                  }
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ0YXhwYXllci1zZXNzaW9uIiwiZ3N0aW4iOiIyNEFCS0NTMjAzM0IxWlYiLCJpYXQiOjE3MTI5NDQxMDAsImV4cCI6MTcxMjk0NzcxMX0.sandbox-signature",
                        "session_expiry": 1712947711000,
                        "status_cd": "1",
                        "token_expiry": 1712947711000
                      },
                      "timestamp": 1712926110000,
                      "transaction_id": "f6a85bd7-6d53-4e60-b4a7-480d3738ff0c"
                    }
                  },
                  "AUTH4033 Invalid session": {
                    "summary": "AUTH4033 Invalid session",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_cd": "AUTH4033",
                          "message": "Invalid Session"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "1ad1d698-499e-4b10-a44a-fecba43babbb"
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "500": {
            "description": "Invalid GSTIN pattern",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 422
                    },
                    "message": {
                      "type": "string",
                      "example": "Invalid GSTIN pattern"
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "21c38e93-b4df-4266-84ca-28885be68d1e"
                    }
                  }
                },
                "examples": {
                  "Invalid GSTIN pattern": {
                    "summary": "Invalid GSTIN pattern",
                    "value": {
                      "code": 422,
                      "message": "Invalid GSTIN pattern",
                      "timestamp": 1763446641000,
                      "transaction_id": "21c38e93-b4df-4266-84ca-28885be68d1e"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/session/refresh": {
      "post": {
        "summary": "Refresh Access Token",
        "deprecated": false,
        "description": "Extend access to data on behalf of tax payer / tax consultant without user intervention. \r\n",
        "operationId": "refreshSession",
        "tags": [
          "Taxpayer",
          "Taxpayer Auth"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "access_token": {
                          "type": "string",
                          "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ0YXhwYXllci1zZXNzaW9uIiwiZ3N0aW4iOiIyNEFCS0NTMjAzM0IxWlYiLCJpYXQiOjE3MTI5NDQxMDAsImV4cCI6MTcxMjk0NzcxMX0.sandbox-signature"
                        },
                        "session_expiry": {
                          "type": "number",
                          "example": 1712947710000
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        },
                        "token_expiry": {
                          "type": "number",
                          "example": 1712947711000
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1712926110000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "460019fb-f79a-4c1d-bc21-46c9f8210c1d"
                    }
                  }
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ0YXhwYXllci1zZXNzaW9uIiwiZ3N0aW4iOiIyNEFCS0NTMjAzM0IxWlYiLCJpYXQiOjE3MTI5NDQxMDAsImV4cCI6MTcxMjk0NzcxMX0.sandbox-signature",
                        "session_expiry": 1712947710000,
                        "status_cd": "1",
                        "token_expiry": 1712947711000
                      },
                      "timestamp": 1712926110000,
                      "transaction_id": "460019fb-f79a-4c1d-bc21-46c9f8210c1d"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/logout": {
      "post": {
        "summary": "Logout",
        "deprecated": false,
        "description": "Using this API, you can invalidate current taxpayer session.",
        "operationId": "logout",
        "tags": [
          "Taxpayer",
          "Taxpayer Auth"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "a7eda5e8-1558-4689-ace8-f085cd699041"
                    }
                  }
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a7eda5e8-1558-4689-ace8-f085cd699041"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/evc/otp": {
      "post": {
        "summary": "Generate EVC OTP",
        "deprecated": false,
        "description": "Generate OTP to the users for filing through EVC.",
        "operationId": "generateEvcOtp",
        "tags": [
          "Taxpayer",
          "Taxpayer Auth"
        ],
        "parameters": [
          {
            "name": "gstr",
            "in": "query",
            "description": "GSTR Type. Example: gstr-1",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{gst_return}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "pan"
                ],
                "properties": {
                  "pan": {
                    "type": "string",
                    "description": "PAN of the authorized signatory"
                  }
                }
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "pan": "ABCCQ3123E"
                  },
                  "summary": "200 Success"
                },
                "OTP0010 Not authorized signatory": {
                  "value": {
                    "pan": "AAACQ3770E"
                  },
                  "summary": "OTP0010 Not authorized signatory"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Success / OTP0010 Not authorized signatory",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "error": {
                          "type": "object",
                          "properties": {
                            "error_cd": {
                              "type": "string",
                              "example": "OTP0010"
                            },
                            "message": {
                              "type": "string",
                              "example": "User does not have authorized signatory for Given Pan number and GSTIN"
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "6d2a2353-1664-4315-9fc3-536d4f753c1a"
                    }
                  }
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1"
                      },
                      "timestamp": 1763446641,
                      "transaction_id": "6d2a2353-1664-4315-9fc3-536d4f753c1a"
                    }
                  },
                  "OTP0010 Not authorized signatory": {
                    "summary": "OTP0010 Not authorized signatory",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_cd": "OTP0010",
                          "message": "User does not have authorized signatory for Given Pan number and GSTIN"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ed1295e9-9e4d-4650-9583-830b221cb1f6"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/txp/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1 TXP",
        "deprecated": false,
        "description": "Get all TXP details for a return period for authenticated taxpayer.",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Year e.g. 2020",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Month e.g. 01",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "`optional` Counter party GSTIN",
            "required": false,
            "example": "{{gstin}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "action_required",
            "in": "query",
            "description": "`optional` Status filter for filtering the invoices. Possible values: `Y` or `N`. Status filter for filtering the invoices. Use filter value Y to fetches the invoices where tax payer need to take action. Already accepted or uploaded invoices can be fetched by using filter value N.",
            "required": false,
            "example": "{{action_required}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "`optional` From Date (DD/MM/YYYY)",
            "required": false,
            "example": "{{from}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstrsGstr1TxpYearMonthResponse"
                },
                "examples": {
                  "Data Not found": {
                    "summary": "Data Not found",
                    "value": {
                      "code": 200,
                      "timestamp": 1769775550990,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "cd59f2bb-35d8-4075-8279-37cd74220878"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/txpa/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1 TXPA",
        "deprecated": false,
        "description": "Get amended TXP details for a return period for authenticated taxpayer.",
        "tags": [
          "Taxpayer",
          "GSTR-1 Documents",
          "Returns"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Year e.g. 2020",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Month e.g. 01",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "`optional` Counter party GSTIN",
            "required": false,
            "example": "{{gstin}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "action_required",
            "in": "query",
            "description": "`optional` Status filter for filtering the invoices. Possible values: `Y` or `N`. Status filter for filtering the invoices. Use filter value Y to fetches the invoices where tax payer need to take action. Already accepted or uploaded invoices can be fetched by using filter value N.",
            "required": false,
            "example": "{{action_required}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "`optional` From Date (DD/MM/YYYY)",
            "required": false,
            "example": "{{from}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstrsGstr1TxpaYearMonthResponse"
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/ecom/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1 ECOM",
        "deprecated": false,
        "description": "Get all ECOM details for a return period for authenticated taxpayer.",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sub_section",
            "in": "query",
            "description": "",
            "required": false,
            "example": "ECOM_B2B",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "recipient_gstin",
            "in": "query",
            "description": "",
            "required": false,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "",
            "required": false,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstrsGstr1EcomYearMonthResponse"
                },
                "examples": {
                  "RET11417 No data found": {
                    "summary": "RET11417 No data found",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number might have been amended earlier. Search with latest amended document.",
                          "error_cd": "RET11417"
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/supeco/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1 SUPECO",
        "deprecated": false,
        "description": "Get all SUPECO details for a return period for authenticated taxpayer.",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sub_section",
            "in": "query",
            "description": "",
            "required": false,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "",
            "required": false,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstrsGstr1SupecoYearMonthResponse"
                },
                "examples": {
                  "No invoices found": {
                    "summary": "No invoices found",
                    "value": {
                      "code": 200,
                      "timestamp": 1768901278009,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No invoices found!!",
                          "error_cd": "RETWEB_04"
                        }
                      },
                      "transaction_id": "9781a896-725e-4404-834e-201570379102"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/ecoma/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1 ECOMA",
        "deprecated": false,
        "description": "Get amended ECOM details for a return period for authenticated taxpayer.",
        "operationId": "getGSTR1ECOMA",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGSTR1ECOMAResponse"
                },
                "examples": {
                  "RET11417 No data found": {
                    "summary": "RET11417 No data found",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number might have been amended earlier. Search with latest amended document.",
                          "error_cd": "RET11417"
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/at/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 AT",
        "deprecated": false,
        "description": "Get advance tax details for a return period for authenticated taxpayer",
        "operationId": "getGstr1At",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1AtResponse"
                },
                "examples": {
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9e1608fe-372a-4064-94bc-4657473700f1"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/supecoa/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1 SUPECOA",
        "deprecated": false,
        "description": "Get amended SUPECO details for a return period for authenticated taxpayer.",
        "tags": [],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstrsGstr1SupecoaYearMonthResponse"
                },
                "examples": {
                  "No invoices found": {
                    "summary": "No invoices found",
                    "value": {
                      "code": 200,
                      "timestamp": 1768901352330,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No invoices found!!",
                          "error_cd": "RETWEB_04"
                        }
                      },
                      "transaction_id": "6d743aac-3cbe-49da-aef8-110689ddbaad"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/ata/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 ATA",
        "deprecated": false,
        "description": "Get amended advance tax details for a return period for authenticated taxpayer\r\n\r\n",
        "operationId": "getGstr1Ata",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1AtaResponse"
                },
                "examples": {
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "263c48b3-80b1-439f-8dc0-3b00156f1b89"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/b2b/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 B2B",
        "deprecated": false,
        "description": "Get all B2B invoices for a return period for authenticated taxpayer\r\n\r\n",
        "operationId": "getGstr1B2b",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "action_required",
            "in": "query",
            "description": "`optional` Status filter for filtering the invoices. Possible values: `Y` or `N`. Status filter for filtering the invoices. Use filter value Y to fetches the invoices where tax payer need to take action. Already accepted or uploaded invoices can be fetched by using filter value N.",
            "required": false,
            "example": "{{action_required}}",
            "schema": {
              "type": "string",
              "example": "{{action_required}}"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "From Date (DD/MM/YYYY)",
            "required": false,
            "example": "{{from}}",
            "schema": {
              "type": "string",
              "example": "{{from}}"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "`optional` Counter party GSTIN",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{gstin}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / 200 Filtered by counterparty GSTIN / RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1B2bResponse"
                },
                "examples": {
                  "200 Filtered by counterparty GSTIN": {
                    "summary": "200 Filtered by counterparty GSTIN",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "cfs": "N",
                              "ctin": "07ABCCD6123D1YZ",
                              "inv": [
                                {
                                  "cflag": "N",
                                  "chksum": "4b571a762c1c17818ff448fef1d690c95931868b72299f0671936720ba427fcd",
                                  "flag": "U",
                                  "idt": "29-12-2023",
                                  "inum": "78618",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30429eb5dfa38d3b6efa65346dcff127abf439c76e3afd8fo3vtf9rn",
                                  "irngendate": "03-01-2024",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 719.82,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 3999
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "07",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "updby": "S",
                                  "val": 4718.82
                                }
                              ]
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "25411a6e-3fa0-4e49-b5d6-d27efc595237"
                    }
                  },
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "cfs": "N",
                              "ctin": "07ABCCD6123D1YZ",
                              "inv": [
                                {
                                  "cflag": "N",
                                  "chksum": "4b571a762c1c17818ff448fef1d690c95931868b72299f0671936720ba427fcd",
                                  "flag": "U",
                                  "idt": "29-12-2023",
                                  "inum": "78618",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30429eb5dfa38d3b6efa65346dcff127abf439c76e3afd8fo3vtf9rn",
                                  "irngendate": "03-01-2024",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 719.82,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 3999
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "07",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "updby": "S",
                                  "val": 4718.82
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "07ABCPA2123G1YZ",
                              "inv": [
                                {
                                  "cflag": "N",
                                  "chksum": "d2cd7bfe59317de95d0877e4277c40f2fcb8b60df6641f18c1761908254e19f3",
                                  "flag": "U",
                                  "idt": "31-12-2023",
                                  "inum": "78765",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t3048fcd0d59cf0eb907b573f32a35d574dd8e00df859078fo3vtf9rn",
                                  "irngendate": "03-01-2024",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 242.84,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 1349.1
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "07",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "updby": "S",
                                  "val": 1591.94
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "29ABCCN2123R1YZ",
                              "inv": [
                                {
                                  "cflag": "N",
                                  "chksum": "1145dc69e5e5c1ec523c9eaaf1f892cb9f2523affb3d7724adcfd14c2f9e2804",
                                  "flag": "U",
                                  "idt": "05-12-2023",
                                  "inum": "78306",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t3011f5b90098dab3b6f5266d61d034989ab2f446c1f4cf8fo3vtf9rn",
                                  "irngendate": "03-01-2024",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 359.82,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 1999
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "29",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "updby": "S",
                                  "val": 2358.82
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "29ABCPM7123J1YZ",
                              "inv": [
                                {
                                  "cflag": "N",
                                  "chksum": "8c63db5e463121ea3940920995500f8b68fafae91eb88628d524f72f31828349",
                                  "flag": "U",
                                  "idt": "22-12-2023",
                                  "inum": "78309",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30f42d280bf0b63e7fd6f897d3eb4e499a47be05499e538fo3vtf9rn",
                                  "irngendate": "03-01-2024",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 899.82,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 4999
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "29",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "updby": "S",
                                  "val": 5898.82
                                }
                              ]
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "8a8a7de9-a3bc-42f2-836d-6ddb854fdc94"
                    }
                  },
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "14714878-95ff-4207-b127-d184f3fa2d6c"
                    }
                  },
                  "200 Success 2": {
                    "summary": "200 Success 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "inv": [
                                {
                                  "val": 4718.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 3999,
                                        "camt": 0,
                                        "iamt": 719.82
                                      }
                                    }
                                  ],
                                  "flag": "U",
                                  "irn": "qoycq59t30429eb5dfa38d3b6efa65346dcff127abf439c76e3afd8fo3vtf9rn",
                                  "updby": "S",
                                  "irngendate": "03-01-2024",
                                  "inum": "78618",
                                  "cflag": "N",
                                  "inv_typ": "R",
                                  "pos": "07",
                                  "srctyp": "E-Invoice",
                                  "idt": "29-12-2023",
                                  "rchrg": "N",
                                  "chksum": "4b571a762c1c17818ff448fef1d690c95931868b72299f0671936720ba427fcd"
                                }
                              ],
                              "cfs": "N",
                              "ctin": "07ABCCD6123D1YZ"
                            },
                            {
                              "inv": [
                                {
                                  "val": 1591.94,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 1349.1,
                                        "camt": 0,
                                        "iamt": 242.84
                                      }
                                    }
                                  ],
                                  "flag": "U",
                                  "irn": "qoycq59t3048fcd0d59cf0eb907b573f32a35d574dd8e00df859078fo3vtf9rn",
                                  "updby": "S",
                                  "irngendate": "03-01-2024",
                                  "inum": "78765",
                                  "cflag": "N",
                                  "inv_typ": "R",
                                  "pos": "07",
                                  "srctyp": "E-Invoice",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "chksum": "d2cd7bfe59317de95d0877e4277c40f2fcb8b60df6641f18c1761908254e19f3"
                                }
                              ],
                              "cfs": "N",
                              "ctin": "07ABCPA2123G1YZ"
                            },
                            {
                              "inv": [
                                {
                                  "val": 2358.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 1999,
                                        "camt": 0,
                                        "iamt": 359.82
                                      }
                                    }
                                  ],
                                  "flag": "U",
                                  "irn": "qoycq59t3011f5b90098dab3b6f5266d61d034989ab2f446c1f4cf8fo3vtf9rn",
                                  "updby": "S",
                                  "irngendate": "03-01-2024",
                                  "inum": "78306",
                                  "cflag": "N",
                                  "inv_typ": "R",
                                  "pos": "29",
                                  "srctyp": "E-Invoice",
                                  "idt": "05-12-2023",
                                  "rchrg": "N",
                                  "chksum": "1145dc69e5e5c1ec523c9eaaf1f892cb9f2523affb3d7724adcfd14c2f9e2804"
                                }
                              ],
                              "cfs": "N",
                              "ctin": "29ABCCN2123R1YZ"
                            },
                            {
                              "inv": [
                                {
                                  "val": 5898.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 4999,
                                        "camt": 0,
                                        "iamt": 899.82
                                      }
                                    }
                                  ],
                                  "flag": "U",
                                  "irn": "qoycq59t30f42d280bf0b63e7fd6f897d3eb4e499a47be05499e538fo3vtf9rn",
                                  "updby": "S",
                                  "irngendate": "03-01-2024",
                                  "inum": "78309",
                                  "cflag": "N",
                                  "inv_typ": "R",
                                  "pos": "29",
                                  "srctyp": "E-Invoice",
                                  "idt": "22-12-2023",
                                  "rchrg": "N",
                                  "chksum": "8c63db5e463121ea3940920995500f8b68fafae91eb88628d524f72f31828349"
                                }
                              ],
                              "cfs": "N",
                              "ctin": "29ABCPM7123J1YZ"
                            }
                          ]
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  },
                  "200 Filtered by counterparty GSTIN 2": {
                    "summary": "200 Filtered by counterparty GSTIN 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "inv": [
                                {
                                  "val": 4718.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 3999,
                                        "camt": 0,
                                        "iamt": 719.82
                                      }
                                    }
                                  ],
                                  "flag": "U",
                                  "irn": "qoycq59t30429eb5dfa38d3b6efa65346dcff127abf439c76e3afd8fo3vtf9rn",
                                  "updby": "S",
                                  "irngendate": "03-01-2024",
                                  "inum": "78618",
                                  "cflag": "N",
                                  "inv_typ": "R",
                                  "pos": "07",
                                  "srctyp": "E-Invoice",
                                  "idt": "29-12-2023",
                                  "rchrg": "N",
                                  "chksum": "4b571a762c1c17818ff448fef1d690c95931868b72299f0671936720ba427fcd"
                                }
                              ],
                              "cfs": "N",
                              "ctin": "07ABCCD6123D1YZ"
                            }
                          ]
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/b2ba/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 B2BA",
        "deprecated": false,
        "description": "Get all B2B amended invoices for a return period for authenticated taxpayer\r\n\r\n",
        "operationId": "getGstr1B2ba",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "action_required",
            "in": "query",
            "description": "`optional` Status filter for filtering the invoices. Possible values: `Y` or `N`. Status filter for filtering the invoices. Use filter value Y to fetches the invoices where tax payer need to take action. Already accepted or uploaded invoices can be fetched by using filter value N.",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{action_required}}"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "From Date (DD/MM/YYYY)",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{from}}"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "`optional` Counter party GSTIN",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{ctin}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1B2baResponse"
                },
                "examples": {
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "3c316991-4e59-434d-a477-b971f34b1cc4"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/b2cl/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 B2CL",
        "deprecated": false,
        "description": "Get all B2C Large invoices for a return period for authenticated taxpayer\r\n\r\n",
        "operationId": "getGstr1B2cl",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "state_code",
            "in": "query",
            "description": "`optional` State code",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{state_code}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1B2clResponse"
                },
                "examples": {
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "dad42e2d-0156-4e8c-8c85-ea8c4cde30e3"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/b2cla/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 B2CLA",
        "deprecated": false,
        "description": "Get all B2C Large invoices with amendments for a return period for authenticated taxpayer\r\n\r\n",
        "operationId": "getGstr1B2cla",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "state_code",
            "in": "query",
            "description": "`optional` State code",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{state_code}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1B2claResponse"
                },
                "examples": {
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6ae73a8b-4dab-49f9-930a-345bcc1ab9f2"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/b2cs/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 B2CS",
        "deprecated": false,
        "description": "Get all B2C HSN invoices for a return period for authenticated taxpayer\r\n\r\n",
        "operationId": "getGstr1B2cs",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1B2csResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2cs": [
                            {
                              "camt": 0,
                              "chksum": "03b5861d149936885055e3e9fda55f500586296f161ed315ca80eeaf892f5376",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 242.84,
                              "pos": "02",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 1349.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "08bbf76f2b2725ea703be7fdf818bcfa0a74560c92017fb8a0042139c19b01de",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1907.48,
                              "pos": "03",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 10597.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "4b00c1b6eb7c54caeebe25d86830a85a549e6ed27928488002699f364b43edd1",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 287.64,
                              "pos": "05",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 1598,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "1dd36a11eaf95a82a200167ebe9b12063e2f05fc1cb7524779c28916608c65f0",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 3345.84,
                              "pos": "06",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 18588,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "6d029bb6914881a25cdaef98b7420b71803ebb8f605c5658360e61576b4a77fd",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 6459.42,
                              "pos": "07",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 35885.6,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "59911d7b4a2a4627fcd5d1335180317cd851e49831281f349ab181a9a33d340b",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 4084.76,
                              "pos": "08",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 22693.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "784130cfed4f8da92e22069af09a1a5b93f66dc8144a124189727adb63043806",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 4911.18,
                              "pos": "09",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 27284.3,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "b3459e194ccf04c3174c21fac373e3d6ae115366718578d353496fb1a29f9cc5",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 5596.26,
                              "pos": "10",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 31090.3,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "e966a9ca391654c7720c1fb4c61e0a008d563cb9954522b8d23c78cd379a6199",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1691.5,
                              "pos": "16",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 9397.2,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "06d6555ecaf839064ed7693ec29caf7dde6ac9eff63f379e9e3c732fbd2a888b",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1295.68,
                              "pos": "18",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 7198.2,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "e018bc3584cd1c5b89d659c7453bbe1431bb4dcf9649560a9e9b5804b704b4c6",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 3922.42,
                              "pos": "19",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 21791.2,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "e94d9b8b73afe22410abfab15070cfd53d86e19343f1e9d072f5a86c67e97e3c",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1925.3,
                              "pos": "20",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 10696.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "223e7b1453600584fb3bdcf2b0db4b77f1d04950b9905be2fa55632c37948a9e",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 683.48,
                              "pos": "21",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 3797.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "52b3c421cb9e4fd5171271c917851c8c29ec2e428109e28651b8051b95250b21",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1439.64,
                              "pos": "22",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 7998,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "eed1041f6805b483bc21f08a19f5661d08f0424ee6b53165250f4b854262cb7f",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1403.48,
                              "pos": "23",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 7797.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "146cff518909b6a655c3df0147e23f4f6e72b92ac957cc89a95b499dd2e3c5ef",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 20935.22,
                              "pos": "27",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 116306.6,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "ca4785ebd9ba7ba887bc9993b763fc3b093fb0c9b32dea7ff8bc0e124e9d759e",
                              "flag": "N",
                              "iamt": 137579.65,
                              "pos": "29",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 764331.38,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "174be654d2dce1f10a22b9e19e02f45d84fc4f100434a5e2857926ad5d9f348d",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 485.84,
                              "pos": "30",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 2699.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "468c8eb9b0a4b4a42f62978e2b7e6b5ca5ae5e6868b10ae6f42f7dd819193d76",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 2446.76,
                              "pos": "32",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 13593.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "b070890a7a068320acae854bf6797ee31bde8f928c8d64f3bab687921ca6661a",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 11569.16,
                              "pos": "33",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 64273,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "d0466d478553ef25cea26b18a28a2af83df874a44fa4249fd65a02042269abaf",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 719.82,
                              "pos": "34",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 3999,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "d29c5d2340fe7a2a35324211c16e23c340da857142cadaf64d3783d9449c3e39",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 9490.96,
                              "pos": "36",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 52727.5,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "6763b809b465ce4777b6b75c59b5f347d5be28cb6485ee4222aee9649f3a5bba",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 10004.82,
                              "pos": "37",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 55582.3,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "d0b4acc3e8881a82477404317c2c196c7dd05677fefb51590666bb98cc6fd406",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 3094.96,
                              "pos": "97",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 17194.2,
                              "typ": "OE"
                            },
                            {
                              "camt": 2284.92,
                              "chksum": "946cb435ba9c511832971f21a1325123cc8a5fd0a0981b3175328eec1e874b9d",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 0,
                              "pos": "24",
                              "rt": 18,
                              "samt": 2284.92,
                              "sply_ty": "INTRA",
                              "txval": 25388,
                              "typ": "OE"
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "f7aef5cf-b1dc-4878-958e-4b3d7eb49c30"
                    }
                  },
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ea9d31d0-9a81-4890-aba7-89ec382599fe"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/b2csa/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 B2CSA",
        "deprecated": false,
        "description": "Get all B2CS HSN invoices for a return period for authenticated taxpayer\r\n\r\n",
        "operationId": "getGstr1B2csa",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1B2csaResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2cs": [
                            {
                              "camt": 0,
                              "chksum": "03b5861d149936885055e3e9fda55f500586296f161ed315ca80eeaf892f5376",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 242.84,
                              "pos": "02",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 1349.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "08bbf76f2b2725ea703be7fdf818bcfa0a74560c92017fb8a0042139c19b01de",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1907.48,
                              "pos": "03",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 10597.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "4b00c1b6eb7c54caeebe25d86830a85a549e6ed27928488002699f364b43edd1",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 287.64,
                              "pos": "05",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 1598,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "1dd36a11eaf95a82a200167ebe9b12063e2f05fc1cb7524779c28916608c65f0",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 3345.84,
                              "pos": "06",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 18588,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "6d029bb6914881a25cdaef98b7420b71803ebb8f605c5658360e61576b4a77fd",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 6459.42,
                              "pos": "07",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 35885.6,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "59911d7b4a2a4627fcd5d1335180317cd851e49831281f349ab181a9a33d340b",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 4084.76,
                              "pos": "08",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 22693.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "784130cfed4f8da92e22069af09a1a5b93f66dc8144a124189727adb63043806",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 4911.18,
                              "pos": "09",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 27284.3,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "b3459e194ccf04c3174c21fac373e3d6ae115366718578d353496fb1a29f9cc5",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 5596.26,
                              "pos": "10",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 31090.3,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "e966a9ca391654c7720c1fb4c61e0a008d563cb9954522b8d23c78cd379a6199",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1691.5,
                              "pos": "16",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 9397.2,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "06d6555ecaf839064ed7693ec29caf7dde6ac9eff63f379e9e3c732fbd2a888b",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1295.68,
                              "pos": "18",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 7198.2,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "e018bc3584cd1c5b89d659c7453bbe1431bb4dcf9649560a9e9b5804b704b4c6",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 3922.42,
                              "pos": "19",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 21791.2,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "e94d9b8b73afe22410abfab15070cfd53d86e19343f1e9d072f5a86c67e97e3c",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1925.3,
                              "pos": "20",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 10696.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "223e7b1453600584fb3bdcf2b0db4b77f1d04950b9905be2fa55632c37948a9e",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 683.48,
                              "pos": "21",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 3797.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "52b3c421cb9e4fd5171271c917851c8c29ec2e428109e28651b8051b95250b21",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1439.64,
                              "pos": "22",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 7998,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "eed1041f6805b483bc21f08a19f5661d08f0424ee6b53165250f4b854262cb7f",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 1403.48,
                              "pos": "23",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 7797.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "146cff518909b6a655c3df0147e23f4f6e72b92ac957cc89a95b499dd2e3c5ef",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 20935.22,
                              "pos": "27",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 116306.6,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "ca4785ebd9ba7ba887bc9993b763fc3b093fb0c9b32dea7ff8bc0e124e9d759e",
                              "flag": "N",
                              "iamt": 137579.65,
                              "pos": "29",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 764331.38,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "174be654d2dce1f10a22b9e19e02f45d84fc4f100434a5e2857926ad5d9f348d",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 485.84,
                              "pos": "30",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 2699.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "468c8eb9b0a4b4a42f62978e2b7e6b5ca5ae5e6868b10ae6f42f7dd819193d76",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 2446.76,
                              "pos": "32",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 13593.1,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "b070890a7a068320acae854bf6797ee31bde8f928c8d64f3bab687921ca6661a",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 11569.16,
                              "pos": "33",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 64273,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "d0466d478553ef25cea26b18a28a2af83df874a44fa4249fd65a02042269abaf",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 719.82,
                              "pos": "34",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 3999,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "d29c5d2340fe7a2a35324211c16e23c340da857142cadaf64d3783d9449c3e39",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 9490.96,
                              "pos": "36",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 52727.5,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "6763b809b465ce4777b6b75c59b5f347d5be28cb6485ee4222aee9649f3a5bba",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 10004.82,
                              "pos": "37",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 55582.3,
                              "typ": "OE"
                            },
                            {
                              "camt": 0,
                              "chksum": "d0b4acc3e8881a82477404317c2c196c7dd05677fefb51590666bb98cc6fd406",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 3094.96,
                              "pos": "97",
                              "rt": 18,
                              "samt": 0,
                              "sply_ty": "INTER",
                              "txval": 17194.2,
                              "typ": "OE"
                            },
                            {
                              "camt": 2284.92,
                              "chksum": "946cb435ba9c511832971f21a1325123cc8a5fd0a0981b3175328eec1e874b9d",
                              "csamt": 0,
                              "flag": "N",
                              "iamt": 0,
                              "pos": "24",
                              "rt": 18,
                              "samt": 2284.92,
                              "sply_ty": "INTRA",
                              "txval": 25388,
                              "typ": "OE"
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "b9a1801d-9870-41b1-ab12-e408fa6bff17"
                    }
                  },
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "49590510-e242-4e5c-a501-38f50bed894f"
                    }
                  },
                  "200 Success 2": {
                    "summary": "200 Success 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2csa": [
                            {
                              "itms": [
                                {
                                  "csamt": 0,
                                  "rt": 3,
                                  "txval": 54545,
                                  "iamt": 1636.35
                                }
                              ],
                              "flag": "N",
                              "pos": "34",
                              "omon": "072017",
                              "typ": "OE",
                              "chksum": "b879d454f2a180149a5878bc3cc101d343fbcbfed2171a2bd5230b531a4f223b",
                              "sply_ty": "INTER"
                            }
                          ]
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/cdnr/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 CDNR",
        "deprecated": false,
        "description": "Get all credit/debit notes for a return period for registered user\r\n\r\n",
        "operationId": "getGstr1Cdnr",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "action_required",
            "in": "query",
            "description": "`optional` Status filter for filtering the invoices. Possible values: `Y` or `N`. Status filter for filtering the invoices. Use filter value Y to fetches the invoices where tax payer need to take action. Already accepted or uploaded invoices can be fetched by using filter value N.",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{action_required}}"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "From Date (DD/MM/YYYY)",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{from}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found / 200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1CdnrResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cdnr": [
                            {
                              "cfs": "N",
                              "ctin": "06AAABC1234F1YZ",
                              "nt": [
                                {
                                  "cflag": "N",
                                  "chksum": "45dba17f8147720215827d43e75360b4e9b433f171a4ab48f4432f7f134b6396",
                                  "d_flag": "Y",
                                  "flag": "U",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 152.39,
                                        "rt": 18,
                                        "txval": 846.61
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "21-10-2024",
                                  "nt_num": "SCN-594",
                                  "ntty": "C",
                                  "pos": "06",
                                  "rchrg": "N",
                                  "updby": "S",
                                  "val": 999
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "19AAABC1234F1YZ",
                              "nt": [
                                {
                                  "cflag": "N",
                                  "chksum": "7b20992ad263f5469c10fd34d6ec7b297ab0044dc1e24b77ab2ff8527072c7f5",
                                  "d_flag": "Y",
                                  "flag": "U",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 152.39,
                                        "rt": 18,
                                        "txval": 846.61
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "21-10-2024",
                                  "nt_num": "SCN-595",
                                  "ntty": "C",
                                  "pos": "19",
                                  "rchrg": "N",
                                  "updby": "S",
                                  "val": 999
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "21AAABC1234M1YZ",
                              "nt": [
                                {
                                  "cflag": "N",
                                  "chksum": "4349b9cfc2cb4854ee8dfcc076d9a7c2d78720aaee9a72f0b146cbc94b438ea1",
                                  "d_flag": "Y",
                                  "flag": "U",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 152.39,
                                        "rt": 18,
                                        "txval": 846.61
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "21-10-2024",
                                  "nt_num": "SCN-602",
                                  "ntty": "C",
                                  "pos": "21",
                                  "rchrg": "N",
                                  "updby": "S",
                                  "val": 999
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "24AAABC1234Q1YZ",
                              "nt": [
                                {
                                  "cflag": "N",
                                  "chksum": "cfc6f6116585301569e6b92b35f7284e0d9ad87cf9d2a22858ba3ccd184035ee",
                                  "d_flag": "Y",
                                  "flag": "U",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 1525.42,
                                        "csamt": 0,
                                        "rt": 18,
                                        "samt": 1525.42,
                                        "txval": 16949.15
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "16-10-2024",
                                  "nt_num": "SCN-618",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "updby": "S",
                                  "val": 20000
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "29AAABC1234A1YZ",
                              "nt": [
                                {
                                  "cflag": "N",
                                  "chksum": "87eb637a2722df589ef6562b5cf088e8204775f53210fc6c8d0bed9d3172a34f",
                                  "d_flag": "Y",
                                  "flag": "U",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 152.39,
                                        "rt": 18,
                                        "txval": 846.61
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "21-10-2024",
                                  "nt_num": "SCN-592",
                                  "ntty": "C",
                                  "pos": "29",
                                  "rchrg": "N",
                                  "updby": "S",
                                  "val": 999
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "33AAABC1234H1YZ",
                              "nt": [
                                {
                                  "cflag": "N",
                                  "chksum": "0750a9514da1d618e2cb756f56e4447e3e4787e538c7a38983ea73ced6200228",
                                  "d_flag": "Y",
                                  "flag": "U",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 152.39,
                                        "rt": 18,
                                        "txval": 846.61
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "25-10-2024",
                                  "nt_num": "SCN-603",
                                  "ntty": "C",
                                  "pos": "33",
                                  "rchrg": "N",
                                  "updby": "S",
                                  "val": 999
                                }
                              ]
                            },
                            {
                              "cfs": "N",
                              "ctin": "33AAABC1234C1YZ",
                              "nt": [
                                {
                                  "cflag": "N",
                                  "chksum": "9a1b262af95f1e30e83c3e07023dd0e46bd709e6b2f8d16b33d11573a4004066",
                                  "d_flag": "Y",
                                  "flag": "U",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 152.39,
                                        "rt": 18,
                                        "txval": 846.61
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "31-10-2024",
                                  "nt_num": "SCN-619",
                                  "ntty": "C",
                                  "pos": "33",
                                  "rchrg": "N",
                                  "updby": "S",
                                  "val": 999
                                }
                              ]
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ff12dcdb-b205-4f2f-a27e-448b943f69e5"
                    }
                  },
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4c847af5-045e-40ff-a15e-c877399eef1f"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/cdnra/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 CDNRA",
        "deprecated": false,
        "description": "Get all amended credit/debit notes for a return period for registered user\r\n\r\n",
        "operationId": "getGstr1Cdnra",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "action_required",
            "in": "query",
            "description": "`optional` Status filter for filtering the invoices. Possible values: `Y` or `N`. Status filter for filtering the invoices. Use filter value Y to fetches the invoices where tax payer need to take action. Already accepted or uploaded invoices can be fetched by using filter value N.",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{action_required}}"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "From Date (DD/MM/YYYY)",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{from}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "vs",
            "in": "header",
            "description": "",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "example": ""
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1CdnraResponse"
                },
                "examples": {
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "f8acba44-7012-4f6e-9427-3b27a8f3fef9"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/cdnur/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 CDNUR",
        "deprecated": false,
        "description": "Get all credit/debit notes for a return period for unregistered user",
        "operationId": "getGstr1Cdnur",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1CdnurResponse"
                },
                "examples": {
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "df983776-7b55-4019-a2fe-cb99623a3897"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/cdnura/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 CDNURA",
        "deprecated": false,
        "description": "Get all amended credit/debit notes for a return period for unregistered user\r\n\r\n",
        "operationId": "getGstr1Cdnura",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1CdnuraResponse"
                },
                "examples": {
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9a4baaa8-0ac7-4a67-ae25-34aaca1f90b8"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/doc-issue/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 Document Issued",
        "deprecated": false,
        "description": "Get documents issued during tax period for tacpayer",
        "operationId": "getGstr1DocumentIssued",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1DocumentIssuedResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "doc_issue": {
                            "chksum": "3ff52fdcafdd930b86eef561393efe3fbe963bb220bb417cb21b503b9f486753",
                            "doc_det": [
                              {
                                "doc_num": 1,
                                "docs": [
                                  {
                                    "cancel": 0,
                                    "from": "78007",
                                    "net_issue": 845,
                                    "num": 1,
                                    "to": "78892",
                                    "totnum": 845
                                  }
                                ]
                              },
                              {
                                "doc_num": 2,
                                "docs": []
                              },
                              {
                                "doc_num": 3,
                                "docs": []
                              },
                              {
                                "doc_num": 4,
                                "docs": []
                              },
                              {
                                "doc_num": 5,
                                "docs": [
                                  {
                                    "cancel": 0,
                                    "from": "823",
                                    "net_issue": 8,
                                    "num": 1,
                                    "to": "830",
                                    "totnum": 8
                                  }
                                ]
                              },
                              {
                                "doc_num": 6,
                                "docs": []
                              },
                              {
                                "doc_num": 7,
                                "docs": []
                              },
                              {
                                "doc_num": 8,
                                "docs": []
                              },
                              {
                                "doc_num": 9,
                                "docs": []
                              },
                              {
                                "doc_num": 10,
                                "docs": []
                              },
                              {
                                "doc_num": 11,
                                "docs": []
                              },
                              {
                                "doc_num": 12,
                                "docs": []
                              }
                            ],
                            "flag": "N"
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "8cf8fa12-c2f4-4792-ae40-854660a1efe6"
                    }
                  },
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6fd3326b-50dc-4cca-bd07-1ddb2778604e"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/exp/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 EXP",
        "deprecated": false,
        "description": "Get invoices related to supplies exported for a return period for authenticated taxpayer",
        "operationId": "getGstr1Exp",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11417 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1ExpResponse"
                },
                "examples": {
                  "RET11417 No data found": {
                    "summary": "RET11417 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11417",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number might have been amended earlier. Search with latest amended document."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "982c98a8-8106-4be6-b522-a733cb584253"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/expa/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 NIL Supplies",
        "deprecated": false,
        "description": "Get amended invoices related to supplies exported for a return period for authenticated taxpayer",
        "operationId": "getGstr1Expa",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET11417 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1ExpaResponse"
                },
                "examples": {
                  "RET11417 No data found": {
                    "summary": "RET11417 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11417",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number might have been amended earlier. Search with latest amended document."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4c09eb5f-9245-4217-b0e0-fd4417139be0"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/nil/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1 NIL Supplies",
        "deprecated": false,
        "description": "Get liabilities such as ‘Nil Rated’, ‘Exempted’, and ‘Non GST’ supplies for a return period.",
        "operationId": "getGstr1NilSupplies",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1NilSuppliesResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "nil": {
                            "chksum": "7abd70a3e2619d3db9450047042ee428c81d7ee570060b545eb1fb2e484ca6aa",
                            "flag": "N",
                            "inv": [
                              {
                                "expt_amt": 0,
                                "ngsup_amt": 0,
                                "nil_amt": 0,
                                "sply_ty": "INTRAB2B"
                              },
                              {
                                "expt_amt": 0,
                                "ngsup_amt": 0,
                                "nil_amt": 0,
                                "sply_ty": "INTRAB2C"
                              },
                              {
                                "expt_amt": 0,
                                "ngsup_amt": 0,
                                "nil_amt": 0,
                                "sply_ty": "INTRB2B"
                              },
                              {
                                "expt_amt": 0,
                                "ngsup_amt": 0,
                                "nil_amt": 0,
                                "sply_ty": "INTRB2C"
                              }
                            ]
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a02aed92-79bc-4711-a549-34e288630fb9"
                    }
                  },
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "45d2dfd8-39c1-4943-8580-8d0d30ef80d7"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/hsn/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 HSN Summary",
        "deprecated": false,
        "description": "Get HSN summary for GSTR-1 data",
        "operationId": "getGstr1HsnSummary",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1 Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET11416 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1HsnSummaryResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "hsn": {
                            "chksum": "1a60e5144b4eecdc03ea2326ea0c5171ff7973840f10e9a409e8934c01283743",
                            "data": [
                              {
                                "camt": 2285,
                                "desc": "Individual tax preparation and planning services",
                                "hsn_sc": "998232",
                                "iamt": 237746,
                                "num": 1,
                                "qty": 0,
                                "rt": 18,
                                "samt": 2285,
                                "txval": 1346201,
                                "uqc": "NA"
                              }
                            ],
                            "flag": "N"
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "3f809d3d-8fa8-4c17-a798-8981318122e9"
                    }
                  },
                  "RET11416 No data found": {
                    "summary": "RET11416 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET11416",
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "12fff328-4baa-4dc4-bce8-0e47476c8fdd"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/{year}/{month}": {
      "get": {
        "summary": "GSTR-1 Summary",
        "deprecated": false,
        "description": "Get table wise summary of  GSTR-1 data",
        "operationId": "getGstr1Summary",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-1"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "summary_type",
            "in": "query",
            "description": "Summary type. Pass \"long\" to get full summary",
            "required": false,
            "schema": {
              "type": "string",
              "example": "long"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / 200 Success long summary",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1SummaryResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "chksum": "dacc6e65dd4342f36377e25d6408a6c59cdd518e9512bb84b1f4103bfa42a26c",
                          "gstin": "29AAACQ3770E000",
                          "newSumFlag": true,
                          "ret_period": "122023",
                          "sec_sum": [
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "AT",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "ATA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "f6b1125afa380198fe78e5f741bd4df63b398aec472967e5522b0f161febf1c0",
                              "sec_nm": "B2B",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 2222.3,
                              "ttl_rec": 4,
                              "ttl_sgst": 0,
                              "ttl_tax": 12346.1,
                              "ttl_val": 14568.4
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                              "sec_nm": "B2BA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_4A",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_4B",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_6C",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_SEZWOP",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_SEZWP",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "740822e0837d6181a9174db0189955f9989411432abc5bb9d079e70d21064caa",
                              "sec_nm": "B2B_4A",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 2222.3,
                              "ttl_rec": 4,
                              "ttl_sgst": 0,
                              "ttl_tax": 12346.1,
                              "ttl_val": 14568.4
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2B_4B",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2B_6C",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2B_SEZWOP",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2B_SEZWP",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2CL",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2CLA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "61bfe658d7e4a48f4e3d96c390961095747975e63c9d31a164b5da878d47842a",
                              "sec_nm": "B2CS",
                              "ttl_cess": 0,
                              "ttl_cgst": 2284.92,
                              "ttl_igst": 235524.11,
                              "ttl_rec": 25,
                              "ttl_sgst": 2284.92,
                              "ttl_tax": 1333854.58,
                              "ttl_val": 1573948.53
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2CSA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e085d73dee2753101a57f3a21ea28a6de1d5a148662b326d9626864fd2a1df40",
                              "sec_nm": "HSN",
                              "ttl_cess": 0,
                              "ttl_cgst": 2285,
                              "ttl_igst": 237746,
                              "ttl_rec": 1,
                              "ttl_sgst": 2285,
                              "ttl_tax": 1346201,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "d3bdc0c5ea608c90b800d6c1d3a64a2437a9843d391ca36c1f463e7c44bf45ce",
                              "sec_nm": "NIL",
                              "ttl_expt_amt": 0,
                              "ttl_ngsup_amt": 0,
                              "ttl_nilsup_amt": 0,
                              "ttl_rec": 1
                            },
                            {
                              "chksum": "dacc6e65dd4342f36377e25d6408a6c59cdd518e9512bb84b1f4103bfa42a26c",
                              "sec_nm": "TTL_LIAB",
                              "ttl_cess": 0,
                              "ttl_cgst": 2284.92,
                              "ttl_igst": 237746.41,
                              "ttl_rec": 32,
                              "ttl_sgst": 2284.92,
                              "ttl_tax": 1346200.68,
                              "ttl_val": 1588516.93
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "TXPD",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "TXPDA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "021eb7b414ffe7c5ede410deeb7cc0f23a6b9e2e2f0b784e1ff968d2981b4351",
                              "net_doc_issued": 853,
                              "sec_nm": "DOC_ISSUE",
                              "ttl_doc_cancelled": 0,
                              "ttl_doc_issued": 853,
                              "ttl_rec": 2
                            },
                            {
                              "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                              "sec_nm": "CDNR",
                              "sub_sections": [
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNR_4A",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNR_4B",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNR_6C",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNR_SEZWOP",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNR_SEZWP",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                              "sec_nm": "CDNRA",
                              "sub_sections": [
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_4A",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_4B",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_6C",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_SEZWOP",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_SEZWP",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                              "sec_nm": "CDNUR",
                              "sub_sections": [
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "B2CL"
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWOP"
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWP"
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                              "sec_nm": "CDNURA",
                              "sub_sections": [
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "B2CL"
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWOP"
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWP"
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                              "sec_nm": "EXP",
                              "sub_sections": [
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWOP"
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWP"
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                              "sec_nm": "EXPA",
                              "sub_sections": [
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWOP"
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWP"
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "f6094e27-17b6-4665-8fed-90c151175466"
                    }
                  },
                  "200 Success long summary": {
                    "summary": "200 Success long summary",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "chksum": "dacc6e65dd4342f36377e25d6408a6c59cdd518e9512bb84b1f4103bfa42a26c",
                          "gstin": "29AAACQ3770E000",
                          "newSumFlag": true,
                          "ret_period": "122023",
                          "sec_sum": [
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "AT",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "ATA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "f6b1125afa380198fe78e5f741bd4df63b398aec472967e5522b0f161febf1c0",
                              "sec_nm": "B2B",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 2222.3,
                              "ttl_rec": 4,
                              "ttl_sgst": 0,
                              "ttl_tax": 12346.1,
                              "ttl_val": 14568.4
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                              "sec_nm": "B2BA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_4A",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_4B",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_6C",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_SEZWOP",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2BA_SEZWP",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "740822e0837d6181a9174db0189955f9989411432abc5bb9d079e70d21064caa",
                              "cpty_sum": [
                                {
                                  "chksum": "e7f8cc5abe3b53299dce60659044af8f09a3cd3e56feca90fd3c13cbdaf385c8",
                                  "ctin": "07AAECD6807D1ZW",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 719.82,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 3999,
                                  "ttl_val": 4718.82
                                },
                                {
                                  "chksum": "243979a8ec2b7982612f1024ecbd1161c6548315e8af19d3205dbdd611712a9b",
                                  "ctin": "07CBNPA2711G1Z2",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 242.84,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 1349.1,
                                  "ttl_val": 1591.94
                                },
                                {
                                  "chksum": "0ecb7cc935ebea82f7122eaccd4195e7117ba0a5b3917931677c54bdc4007156",
                                  "ctin": "29AAICN2887R1ZB",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 359.82,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 1999,
                                  "ttl_val": 2358.82
                                },
                                {
                                  "chksum": "a4197738045bbbbe8232ac9e69e18ac502a55ea4d101c4b86d18eb9686bb1986",
                                  "ctin": "29AEQPM7474J1ZK",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 899.82,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 4999,
                                  "ttl_val": 5898.82
                                }
                              ],
                              "sec_nm": "B2B_4A",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 2222.3,
                              "ttl_rec": 4,
                              "ttl_sgst": 0,
                              "ttl_tax": 12346.1,
                              "ttl_val": 14568.4
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "cpty_sum": [],
                              "sec_nm": "B2B_4B",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "cpty_sum": [],
                              "sec_nm": "B2B_6C",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "cpty_sum": [],
                              "sec_nm": "B2B_SEZWOP",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "cpty_sum": [],
                              "sec_nm": "B2B_SEZWP",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "cpty_sum": [],
                              "sec_nm": "B2CL",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2CLA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "61bfe658d7e4a48f4e3d96c390961095747975e63c9d31a164b5da878d47842a",
                              "cpty_sum": [
                                {
                                  "chksum": "1abb685e1f3b82a754fc39f2fdd2a08e9d862a9e1ed2d4cb547339395ad3aad1",
                                  "state_cd": "02",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 242.84,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 1349.1,
                                  "ttl_val": 1591.94
                                },
                                {
                                  "chksum": "32474d5203142a9a94bdce08b9def06bf132fbc631309f2728b3f8270d5b6bc8",
                                  "state_cd": "03",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 1907.48,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 10597.1,
                                  "ttl_val": 12504.58
                                },
                                {
                                  "chksum": "b4bafabb1e88eba1419c030478cd9e962442986b6129d9a641abd076a81e4c45",
                                  "state_cd": "05",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 287.64,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 1598,
                                  "ttl_val": 1885.64
                                },
                                {
                                  "chksum": "52faea8da7aa1b4da79af13450507555b1a2e7b1f7b0ca85b841ecf4777551f6",
                                  "state_cd": "06",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 3345.84,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 18588,
                                  "ttl_val": 21933.84
                                },
                                {
                                  "chksum": "54800b33ff477f1da8241f92bd25821327f75dd8bc2c4259963aba27629f37bc",
                                  "state_cd": "07",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 6459.42,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 35885.6,
                                  "ttl_val": 42345.02
                                },
                                {
                                  "chksum": "c44b60278274aca1fdbb4e2ab1f77cc07307321133358412ca4249dfd187f42f",
                                  "state_cd": "08",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 4084.76,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 22693.1,
                                  "ttl_val": 26777.86
                                },
                                {
                                  "chksum": "4b9ecb2962b0e2bebf5c1ec95a8ebe7ca7ed7f79e5cd19e5ff4bb9c52ed9d555",
                                  "state_cd": "09",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 4911.18,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 27284.3,
                                  "ttl_val": 32195.48
                                },
                                {
                                  "chksum": "6ec36392488b832547e95a7c5305ac401bdbd05304b1fb25ce7c692c0f89b4bb",
                                  "state_cd": "10",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 5596.26,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 31090.3,
                                  "ttl_val": 36686.56
                                },
                                {
                                  "chksum": "5d3017a5161b66d9137aef39d31d872c0d306eb376431d31fc9c9da90468026a",
                                  "state_cd": "16",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 1691.5,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 9397.2,
                                  "ttl_val": 11088.7
                                },
                                {
                                  "chksum": "732d4532ccc461185a572ce57b8b3a9b6e4b9c6e41d338452c087cea9b3ee995",
                                  "state_cd": "18",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 1295.68,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 7198.2,
                                  "ttl_val": 8493.88
                                },
                                {
                                  "chksum": "32118b2ce32eecdc92a1ddb7b576d1139f2c592b7bde7436391f1cae17631038",
                                  "state_cd": "19",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 3922.42,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 21791.2,
                                  "ttl_val": 25713.62
                                },
                                {
                                  "chksum": "515e3ca5b8895984e2c149db16d9fddb93a06a58bdb624eb4d1d247b5ae46282",
                                  "state_cd": "20",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 1925.3,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 10696.1,
                                  "ttl_val": 12621.4
                                },
                                {
                                  "chksum": "e433e2b5c5c566435020d821dc2726dc91a34868af8bbfc83d0e499ed58c8863",
                                  "state_cd": "21",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 683.48,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 3797.1,
                                  "ttl_val": 4480.58
                                },
                                {
                                  "chksum": "ac303f0fdc9410e6cd529843a9b762d42f60435ef9933ca4c8c1ef480abb36aa",
                                  "state_cd": "22",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 1439.64,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 7998,
                                  "ttl_val": 9437.64
                                },
                                {
                                  "chksum": "1832ce9ad2b90e3eae00b7e9026e3a881175ae60cc423e986234d802d8a9ad1b",
                                  "state_cd": "23",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 1403.48,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 7797.1,
                                  "ttl_val": 9200.58
                                },
                                {
                                  "chksum": "97e5beeb42a79d14a166d9651244336cc8e90241ab4944a7d65e2553c625975a",
                                  "state_cd": "27",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 20935.22,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 116306.6,
                                  "ttl_val": 137241.82
                                },
                                {
                                  "chksum": "d15ba6db28a6af7ef352104765d5098e809e90fabdcf7798edda9f81c939c793",
                                  "state_cd": "29",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 137579.65,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 764331.38,
                                  "ttl_val": 901911.03
                                },
                                {
                                  "chksum": "423e49a90d7426a074913ddee6387de967be4f89ab3462597f6ab419fd55c7b6",
                                  "state_cd": "30",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 485.84,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 2699.1,
                                  "ttl_val": 3184.94
                                },
                                {
                                  "chksum": "97e97fd2c970f6291b8ca95b11d2fd42d586424d3eb61b9180ce4138c7cdd81b",
                                  "state_cd": "32",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 2446.76,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 13593.1,
                                  "ttl_val": 16039.86
                                },
                                {
                                  "chksum": "5138d66c74d24ae2a30634b6336ca7b4dcc498a5380f0c2e921cf3d481e54b7c",
                                  "state_cd": "33",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 11569.16,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 64273,
                                  "ttl_val": 75842.16
                                },
                                {
                                  "chksum": "5b650c22419c5bf30483551e046d9c554a545668a16f245ca1917e24f0750edd",
                                  "state_cd": "34",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 719.82,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 3999,
                                  "ttl_val": 4718.82
                                },
                                {
                                  "chksum": "7d40820838b7b2897f9544740475eb6f9fe40fcc6ff7aafdcd256d81f78a2e50",
                                  "state_cd": "36",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 9490.96,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 52727.5,
                                  "ttl_val": 62218.46
                                },
                                {
                                  "chksum": "2283d32cd784c77d3cc15eeebac2bee95a2da94cccbec5055563eca91d6f3fbb",
                                  "state_cd": "37",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 10004.82,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 55582.3,
                                  "ttl_val": 65587.12
                                },
                                {
                                  "chksum": "dc3fc6bdc38d29b4ecf3ecaff02e96bd13905a325fcfc9bfe955279404a8b3d9",
                                  "state_cd": "97",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 3094.96,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 17194.2,
                                  "ttl_val": 20289.16
                                },
                                {
                                  "chksum": "04ec4f8bbb1e24fccd2df8c0afa6012604ef9a21329e1fe4cc79de7ebb23f6b6",
                                  "state_cd": "24",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 2284.92,
                                  "ttl_igst": 0,
                                  "ttl_rec": 1,
                                  "ttl_sgst": 2284.92,
                                  "ttl_tax": 25388,
                                  "ttl_val": 29957.84
                                }
                              ],
                              "sec_nm": "B2CS",
                              "ttl_cess": 0,
                              "ttl_cgst": 2284.92,
                              "ttl_igst": 235524.11,
                              "ttl_rec": 25,
                              "ttl_sgst": 2284.92,
                              "ttl_tax": 1333854.58,
                              "ttl_val": 1573948.53
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "B2CSA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "e085d73dee2753101a57f3a21ea28a6de1d5a148662b326d9626864fd2a1df40",
                              "sec_nm": "HSN",
                              "ttl_cess": 0,
                              "ttl_cgst": 2285,
                              "ttl_igst": 237746,
                              "ttl_rec": 1,
                              "ttl_sgst": 2285,
                              "ttl_tax": 1346201,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "d3bdc0c5ea608c90b800d6c1d3a64a2437a9843d391ca36c1f463e7c44bf45ce",
                              "sec_nm": "NIL",
                              "ttl_expt_amt": 0,
                              "ttl_ngsup_amt": 0,
                              "ttl_nilsup_amt": 0,
                              "ttl_rec": 1
                            },
                            {
                              "chksum": "dacc6e65dd4342f36377e25d6408a6c59cdd518e9512bb84b1f4103bfa42a26c",
                              "sec_nm": "TTL_LIAB",
                              "ttl_cess": 0,
                              "ttl_cgst": 2284.92,
                              "ttl_igst": 237746.41,
                              "ttl_rec": 32,
                              "ttl_sgst": 2284.92,
                              "ttl_tax": 1346200.68,
                              "ttl_val": 1588516.93
                            },
                            {
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "TXPD",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                              "sec_nm": "TXPDA",
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "021eb7b414ffe7c5ede410deeb7cc0f23a6b9e2e2f0b784e1ff968d2981b4351",
                              "net_doc_issued": 853,
                              "sec_nm": "DOC_ISSUE",
                              "ttl_doc_cancelled": 0,
                              "ttl_doc_issued": 853,
                              "ttl_rec": 2
                            },
                            {
                              "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                              "sec_nm": "CDNR",
                              "sub_sections": [
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "cpty_sum": [],
                                  "sec_nm": "CDNR_4A",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "cpty_sum": [],
                                  "sec_nm": "CDNR_4B",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "cpty_sum": [],
                                  "sec_nm": "CDNR_6C",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "cpty_sum": [],
                                  "sec_nm": "CDNR_SEZWOP",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "cpty_sum": [],
                                  "sec_nm": "CDNR_SEZWP",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                              "sec_nm": "CDNRA",
                              "sub_sections": [
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_4A",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_4B",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_6C",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_SEZWOP",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "sec_nm": "CDNRA_SEZWP",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                              "sec_nm": "CDNUR",
                              "sub_sections": [
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "B2CL"
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWOP"
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWP"
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                              "sec_nm": "CDNURA",
                              "sub_sections": [
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "B2CL"
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWOP"
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWP"
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                              "sec_nm": "EXP",
                              "sub_sections": [
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWOP"
                                },
                                {
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWP"
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            },
                            {
                              "act_cess": 0,
                              "act_cgst": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_tax": 0,
                              "act_val": 0,
                              "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                              "sec_nm": "EXPA",
                              "sub_sections": [
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWOP"
                                },
                                {
                                  "act_cess": 0,
                                  "act_cgst": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_tax": 0,
                                  "act_val": 0,
                                  "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                                  "ttl_cess": 0,
                                  "ttl_cgst": 0,
                                  "ttl_igst": 0,
                                  "ttl_rec": 0,
                                  "ttl_sgst": 0,
                                  "ttl_tax": 0,
                                  "ttl_val": 0,
                                  "typ": "EXPWP"
                                }
                              ],
                              "ttl_cess": 0,
                              "ttl_cgst": 0,
                              "ttl_igst": 0,
                              "ttl_rec": 0,
                              "ttl_sgst": 0,
                              "ttl_tax": 0,
                              "ttl_val": 0
                            }
                          ],
                          "smryTyp": "L"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "32ae2b43-a6c7-452e-84d9-c813f9676690"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Save GSTR-1",
        "deprecated": false,
        "description": "Authenticated tax payer can save entire GSTR-1 invoices by uploading json to GST portal",
        "operationId": "saveGstr1",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-1"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SaveGstr1Request"
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "fp": "112023",
                    "gt": 3782969.01,
                    "cur_gt": 3782969.01,
                    "b2b": [
                      {
                        "ctin": "01AABCE2207R1Z5",
                        "inv": [
                          {
                            "inum": "S008400",
                            "idt": "24-12-2023",
                            "val": 729248.16,
                            "pos": "06",
                            "rchrg": "N",
                            "etin": "01AABCE5507R1C4",
                            "inv_typ": "R",
                            "diff_percent": 0.65,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "rt": 5,
                                  "txval": 10000,
                                  "iamt": 325,
                                  "csamt": 500
                                }
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "b2ba": [
                      {
                        "ctin": "01AABCE2207R1Z5",
                        "inv": [
                          {
                            "oinum": "S008400",
                            "oidt": "24-12-2023",
                            "inum": "S008400",
                            "idt": "24-12-2023",
                            "val": 729248.16,
                            "pos": "06",
                            "rchrg": "N",
                            "etin": "01AABCE5507R1C4",
                            "inv_typ": "R",
                            "diff_percent": 0.65,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "rt": 5,
                                  "txval": 10000,
                                  "iamt": 325,
                                  "camt": 0,
                                  "samt": 0,
                                  "csamt": 500
                                }
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "b2cl": [
                      {
                        "pos": "05",
                        "inv": [
                          {
                            "inum": "92661",
                            "idt": "10-12-2023",
                            "val": 784586.33,
                            "etin": "27AHQPA8875L1CU",
                            "diff_percent": 0.65,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "rt": 5,
                                  "txval": 10000,
                                  "iamt": 325,
                                  "csamt": 500
                                }
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "b2cla": [
                      {
                        "pos": "06",
                        "inv": [
                          {
                            "oinum": "9266",
                            "oidt": "10-02-2023",
                            "diff_percent": 0.65,
                            "inum": "92661",
                            "idt": "10-12-2023",
                            "val": 784586.33,
                            "etin": "01AABCE5507R1C4",
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "rt": 5,
                                  "txval": 10000,
                                  "iamt": 833.33
                                }
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "cdnr": [
                      {
                        "ctin": "01AAAAP1208Q1ZS",
                        "nt": [
                          {
                            "ntty": "C",
                            "nt_num": "533515",
                            "nt_dt": "23-12-2023",
                            "pos": "03",
                            "rchrg": "Y",
                            "inv_typ": "DE",
                            "val": 123123,
                            "diff_percent": 0.65,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "rt": 10,
                                  "txval": 5225.28,
                                  "iamt": 339.64,
                                  "csamt": 789.52
                                }
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "cdnra": [
                      {
                        "ctin": "01AAAAP1208Q1ZS",
                        "nt": [
                          {
                            "ntty": "C",
                            "ont_num": "533515",
                            "ont_dt": "23-09-2023",
                            "nt_num": "533515",
                            "nt_dt": "23-12-2023",
                            "diff_percent": 0.65,
                            "inv_typ": "DE",
                            "pos": "03",
                            "rchrg": "Y",
                            "val": 123123,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "rt": 10,
                                  "txval": 5225.28,
                                  "iamt": 845.22,
                                  "camt": 0,
                                  "samt": 0,
                                  "csamt": 789.52
                                }
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "b2cs": [
                      {
                        "sply_ty": "INTER",
                        "diff_percent": 0.65,
                        "rt": 5,
                        "typ": "E",
                        "etin": "01AABCE5507R1C4",
                        "pos": "05",
                        "txval": 110,
                        "iamt": 10,
                        "csamt": 10
                      },
                      {
                        "rt": 5,
                        "sply_ty": "INTER",
                        "diff_percent": 0.65,
                        "typ": "OE",
                        "txval": 100,
                        "iamt": 10,
                        "csamt": 10,
                        "pos": "05"
                      }
                    ],
                    "b2csa": [
                      {
                        "omon": "122023",
                        "sply_ty": "INTER",
                        "diff_percent": 0.65,
                        "typ": "E",
                        "etin": "01AABCE5507R1C4",
                        "pos": "05",
                        "itms": [
                          {
                            "rt": 5,
                            "txval": 110,
                            "iamt": 10,
                            "camt": 0,
                            "samt": 0,
                            "csamt": 10
                          },
                          {
                            "rt": 12,
                            "txval": 110,
                            "iamt": 10,
                            "camt": 0,
                            "samt": 0,
                            "csamt": 10
                          }
                        ]
                      }
                    ],
                    "exp": [
                      {
                        "exp_typ": "WPAY",
                        "inv": [
                          {
                            "inum": "81542",
                            "idt": "12-02-2023",
                            "val": 995048.36,
                            "sbpcode": "ASB991",
                            "sbnum": "7896542",
                            "sbdt": "04-10-2023",
                            "itms": [
                              {
                                "txval": 10000,
                                "rt": 5,
                                "iamt": 833.33,
                                "csamt": 100
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "exp_typ": "WOPAY",
                        "inv": [
                          {
                            "inum": "81542",
                            "idt": "12-02-2023",
                            "val": 995048.36,
                            "sbpcode": "ASB981",
                            "sbnum": "7896542",
                            "sbdt": "04-10-2023",
                            "itms": [
                              {
                                "txval": 10000,
                                "rt": 0,
                                "iamt": 0,
                                "csamt": 100
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "expa": [
                      {
                        "exp_typ": "WPAY",
                        "inv": [
                          {
                            "oinum": "81542",
                            "oidt": "12-02-2023",
                            "inum": "81542",
                            "idt": "12-12-2023",
                            "val": 995048.36,
                            "sbpcode": "ASB995",
                            "sbnum": "1234567",
                            "sbdt": "04-10-2023",
                            "itms": [
                              {
                                "txval": 10000,
                                "rt": 5,
                                "iamt": 833.33,
                                "csamt": 100
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "hsn": {
                      "data": [
                        {
                          "num": 1,
                          "hsn_sc": "1010",
                          "desc": "Goods Description",
                          "uqc": "kg",
                          "qty": 2.05,
                          "txval": 10.23,
                          "iamt": 14.52,
                          "csamt": 500,
                          "rt": 0.1
                        }
                      ]
                    },
                    "nil": {
                      "inv": [
                        {
                          "sply_ty": "INTRB2B",
                          "expt_amt": 123.45,
                          "nil_amt": 1470.85,
                          "ngsup_amt": 1258.5
                        },
                        {
                          "sply_ty": "INTRB2C",
                          "expt_amt": 123.45,
                          "nil_amt": 1470.85,
                          "ngsup_amt": 1258.5
                        }
                      ]
                    },
                    "txpd": [
                      {
                        "pos": "05",
                        "sply_ty": "INTER",
                        "diff_percent": 0.65,
                        "itms": [
                          {
                            "rt": 5,
                            "ad_amt": 100,
                            "iamt": 9400,
                            "csamt": 500
                          }
                        ]
                      }
                    ],
                    "txpda": [
                      {
                        "omon": "122023",
                        "pos": "05",
                        "sply_ty": "INTER",
                        "diff_percent": 0.65,
                        "itms": [
                          {
                            "rt": 5,
                            "ad_amt": 100,
                            "iamt": 9400,
                            "csamt": 500
                          }
                        ]
                      }
                    ],
                    "at": [
                      {
                        "pos": "05",
                        "sply_ty": "INTER",
                        "diff_percent": 0.65,
                        "itms": [
                          {
                            "rt": 5,
                            "ad_amt": 100,
                            "iamt": 9400,
                            "csamt": 500
                          }
                        ]
                      }
                    ],
                    "ata": [
                      {
                        "omon": "022017",
                        "pos": "05",
                        "sply_ty": "INTER",
                        "diff_percent": 0.65,
                        "itms": [
                          {
                            "rt": 5,
                            "ad_amt": 100,
                            "iamt": 9400,
                            "csamt": 500
                          }
                        ]
                      }
                    ],
                    "doc_issue": {
                      "doc_det": [
                        {
                          "doc_num": 1,
                          "docs": [
                            {
                              "num": 1,
                              "from": "20",
                              "to": "29",
                              "totnum": 20,
                              "cancel": 3,
                              "net_issue": 17
                            }
                          ]
                        }
                      ]
                    },
                    "cdnur": [
                      {
                        "typ": "B2CL",
                        "ntty": "C",
                        "nt_num": "533515",
                        "nt_dt": "23-12-2023",
                        "pos": "03",
                        "val": 64646,
                        "diff_percent": 0.65,
                        "itms": [
                          {
                            "num": 1,
                            "itm_det": {
                              "rt": 10,
                              "txval": 5225.28,
                              "iamt": 339.64,
                              "csamt": 789.52
                            }
                          }
                        ]
                      }
                    ],
                    "cdnura": [
                      {
                        "ont_num": "533515",
                        "ont_dt": "23-09-2023",
                        "nt_num": "533515",
                        "nt_dt": "23-12-2023",
                        "ntty": "C",
                        "typ": "B2CL",
                        "pos": "03",
                        "val": 123123,
                        "diff_percent": 0.65,
                        "itms": [
                          {
                            "num": 1,
                            "itm_det": {
                              "rt": 10,
                              "txval": 5225.28,
                              "iamt": 845.22,
                              "csamt": 789.52
                            }
                          }
                        ]
                      }
                    ]
                  },
                  "summary": "200 Success"
                },
                "AUTH117 GSTR-1 is already filed": {
                  "value": {
                    "fp": "032024",
                    "gt": 3782969.01,
                    "cur_gt": 3782969.01,
                    "b2b": [
                      {
                        "inv": [
                          {
                            "val": 1178.82,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "csamt": 0,
                                  "samt": 0,
                                  "rt": 18,
                                  "txval": 999,
                                  "camt": 0,
                                  "iamt": 179.82
                                }
                              }
                            ],
                            "flag": "U",
                            "irn": "qoycq59t30ab18dcd27f569f30e41e0bd773481aec10b2259578b230f852773a",
                            "updby": "S",
                            "irngendate": "29-03-2024",
                            "inum": "79188",
                            "cflag": "N",
                            "inv_typ": "R",
                            "pos": "20",
                            "srctyp": "E-Invoice",
                            "idt": "12-03-2024",
                            "rchrg": "N",
                            "chksum": "fb69db99d0d962a30b54f12413aca5f88eeb060491c483aaaa14095f00579984"
                          }
                        ],
                        "cfs": "N",
                        "ctin": "20ABCPR9123F1YZ"
                      },
                      {
                        "inv": [
                          {
                            "val": 1103578.06,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "csamt": 0,
                                  "samt": 84171.21,
                                  "rt": 18,
                                  "txval": 935235.64,
                                  "camt": 84171.21,
                                  "iamt": 0
                                }
                              }
                            ],
                            "flag": "U",
                            "irn": "qoycq59t309252f10a3c145e3e7d34e55b9e9b103711e821f0c3dec9b474fea9",
                            "updby": "S",
                            "irngendate": "28-03-2024",
                            "inum": "79370",
                            "cflag": "N",
                            "inv_typ": "R",
                            "pos": "24",
                            "srctyp": "E-Invoice",
                            "idt": "28-03-2024",
                            "rchrg": "N",
                            "chksum": "43669ff19e74da1b4b674cae1c6438b3886579c7490fedb248092155d15d5e87"
                          },
                          {
                            "val": 1062000,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "csamt": 0,
                                  "samt": 81000,
                                  "rt": 18,
                                  "txval": 900000,
                                  "camt": 81000,
                                  "iamt": 0
                                }
                              }
                            ],
                            "flag": "U",
                            "irn": "qoycq59t30b656602b367450772f4663cfab17114b1c984b59d4d6d9d5df27b9",
                            "updby": "S",
                            "irngendate": "28-03-2024",
                            "inum": "79373",
                            "cflag": "N",
                            "inv_typ": "R",
                            "pos": "24",
                            "srctyp": "E-Invoice",
                            "idt": "28-03-2024",
                            "rchrg": "N",
                            "chksum": "b69d0c9c8fbb0571a3f94960cf8cfbdab94bad73a515e04fcbdbd9968b3c6ab4"
                          }
                        ],
                        "cfs": "N",
                        "ctin": "24ABCCS2123B1YZ"
                      },
                      {
                        "inv": [
                          {
                            "val": 1178.82,
                            "itms": [
                              {
                                "num": 1,
                                "itm_det": {
                                  "csamt": 0,
                                  "samt": 89.91,
                                  "rt": 18,
                                  "txval": 999,
                                  "camt": 89.91,
                                  "iamt": 0
                                }
                              }
                            ],
                            "flag": "U",
                            "irn": "qoycq59t3048fd73e5ebd41c390d2fc22d5049829a4a67cbcc5d8e122ce7ea1e",
                            "updby": "S",
                            "irngendate": "29-03-2024",
                            "inum": "79122",
                            "cflag": "N",
                            "inv_typ": "R",
                            "pos": "24",
                            "srctyp": "E-Invoice",
                            "idt": "04-03-2024",
                            "rchrg": "N",
                            "chksum": "a3d0f6bea39e025d5cf216ba4c30e08ef3a15588130459621db9417e5eed718c"
                          }
                        ],
                        "cfs": "N",
                        "ctin": "24ABCPB0123K1YZ"
                      }
                    ]
                  },
                  "summary": "AUTH117 GSTR-1 is already filed"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "200 Success / AUTH117 GSTR-1 is already filed",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SaveGstr1Response"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "dfb8f5a1-04c3-4f95-bb60-e13ce9b7221c"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "02b23947-f428-4deb-844d-c4e8456bb04d"
                    }
                  },
                  "AUTH117 GSTR-1 is already filed": {
                    "summary": "AUTH117 GSTR-1 is already filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "AUTH117",
                          "message": "GSTR1 is already filed for current period"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "14790334-8944-48be-a2b2-0263a28ff41a"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/{year}/{month}/reset": {
      "post": {
        "summary": "Reset GSTR-1",
        "deprecated": false,
        "description": "Authenticated tax payer can save entire GSTR-1 invoices by uploading json to GST portal",
        "operationId": "resetGstr1",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-1"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET191251 RESET is under progress",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResetGstr1Response"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "456a8aa4-10f0-4af5-9819-d82a9c9bd771"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "da7c4153-0f64-4c5a-a6ea-e62aea1da5c8"
                    }
                  },
                  "RET191251 RESET is under progress": {
                    "summary": "RET191251 RESET is under progress",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET191251",
                          "message": "RESET is under progress. Please try again later"
                        }
                      },
                      "timestamp": 1739183911000,
                      "transaction_id": "535e2398-2f2d-4bf1-b4e6-4c44c62313cf"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1/{year}/{month}/file": {
      "post": {
        "summary": "File GSTR-1",
        "deprecated": false,
        "description": "File GSTR-1 return",
        "operationId": "fileGstr1",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-1"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pan",
            "in": "query",
            "description": "PAN of the authorized signatory",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{pan}}"
            }
          },
          {
            "name": "otp",
            "in": "query",
            "description": "Generated EVC OTP",
            "required": true,
            "schema": {
              "type": "string",
              "example": "575757"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/FileGstr1Request"
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "newSumFlag": true,
                    "sec_sum": [
                      {
                        "ttl_igst": 0,
                        "sec_nm": "AT",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "ATA",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 2222.3,
                        "sec_nm": "B2B",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 12346.1,
                        "ttl_val": 14568.4,
                        "chksum": "f6b1125afa380198fe78e5f741bd4df63b398aec472967e5522b0f161febf1c0",
                        "ttl_rec": 4,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "B2BA",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "B2BA_4A",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "B2BA_4B",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "B2BA_6C",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "B2BA_SEZWOP",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "B2BA_SEZWP",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 2222.3,
                        "sec_nm": "B2B_4A",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 12346.1,
                        "ttl_val": 14568.4,
                        "chksum": "740822e0837d6181a9174db0189955f9989411432abc5bb9d079e70d21064caa",
                        "ttl_rec": 4,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "B2B_4B",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "B2B_6C",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "B2B_SEZWOP",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "B2B_SEZWP",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "B2CL",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "B2CLA",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 235524.11,
                        "sec_nm": "B2CS",
                        "ttl_cgst": 2284.92,
                        "ttl_cess": 0,
                        "ttl_tax": 1333854.58,
                        "ttl_val": 1573948.53,
                        "chksum": "61bfe658d7e4a48f4e3d96c390961095747975e63c9d31a164b5da878d47842a",
                        "ttl_rec": 25,
                        "ttl_sgst": 2284.92
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "B2CSA",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 237746,
                        "sec_nm": "HSN",
                        "ttl_cgst": 2285,
                        "ttl_cess": 0,
                        "ttl_tax": 1346201,
                        "ttl_val": 0,
                        "chksum": "e085d73dee2753101a57f3a21ea28a6de1d5a148662b326d9626864fd2a1df40",
                        "ttl_rec": 1,
                        "ttl_sgst": 2285
                      },
                      {
                        "ttl_nilsup_amt": 0,
                        "ttl_expt_amt": 0,
                        "sec_nm": "NIL",
                        "chksum": "d3bdc0c5ea608c90b800d6c1d3a64a2437a9843d391ca36c1f463e7c44bf45ce",
                        "ttl_rec": 1,
                        "ttl_ngsup_amt": 0
                      },
                      {
                        "ttl_igst": 237746.41,
                        "sec_nm": "TTL_LIAB",
                        "ttl_cgst": 2284.92,
                        "ttl_cess": 0,
                        "ttl_tax": 1346200.68,
                        "ttl_val": 1588516.93,
                        "chksum": "dacc6e65dd4342f36377e25d6408a6c59cdd518e9512bb84b1f4103bfa42a26c",
                        "ttl_rec": 32,
                        "ttl_sgst": 2284.92
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "TXPD",
                        "ttl_cgst": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "TXPDA",
                        "ttl_cgst": 0,
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_doc_issued": 853,
                        "sec_nm": "DOC_ISSUE",
                        "net_doc_issued": 853,
                        "ttl_doc_cancelled": 0,
                        "chksum": "021eb7b414ffe7c5ede410deeb7cc0f23a6b9e2e2f0b784e1ff968d2981b4351",
                        "ttl_rec": 2
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "CDNR",
                        "ttl_cgst": 0,
                        "sub_sections": [
                          {
                            "ttl_igst": 0,
                            "sec_nm": "CDNR_4A",
                            "ttl_cgst": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "sec_nm": "CDNR_4B",
                            "ttl_cgst": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "sec_nm": "CDNR_6C",
                            "ttl_cgst": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "sec_nm": "CDNR_SEZWOP",
                            "ttl_cgst": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "sec_nm": "CDNR_SEZWP",
                            "ttl_cgst": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          }
                        ],
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "CDNRA",
                        "ttl_cgst": 0,
                        "sub_sections": [
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "sec_nm": "CDNRA_4A",
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "sec_nm": "CDNRA_4B",
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "sec_nm": "CDNRA_6C",
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "sec_nm": "CDNRA_SEZWOP",
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "sec_nm": "CDNRA_SEZWP",
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          }
                        ],
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "CDNUR",
                        "ttl_cgst": 0,
                        "sub_sections": [
                          {
                            "ttl_igst": 0,
                            "ttl_cgst": 0,
                            "typ": "B2CL",
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "ttl_cgst": 0,
                            "typ": "EXPWOP",
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "ttl_cgst": 0,
                            "typ": "EXPWP",
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          }
                        ],
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "CDNURA",
                        "ttl_cgst": 0,
                        "sub_sections": [
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "typ": "B2CL",
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "typ": "EXPWOP",
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "typ": "EXPWP",
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          }
                        ],
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "sec_nm": "EXP",
                        "ttl_cgst": 0,
                        "sub_sections": [
                          {
                            "ttl_igst": 0,
                            "ttl_cgst": 0,
                            "typ": "EXPWOP",
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "ttl_cgst": 0,
                            "typ": "EXPWP",
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "ttl_val": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0
                          }
                        ],
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "ttl_val": 0,
                        "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                        "ttl_rec": 0,
                        "ttl_sgst": 0
                      },
                      {
                        "ttl_igst": 0,
                        "act_cgst": 0,
                        "act_tax": 0,
                        "ttl_val": 0,
                        "act_val": 0,
                        "act_igst": 0,
                        "sec_nm": "EXPA",
                        "ttl_cgst": 0,
                        "sub_sections": [
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "typ": "EXPWOP",
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          },
                          {
                            "ttl_igst": 0,
                            "act_cgst": 0,
                            "act_tax": 0,
                            "typ": "EXPWP",
                            "ttl_val": 0,
                            "act_val": 0,
                            "act_igst": 0,
                            "ttl_cgst": 0,
                            "act_cess": 0,
                            "ttl_cess": 0,
                            "ttl_tax": 0,
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_sgst": 0,
                            "act_sgst": 0
                          }
                        ],
                        "act_cess": 0,
                        "ttl_cess": 0,
                        "ttl_tax": 0,
                        "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                        "ttl_rec": 0,
                        "ttl_sgst": 0,
                        "act_sgst": 0
                      }
                    ],
                    "chksum": "dacc6e65dd4342f36377e25d6408a6c59cdd518e9512bb84b1f4103bfa42a26c"
                  },
                  "summary": "200 Success"
                },
                "RT_FIL_10 Please submit invoices before filing": {
                  "value": {
                    "chksum": "09611331c842287090ca97b52c8a4eb850bc83cfba1a078de638324902c77a6d",
                    "newSumFlag": true,
                    "sec_sum": [
                      {
                        "sec_nm": "AT",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "ATA",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2B",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2BA",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_4A",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_4B",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_6C",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_SEZWOP",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_SEZWP",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2B_4A",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_4B",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_6C",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_SEZWOP",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_SEZWP",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2CL",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2CLA",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2CS",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2CSA",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "HSN",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "NIL",
                        "chksum": "d3bdc0c5ea608c90b800d6c1d3a64a2437a9843d391ca36c1f463e7c44bf45ce",
                        "ttl_rec": 1,
                        "ttl_expt_amt": 0,
                        "ttl_ngsup_amt": 0,
                        "ttl_nilsup_amt": 0
                      },
                      {
                        "sec_nm": "TTL_LIAB",
                        "chksum": "09611331c842287090ca97b52c8a4eb850bc83cfba1a078de638324902c77a6d",
                        "ttl_rec": 1,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "TXPD",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "TXPDA",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "DOC_ISSUE",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_doc_issued": 0,
                        "ttl_doc_cancelled": 0,
                        "net_doc_issued": 0
                      },
                      {
                        "sec_nm": "CDNR",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "sub_sections": [
                          {
                            "sec_nm": "CDNR_4A",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_4B",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_6C",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_SEZWOP",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_SEZWP",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNRA",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0,
                        "sub_sections": [
                          {
                            "sec_nm": "CDNRA_4A",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_4B",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_6C",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_SEZWOP",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_SEZWP",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNUR",
                        "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "sub_sections": [
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "B2CL",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWOP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNURA",
                        "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0,
                        "sub_sections": [
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "B2CL",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWOP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "EXP",
                        "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "sub_sections": [
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWOP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "EXPA",
                        "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0,
                        "sub_sections": [
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWOP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          }
                        ]
                      }
                    ]
                  },
                  "summary": "RT_FIL_10 Please submit invoices before filing"
                },
                "RT_FIL_02 GSTR-1 is already filed": {
                  "value": {
                    "chksum": "09611331c842287090ca97b52c8a4eb850bc83cfba1a078de638324902c77a6d",
                    "newSumFlag": true,
                    "sec_sum": [
                      {
                        "sec_nm": "AT",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "ATA",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2B",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2BA",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_4A",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_4B",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_6C",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_SEZWOP",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_SEZWP",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2B_4A",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_4B",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_6C",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_SEZWOP",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_SEZWP",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2CL",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2CLA",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2CS",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2CSA",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "HSN",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "NIL",
                        "chksum": "d3bdc0c5ea608c90b800d6c1d3a64a2437a9843d391ca36c1f463e7c44bf45ce",
                        "ttl_rec": 1,
                        "ttl_expt_amt": 0,
                        "ttl_ngsup_amt": 0,
                        "ttl_nilsup_amt": 0
                      },
                      {
                        "sec_nm": "TTL_LIAB",
                        "chksum": "09611331c842287090ca97b52c8a4eb850bc83cfba1a078de638324902c77a6d",
                        "ttl_rec": 1,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "TXPD",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "TXPDA",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "DOC_ISSUE",
                        "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                        "ttl_rec": 0,
                        "ttl_doc_issued": 0,
                        "ttl_doc_cancelled": 0,
                        "net_doc_issued": 0
                      },
                      {
                        "sec_nm": "CDNR",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "sub_sections": [
                          {
                            "sec_nm": "CDNR_4A",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_4B",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_6C",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_SEZWOP",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_SEZWP",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNRA",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0,
                        "sub_sections": [
                          {
                            "sec_nm": "CDNRA_4A",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_4B",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_6C",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_SEZWOP",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_SEZWP",
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNUR",
                        "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "sub_sections": [
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "B2CL",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWOP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNURA",
                        "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0,
                        "sub_sections": [
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "B2CL",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWOP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "EXP",
                        "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "sub_sections": [
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWOP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0
                          }
                        ]
                      },
                      {
                        "sec_nm": "EXPA",
                        "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                        "ttl_rec": 0,
                        "ttl_tax": 0,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0,
                        "sub_sections": [
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWOP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                            "typ": "EXPWP",
                            "ttl_rec": 0,
                            "ttl_tax": 0,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 0,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          }
                        ]
                      }
                    ]
                  },
                  "summary": "RT_FIL_02 GSTR-1 is already filed"
                },
                "Request Example": {
                  "value": {
                    "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                    "newSumFlag": true,
                    "sec_sum": [
                      {
                        "sec_nm": "AT",
                        "chksum": "da88731791fdf49c66735228563c4bc798f0af67ba0d1a7089c94762e9f724a6",
                        "ttl_rec": 2,
                        "ttl_tax": 44444420889.56,
                        "ttl_igst": -0.86,
                        "ttl_sgst": 11111111036.02,
                        "ttl_cgst": 11111111036.02,
                        "ttl_val": 122222153821.52,
                        "ttl_cess": 55555510860.78
                      },
                      {
                        "sec_nm": "ATA",
                        "chksum": "3ca0b723feba4b8b1f443d7d74d1b474a3a1aa7bad214f2e209cf60480b83692",
                        "ttl_rec": 2,
                        "ttl_tax": -899235,
                        "ttl_igst": -45000,
                        "ttl_sgst": 29.84,
                        "ttl_cgst": 29.84,
                        "ttl_val": -946497.32,
                        "ttl_cess": -2322,
                        "act_tax": 122220,
                        "act_igst": 2330,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 12330,
                        "act_cess": 1230
                      },
                      {
                        "sec_nm": "B2BA_4A",
                        "chksum": "6b3f23ef64d015c9cff462f29e3c122699348c268b43bab06ff7b04197dcbbfe",
                        "ttl_rec": 2,
                        "ttl_tax": 805243,
                        "ttl_igst": 804,
                        "ttl_sgst": 71868.87,
                        "ttl_cgst": 71868.87,
                        "ttl_val": -8798124,
                        "ttl_cess": 12567.99,
                        "act_tax": 0,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_4B",
                        "chksum": "4ae1d21d47de029c6d22b34e551f6b27edbcb45dd40e694eb32c51e0cf9b7bd5",
                        "ttl_rec": 2,
                        "ttl_tax": 1967508,
                        "ttl_igst": 49382.7,
                        "ttl_sgst": 58791.24,
                        "ttl_cgst": 58791.24,
                        "ttl_val": 889654,
                        "ttl_cess": 7676,
                        "act_tax": 1230,
                        "act_igst": 2330,
                        "act_sgst": 23430,
                        "act_cgst": 2340,
                        "act_val": 2340,
                        "act_cess": 230
                      },
                      {
                        "sec_nm": "B2BA_6C",
                        "chksum": "ee5b0f23ff94b147ef55cc0f2b80e6ffbe725c64d4f032487b65faf1cea03328",
                        "ttl_rec": 2,
                        "ttl_tax": 38899,
                        "ttl_igst": -2592.75,
                        "ttl_sgst": 3407.34,
                        "ttl_cgst": 3407.34,
                        "ttl_val": -888889,
                        "ttl_cess": -3911,
                        "act_tax": 1230,
                        "act_igst": 2330,
                        "act_sgst": 23430,
                        "act_cgst": 2340,
                        "act_val": 2340,
                        "act_cess": 230
                      },
                      {
                        "sec_nm": "B2BA_SEZWOP",
                        "chksum": "ae90ec41964d5df24be221142fb2a462c01d68b3ad8f7f3c3357cab7f39dc7e6",
                        "ttl_rec": 1,
                        "ttl_tax": -60898,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 0,
                        "act_tax": 23450,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 0
                      },
                      {
                        "sec_nm": "B2BA_SEZWP",
                        "chksum": "7827685684828f58be2c1e52a3180795e589f8ad49e887f09ac50a62a4da485e",
                        "ttl_rec": 1,
                        "ttl_tax": 87654,
                        "ttl_igst": 10518.48,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": 5678
                      },
                      {
                        "sec_nm": "B2BA",
                        "chksum": "6b3f23ef64d015c9cff462f29e3c122699348c268b43bab06ff7b04197dcbbfe",
                        "ttl_rec": 8,
                        "ttl_tax": 2805243,
                        "ttl_igst": 23804,
                        "ttl_sgst": 71868.87,
                        "ttl_cgst": 71868.87,
                        "ttl_val": 8798124,
                        "ttl_cess": 12567.99,
                        "act_tax": 23434334,
                        "act_igst": 0,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 2323
                      },
                      {
                        "sec_nm": "B2B_4A",
                        "chksum": "a6239d4877ad5b51a197181db9480f8541bdfae67bdcd5c967c3fac99b682a29",
                        "ttl_rec": 1,
                        "ttl_tax": 33333333333.33,
                        "ttl_igst": 22222222222.22,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 2132131111111.12,
                        "ttl_cess": 11111111111.33
                      },
                      {
                        "sec_nm": "B2B_4B",
                        "chksum": "c959cf095ce4b3db864758aa213565db4f841b0f779d230b34293bedef738a92",
                        "ttl_rec": 1,
                        "ttl_tax": 3213123,
                        "ttl_igst": 48196.85,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 2312312,
                        "ttl_cess": 31231
                      },
                      {
                        "sec_nm": "B2B_6C",
                        "chksum": "390da75f029b2665e80fe9fa12693bc2f37bfeb502f1724d5cf0d54738726829",
                        "ttl_rec": 1,
                        "ttl_tax": 324324,
                        "ttl_igst": 0,
                        "ttl_sgst": 33333333333.77,
                        "ttl_cgst": 33333333333.77,
                        "ttl_val": 12321321,
                        "ttl_cess": 2131
                      },
                      {
                        "sec_nm": "B2B_SEZWOP",
                        "chksum": "24f5856505826f8ce83c490c7f826213228a5ccba13cb7b6012398a475706603",
                        "ttl_rec": 1,
                        "ttl_tax": 23432433,
                        "ttl_igst": 0,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 675675,
                        "ttl_cess": 0
                      },
                      {
                        "sec_nm": "B2B_SEZWP",
                        "chksum": "938a7da1b6692b772d3c04fe1a7005ba1508d765acd007df5ed7fb7b8cb38c05",
                        "ttl_rec": 1,
                        "ttl_tax": 3213,
                        "ttl_igst": 342,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 2332131,
                        "ttl_cess": 432
                      },
                      {
                        "sec_nm": "B2B",
                        "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                        "ttl_rec": 5,
                        "ttl_tax": 2345634540,
                        "ttl_igst": 3432323230,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 3456543450,
                        "ttl_cess": 345543340
                      },
                      {
                        "sec_nm": "B2CL",
                        "chksum": "4554f3207eae9ba570e2ee41b841e869154572a59112c0f2a1f2f8852820c8fe",
                        "ttl_rec": 1,
                        "ttl_tax": 22222222222.23,
                        "ttl_igst": 55555555.56,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 2132132133333.78,
                        "ttl_cess": 33333333333.34
                      },
                      {
                        "sec_nm": "B2CLA",
                        "chksum": "437b8d4cdac2b9cef2d8d6e36123d7a00bd999a8598dd4edaf278c33fa8b1606",
                        "ttl_rec": 1,
                        "ttl_tax": -72000,
                        "ttl_igst": -12960,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 0,
                        "ttl_cess": -8100,
                        "act_tax": 34330,
                        "act_igst": 3440,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 0,
                        "act_cess": 7650
                      },
                      {
                        "sec_nm": "B2CS",
                        "chksum": "0b1403687e52935e3f26a8f4d8574e885930395c64bd20e00f898bbb123cdc84",
                        "ttl_rec": 1,
                        "ttl_tax": 22222222222.56,
                        "ttl_igst": 0,
                        "ttl_sgst": 77777777777.88,
                        "ttl_cgst": 77777777777.88,
                        "ttl_val": 211111111112.21,
                        "ttl_cess": 33333333333.89
                      },
                      {
                        "sec_nm": "B2CSA",
                        "chksum": "0492ae6db08db5a23e54c89b3870cb35d133affd2a37d1750af6e1e8eb742108",
                        "ttl_rec": 2,
                        "ttl_tax": 7654,
                        "ttl_igst": -22400,
                        "ttl_sgst": 3418.51,
                        "ttl_cgst": 3418.51,
                        "ttl_val": -10029.98,
                        "ttl_cess": -2121,
                        "act_tax": 186654,
                        "act_igst": 2520,
                        "act_sgst": 8683.51,
                        "act_cgst": 8683.51,
                        "act_val": 214320.02,
                        "act_cess": 7779
                      },
                      {
                        "sec_nm": "HSN",
                        "chksum": "60737d74bb569edfe4a23436e3793b1511072a742c4d5985579bd410dd61d1e0",
                        "ttl_rec": 1,
                        "ttl_tax": -3343244444.89,
                        "ttl_igst": -3333333333.78,
                        "ttl_sgst": -4444444444.89,
                        "ttl_cgst": -4444444444.89,
                        "ttl_val": 0,
                        "ttl_cess": -2222222222.89
                      },
                      {
                        "sec_nm": "NIL",
                        "chksum": "3a3c483a65d597a0fb4d49cfd5fdd4ca77c7e9eef2c19cebbf0fb9d89796617e",
                        "ttl_rec": 1,
                        "ttl_expt_amt": 22222222222.89,
                        "ttl_ngsup_amt": 22222222222.89,
                        "ttl_nilsup_amt": 33333333333.78
                      },
                      {
                        "sec_nm": "TTL_LIAB",
                        "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                        "ttl_rec": 22,
                        "ttl_tax": 139906853335.47,
                        "ttl_igst": -9944445758.49,
                        "ttl_sgst": 122222222147.23,
                        "ttl_cgst": 122222222147.23,
                        "ttl_val": 996800682809.96,
                        "ttl_cess": -53208.64
                      },
                      {
                        "sec_nm": "TXPD",
                        "chksum": "178e78d07eef867df63103728398198d5f9ffa26fcc9da997b0c40d7fc1e007c",
                        "ttl_rec": 1,
                        "ttl_tax": 24234324444.78,
                        "ttl_igst": 0,
                        "ttl_sgst": 33333333333.89,
                        "ttl_cgst": 33333333333.89,
                        "ttl_val": 146456546668.45,
                        "ttl_cess": 55555555555.89
                      },
                      {
                        "sec_nm": "TXPDA",
                        "chksum": "2b2bb15c6988c490b7c065f3976e6046615f04a38f9621cca2bf8faa505a8e26",
                        "ttl_rec": 2,
                        "ttl_tax": 16419,
                        "ttl_igst": 2765.28,
                        "ttl_sgst": 392.58,
                        "ttl_cgst": 392.58,
                        "ttl_val": 21325.44,
                        "ttl_cess": 1356,
                        "act_tax": 123979,
                        "act_igst": 20524.08,
                        "act_sgst": 726.33,
                        "act_cgst": 726.33,
                        "act_val": 149118.74,
                        "act_cess": 3163
                      },
                      {
                        "sec_nm": "DOC_ISSUE",
                        "chksum": "e733fd4ff5a82a730dc75b0e44c602c3929984278bf49acb546cfec8750df8ae",
                        "ttl_rec": 1,
                        "ttl_doc_issued": 5555555555,
                        "ttl_doc_cancelled": 1111111111,
                        "net_doc_issued": 4444444444
                      },
                      {
                        "sec_nm": "CDNR",
                        "chksum": "5f2d31143d8b05a9e27c6bd8c5d01a8f7dad2a7f4bad863b141b55cafced9493",
                        "ttl_rec": 5,
                        "ttl_tax": -66666855864.78,
                        "ttl_igst": -33333292838.41,
                        "ttl_sgst": 33333333333.45,
                        "ttl_cgst": 33333333333.45,
                        "ttl_val": -2343245743552.89,
                        "ttl_cess": -77777754321.09,
                        "sub_sections": [
                          {
                            "sec_nm": "CDNR_4A",
                            "chksum": "08dd6ae65e1689cbbbfe558bb898676fc38bc31e63119168990a582358c2fab6",
                            "ttl_rec": 1,
                            "ttl_tax": -66666666666.78,
                            "ttl_igst": -33333333333.78,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": -2343244444444.89,
                            "ttl_cess": -77777777777.89
                          },
                          {
                            "sec_nm": "CDNR_4B",
                            "chksum": "185f1a3485f34bcf6ec516462e50505be0e39cd02c69c506cb3a9a64a4d67734",
                            "ttl_rec": 1,
                            "ttl_tax": 3123123,
                            "ttl_igst": 46846.85,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 3123213,
                            "ttl_cess": 65765
                          },
                          {
                            "sec_nm": "CDNR_6C",
                            "chksum": "c1a41c8323ca49803429e47f158cd09588407a97b36d8d4027d1493fa0cc7d0c",
                            "ttl_rec": 1,
                            "ttl_tax": 324234,
                            "ttl_igst": 0,
                            "ttl_sgst": 33333333333.45,
                            "ttl_cgst": 33333333333.45,
                            "ttl_val": 34324,
                            "ttl_cess": 33.8
                          },
                          {
                            "sec_nm": "CDNR_SEZWOP",
                            "chksum": "947859622e8a9ba017c084f02b51b58859d938ae7a9bd36a9551b1031656e0d9",
                            "ttl_rec": 1,
                            "ttl_tax": -3213123,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": -213213,
                            "ttl_cess": 0
                          },
                          {
                            "sec_nm": "CDNR_SEZWP",
                            "chksum": "a137b006e96e6f660b4fde19ff624f678b9007690f7d247217d1823a8db2cf68",
                            "ttl_rec": 1,
                            "ttl_tax": -423432,
                            "ttl_igst": -6351.48,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": -4243432,
                            "ttl_cess": -42342
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNRA",
                        "chksum": "42406abc0f8076aac31811e985a916a1e18c9a68c715977718918615da9f980f",
                        "ttl_rec": 8,
                        "ttl_tax": -74530,
                        "ttl_igst": -27948.19,
                        "ttl_sgst": -10484.42,
                        "ttl_cgst": -10484.42,
                        "ttl_val": -9898654,
                        "ttl_cess": -77459,
                        "act_tax": -196528,
                        "act_igst": -13371.73,
                        "act_sgst": -37044.2,
                        "act_cgst": -37044.2,
                        "act_val": -108419,
                        "act_cess": -71148,
                        "sub_sections": [
                          {
                            "sec_nm": "CDNRA_4A",
                            "chksum": "568b1d868a64fb0f22079968624ccf6b46e93579b092c2390ded564015099ede",
                            "ttl_rec": 2,
                            "ttl_tax": 70865,
                            "ttl_igst": 5740.73,
                            "ttl_sgst": -212.93,
                            "ttl_cgst": -212.93,
                            "ttl_val": -111111,
                            "ttl_cess": -51111,
                            "act_tax": 12340,
                            "act_igst": 2340,
                            "act_sgst": 340,
                            "act_cgst": 234230,
                            "act_val": 343430,
                            "act_cess": 355550
                          },
                          {
                            "sec_nm": "CDNRA_4B",
                            "chksum": "dfa3695a8fcffcb045bc18a12b6ef6f3ec89dda5ef798d04f5c6746de8f24bd9",
                            "ttl_rec": 2,
                            "ttl_tax": -66506,
                            "ttl_igst": -10197.6,
                            "ttl_sgst": -1382.64,
                            "ttl_cgst": -1382.64,
                            "ttl_val": 0,
                            "ttl_cess": -14568,
                            "act_tax": 12340,
                            "act_igst": 2340,
                            "act_sgst": 340,
                            "act_cgst": 234230,
                            "act_val": 343430,
                            "act_cess": 355550
                          },
                          {
                            "sec_nm": "CDNRA_6C",
                            "chksum": "ebb858ce1e546f8b07928d188b18ae12d7c64d3fa0d4bb092a542269672f3937",
                            "ttl_rec": 2,
                            "ttl_tax": -90000,
                            "ttl_igst": 1051.8,
                            "ttl_sgst": -8888.85,
                            "ttl_cgst": -8888.85,
                            "ttl_val": -9787543,
                            "ttl_cess": -6102,
                            "act_tax": 12340,
                            "act_igst": 2340,
                            "act_sgst": 340,
                            "act_cgst": 234230,
                            "act_val": 343430,
                            "act_cess": 355550
                          },
                          {
                            "sec_nm": "CDNRA_SEZWOP",
                            "chksum": "ace4f2ab79c2301e6879fc47c4b369a77971e6a3c1090f9dde1ed62e6591c2fb",
                            "ttl_rec": 1,
                            "ttl_tax": 98765,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 4322330,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "sec_nm": "CDNRA_SEZWP",
                            "chksum": "5e701432e85eb69a8cdc961cf79e20415178a1734914f1833d861e752ee005fe",
                            "ttl_rec": 1,
                            "ttl_tax": -87654,
                            "ttl_igst": -24543.12,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": -5678,
                            "act_tax": 234230,
                            "act_igst": 2321220,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 8320
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNUR",
                        "chksum": "5e73987481582753bf2e7c4baab4b5b11000f83fe872ef86e2142eb50d45e32e",
                        "ttl_rec": 3,
                        "ttl_tax": -23865462562.55,
                        "ttl_igst": -21111106414.6,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": -3333333444453.45,
                        "ttl_cess": -66666635435.78,
                        "sub_sections": [
                          {
                            "chksum": "f09efe96d759c539d783a7d3c99b2a2f157b077ea81833dc955976c362f2fa60",
                            "typ": "B2CL",
                            "ttl_rec": 1,
                            "ttl_tax": -23442343243.55,
                            "ttl_igst": -21111111111.45,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": -3333333333333.45,
                            "ttl_cess": -66666666666.78
                          },
                          {
                            "chksum": "a987e5146073c237d0ac510b40ece2279bffe065b8b6d8db5a0794cba85ce083",
                            "typ": "EXPWOP",
                            "ttl_rec": 1,
                            "ttl_tax": -423432442,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": -423432,
                            "ttl_cess": 0
                          },
                          {
                            "chksum": "0e5b2598683c690288f16a35b698fcfb544e0c47130fa2a41e3f5dff69684e62",
                            "typ": "EXPWP",
                            "ttl_rec": 1,
                            "ttl_tax": 313123,
                            "ttl_igst": 4696.85,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 312312,
                            "ttl_cess": 31231
                          }
                        ]
                      },
                      {
                        "sec_nm": "CDNURA",
                        "chksum": "8702dbcca009aad165a1400f56500c565c2a3d3293b130a151c4c19517781dc8",
                        "ttl_rec": 3,
                        "ttl_tax": -30702,
                        "ttl_igst": -8721.36,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": -22225,
                        "ttl_cess": -8678,
                        "act_tax": 21230,
                        "act_igst": 23420,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 232330,
                        "act_cess": 2320,
                        "sub_sections": [
                          {
                            "chksum": "f0940c5a2aa79e4f99c5d40350661711b6a3092a3737b70cc14f61d83b9b37c4",
                            "typ": "B2CL",
                            "ttl_rec": 1,
                            "ttl_tax": -67000,
                            "ttl_igst": -8040,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": -8000,
                            "act_tax": 72320,
                            "act_igst": 76660,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "chksum": "28894f53eac244bf9bbb84ce0ba7c78fb45f907c78c6199043b20d177c27c72c",
                            "typ": "EXPWOP",
                            "ttl_rec": 1,
                            "ttl_tax": 41976,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 0,
                            "ttl_cess": 0,
                            "act_tax": 68760,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 0,
                            "act_cess": 0
                          },
                          {
                            "chksum": "52da2fc8812102fad05d7c4341bc55d1ea23e2ce9c476248e94b6534cd1a1696",
                            "typ": "EXPWP",
                            "ttl_rec": 1,
                            "ttl_tax": -5678,
                            "ttl_igst": -681.36,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": -22225,
                            "ttl_cess": -678,
                            "act_tax": 3450,
                            "act_igst": 340,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 98760,
                            "act_cess": 760
                          }
                        ]
                      },
                      {
                        "sec_nm": "EXP",
                        "chksum": "d8f1cc1c2ca19c2ce0f81f8464f05a71d7cb00225b54e695b0a0594d84b01953",
                        "ttl_rec": 2,
                        "ttl_tax": 54646546667.34,
                        "ttl_igst": 22222222222.45,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": 2222222266667.12,
                        "ttl_cess": 66666666666.78,
                        "sub_sections": [
                          {
                            "chksum": "0aed99b028cc6ecc9f022148e6fd85ffb0df750671c4ba3782263ab4e959c42a",
                            "typ": "EXPWOP",
                            "ttl_rec": 1,
                            "ttl_tax": 21313213333.78,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 44444.78,
                            "ttl_cess": 0
                          },
                          {
                            "chksum": "adcf09377e50ff9820098c18d69cf2b31205ccff207893168855f4610d0ff518",
                            "typ": "EXPWP",
                            "ttl_rec": 1,
                            "ttl_tax": 33333333333.56,
                            "ttl_igst": 22222222222.45,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 2222222222222.34,
                            "ttl_cess": 66666666666.78
                          }
                        ]
                      },
                      {
                        "sec_nm": "EXPA",
                        "chksum": "46239891d3778fafb6c14767fbaf703a43f02fc18ab8adfcaf1fa2a8e2c401b9",
                        "ttl_rec": 2,
                        "ttl_tax": 5467,
                        "ttl_igst": 548.04,
                        "ttl_sgst": 0,
                        "ttl_cgst": 0,
                        "ttl_val": -901000,
                        "ttl_cess": 5678,
                        "act_tax": 7650,
                        "act_igst": 760,
                        "act_sgst": 0,
                        "act_cgst": 0,
                        "act_val": 65430,
                        "act_cess": 4540,
                        "sub_sections": [
                          {
                            "chksum": "c84883e80c80c80bbb3beff569f760a92ee5fc68dcc7e380b71a8d4a6d89b815",
                            "typ": "EXPWOP",
                            "ttl_rec": 1,
                            "ttl_tax": 900,
                            "ttl_igst": 0,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": -909654,
                            "ttl_cess": 0,
                            "act_tax": 1450,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 1222220,
                            "act_cess": 0
                          },
                          {
                            "chksum": "b44d75cb450958b6f8916f68e7c080e34eaea31e9616a0432db43461c3d9c18e",
                            "typ": "EXPWP",
                            "ttl_rec": 1,
                            "ttl_tax": 4567,
                            "ttl_igst": 548.04,
                            "ttl_sgst": 0,
                            "ttl_cgst": 0,
                            "ttl_val": 8654,
                            "ttl_cess": 5678,
                            "act_tax": 1450,
                            "act_igst": 0,
                            "act_sgst": 0,
                            "act_cgst": 0,
                            "act_val": 1222220,
                            "act_cess": 0
                          }
                        ]
                      }
                    ]
                  },
                  "summary": "Request Example"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "200 Success / RT_FIL_10 Please submit invoices before filing / RT_FIL_02 GSTR-1 is already filed",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FileGstr1Response"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "ack_num": "ASDFSDF1241343"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "578e66be-ff2b-42c2-8987-3f8a86fdcc46"
                    }
                  },
                  "RT_FIL_10 Please submit invoices before filing": {
                    "summary": "RT_FIL_10 Please submit invoices before filing",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT_FIL_10",
                          "message": "Please submit the invoices before filing"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "292fbab4-122e-4127-ac8e-52077d2e1276"
                    }
                  },
                  "RT_FIL_02 GSTR-1 is already filed": {
                    "summary": "RT_FIL_02 GSTR-1 is already filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT_FIL_02",
                          "message": "GSTR1 is already filed"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "0dd23f7d-f686-48c0-a66d-9359527f2b57"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/amdhist/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A AMDHIST",
        "deprecated": false,
        "description": "",
        "operationId": "getgstr2aAmdhist",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "bill_of_entry_number",
            "in": "query",
            "description": "Bill of Entry Number",
            "required": true,
            "schema": {
              "type": "string",
              "example": "8108363"
            }
          },
          {
            "name": "port_code",
            "in": "query",
            "description": "Port Code",
            "required": true,
            "schema": {
              "type": "string",
              "example": "INBLR4"
            }
          },
          {
            "name": "bill_of_entry_date",
            "in": "query",
            "description": "Date when Bill of Entry was created",
            "required": true,
            "schema": {
              "type": "string",
              "example": "01/04/2020"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET13508 No details found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Getgstr2aAmdhistResponse"
                },
                "examples": {
                  "RET13508 No details found": {
                    "summary": "RET13508 No details found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13508",
                          "message": "No Details Found for the Provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "0903f05a-9d6d-4778-8a85-2e3c11bf3cd0"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/b2b/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A B2B",
        "deprecated": false,
        "description": "Get all B2B invoices in GSTR-2A for a return period for authenticated taxpayer",
        "operationId": "getGstr2aB2b",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Filter to fetch data from specified date. E.g., 28/01/2025",
            "required": false,
            "schema": {
              "type": "string",
              "example": "29/01/2025"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "Filter by supplier / counterparty GSTIN",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{gstin}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET13509 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aB2bResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCPD9123Q1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "15479fc2ca8939a16a0ad1714f804e32199489fa2bcc34dbc3693e075ab0a923",
                                  "idt": "01-12-2023",
                                  "inum": "23-24/126",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 175.5,
                                        "csamt": 0,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 175.5,
                                        "txval": 1950
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 2301
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "06ABCCG0123D1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "ce60dfa45192a4f3a3d1d6c983d700dded0033b2a17600aa1c41cb287a8b1803",
                                  "idt": "31-12-2023",
                                  "inum": "4883379355",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 2197.29,
                                        "rt": 18,
                                        "txval": 12207.14
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 14404.43
                                },
                                {
                                  "chksum": "67d3cec7423b2176bef9962f36667a297a0bd8836fc86bbca2777bd7898d862d",
                                  "idt": "31-12-2023",
                                  "inum": "4884148871",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 24.64,
                                        "rt": 18,
                                        "txval": 136.9
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 161.54
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCCB2123P1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "7851ccb28bef36326547ccd147a1ea0e914dbe085f8eaa0b05486e97d2c1745c",
                                  "idt": "01-12-2023",
                                  "inum": "GJI0611330220210",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t3004161d2a8006b1cafe7213ccaa4014120722fa5eb2d68854a04af8",
                                  "irngendate": "02-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 26.91,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 26.91,
                                        "txval": 299
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 352.82
                                },
                                {
                                  "chksum": "853539a3357c5c81b129df310ac02e55bc5fd2026f7c179be3f4c2feca677237",
                                  "idt": "01-12-2023",
                                  "inum": "GJI0611330353886",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30487cf5110f295d37bdc8e4ce316455a9fc480004671ed20811f35c",
                                  "irngendate": "01-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 900,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 900,
                                        "txval": 10000
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 11800
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCPL3123J1YZ",
                              "fldtr1": "13-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "639caff03a1810e4d078216813b9f3cc0fad85f65f3eb8ce371494b4ce60c458",
                                  "idt": "30-10-2023",
                                  "inum": "76",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 450,
                                        "rt": 18,
                                        "samt": 450,
                                        "txval": 5000
                                      },
                                      "num": 1800
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 5900
                                },
                                {
                                  "chksum": "ae4e297bb07db8ce3d376a60354ead6ac03ca2e12e665a92b7d8752fd8f63c25",
                                  "idt": "31-10-2023",
                                  "inum": "77",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 472.5,
                                        "rt": 18,
                                        "samt": 472.5,
                                        "txval": 5250
                                      },
                                      "num": 1800
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 6195
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "27ABCCU4123C1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "4a331460e9605b817bfce2a5ad68bce81ff9bef5197bedc22968f73039b9098f",
                                  "idt": "22-12-2023",
                                  "inum": "PAN-V/27/424",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 2160,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 12000
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 14160
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCCB2123G1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "6491b64316c38b79606b4225f75dd141614a4f44c6449f20db436250aacfd5db",
                                  "idt": "22-12-2023",
                                  "inum": "FBBL2424B29715",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t303eb4d1cab56c71027d971cbf0eeb1530e14fc31f996cd101d49842",
                                  "irngendate": "23-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 2700,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 2700,
                                        "txval": 30000
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 35400
                                },
                                {
                                  "chksum": "2cd3d2eb24045ede76d4932c7aaede1a11f3ff1a2c9f92e551fef7093009add6",
                                  "idt": "12-12-2023",
                                  "inum": "HT2424I001454703",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t309f77a9bb8318a7931b1540e8f29052ee672f9525bcb10938d8e3e1",
                                  "irngendate": "12-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 359.91,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 359.91,
                                        "txval": 3999
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 4718.82
                                },
                                {
                                  "chksum": "b024ee4dca59e40216ed28160b90240d73f959ab2f683e5f412c11248befeca6",
                                  "idt": "18-12-2023",
                                  "inum": "HT2424I001485717",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b3ceed1dbc3f1129ada8d1032de76a8e5d9232cc7ae75641369580",
                                  "irngendate": "18-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 359.91,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 359.91,
                                        "txval": 3999
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 4718.82
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCPK3123G1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "6df0d792c4a275b9ae291facbf71dff1c645dc2dc1840baf61feb7fbf1956fb8",
                                  "idt": "31-12-2023",
                                  "inum": "GIN0003609",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 35.1,
                                        "rt": 18,
                                        "samt": 35.1,
                                        "txval": 390
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 460
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "36ABCPH8123R1YZ",
                              "fldtr1": "08-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "497d558440c623ce31e6f00af1b8cd40334c7ef2d8c5ba4586698950f1c6a07a",
                                  "idt": "02-12-2023",
                                  "inum": "08",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 288,
                                        "rt": 18,
                                        "txval": 1600
                                      },
                                      "num": 1800
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 1887
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "33ABCCZ4123M2YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "4a40811683d7324a026c4cc57d6c9091cdd72110d38979133c4519f70d3f1052",
                                  "idt": "10-12-2023",
                                  "inum": "102324229636",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30c9eacb3701114023ed746e0e2c4f38a2a88a525b10467d94b379ee",
                                  "irngendate": "11-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 518.4,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 2880
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 3398.4
                                },
                                {
                                  "chksum": "7b869627113a641ec26e037e8a43ce813c778615d6306e08ac96a1c231143edf",
                                  "idt": "11-12-2023",
                                  "inum": "102324230047",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b4128b0b6343c13b5dd21b2d3084f08f30d1a0f8389984fd2615b1",
                                  "irngendate": "11-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 432,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 2400
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 2832
                                },
                                {
                                  "chksum": "219acfe29f93805dff06f6d5a480be29bcc9ead5e870604fd706a28dc5d138ce",
                                  "idt": "25-12-2023",
                                  "inum": "102324243574",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t307ae1cebb53e68135e8d42c53e2d9792b8b7bd543f01ab0da203bc6",
                                  "irngendate": "26-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 50.17,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 278.71
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 328.88
                                },
                                {
                                  "chksum": "231c3c2cdd8453e8d01baa2c9f2def14892db3c3004c18de16f4d82cb7ba6df7",
                                  "idt": "27-12-2023",
                                  "inum": "102324245907",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b5bdd11a0876f41ae60132a0caa589b508aedf4dc86a7df8f16b17",
                                  "irngendate": "28-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 44.59,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 247.74
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 292.33
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "29ABCCR4123K1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "c5d125323e779d687ee02308001099bdb55f3afaefd36da570cb0eec4e5061ed",
                                  "idt": "10-12-2023",
                                  "inum": "141519",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 403,
                                        "rt": 18,
                                        "txval": 2240
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 2643
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "27ABCCI0123E1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "64aec8aebbf45c388d77bc8a03b38895e73ec5d89a44c18cbc9703a44b419a65",
                                  "idt": "12-12-2023",
                                  "inum": "NPS/1224/0088766",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 54,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 300
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 354
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "29ABCCR4123K1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "a15e9083d654cb370ff7add0ef93fe072a8a1a1c5ad96ee569941a5cd433a71e",
                                  "idt": "21-12-2023",
                                  "inum": "INV-000764",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 1890,
                                        "rt": 18,
                                        "txval": 10500
                                      },
                                      "num": 1800
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 12390
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCPM7123B2YZ",
                              "fldtr1": "09-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "be4342e9e49709abc9e5f11d3098212e6db62df15a960973b580361d458f1ba8",
                                  "idt": "03-10-2023",
                                  "inum": "VPDL-331",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 80.2,
                                        "csamt": 0,
                                        "rt": 12,
                                        "samt": 80.2,
                                        "txval": 1336.62
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 1497
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "27ABCCN2123N1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "8d829a556dcde2e34abe140562131b7bea4aec7eeb2f9ac0ebc668582eaddeb0",
                                  "idt": "19-12-2023",
                                  "inum": "OPV/997000175687",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 3813.56,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 21186.44
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 25000
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "29ABCCR4123J1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "75d98911ec2350b650c79a157760948606fd89837d623d16a19e7b1b4343c457",
                                  "idt": "31-12-2023",
                                  "inum": "4XCFPHNO3URQ1223",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 1496.86,
                                        "rt": 18,
                                        "txval": 8315.9
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 12711.98
                                },
                                {
                                  "chksum": "89e0c717a02ff5666d1f7a5a59fed3a0a368c96036ad88248902b1eaf6b87a73",
                                  "idt": "31-12-2023",
                                  "inum": "GSDKTASVXEXU1223",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 7384.13,
                                        "rt": 18,
                                        "txval": 41022.9
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 52865.55
                                }
                              ]
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ade7daa4-4ece-4549-8c02-ee84c2873cad"
                    }
                  },
                  "RET13509 No data found": {
                    "summary": "RET13509 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13509",
                          "message": "No document found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7471e25c-8054-4a42-bd39-fb26776a1c59"
                    }
                  },
                  "200 Success 2": {
                    "summary": "200 Success 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "inv": [
                                {
                                  "val": 2301,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 175.5,
                                        "rt": 18,
                                        "txval": 1950,
                                        "camt": 175.5,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "01-12-2023",
                                  "rchrg": "N",
                                  "inum": "23-24/126",
                                  "chksum": "15479fc2ca8939a16a0ad1714f804e32199489fa2bcc34dbc3693e075ab0a923"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCPD9123Q1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 14404.43,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "rt": 18,
                                        "txval": 12207.14,
                                        "iamt": 2197.29
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "4883379355",
                                  "chksum": "ce60dfa45192a4f3a3d1d6c983d700dded0033b2a17600aa1c41cb287a8b1803"
                                },
                                {
                                  "val": 161.54,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "rt": 18,
                                        "txval": 136.9,
                                        "iamt": 24.64
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "4884148871",
                                  "chksum": "67d3cec7423b2176bef9962f36667a297a0bd8836fc86bbca2777bd7898d862d"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "06ABCCG0123D1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 352.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 26.91,
                                        "rt": 18,
                                        "txval": 299,
                                        "camt": 26.91,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t3004161d2a8006b1cafe7213ccaa4014120722fa5eb2d68854a04af8",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "01-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "02-12-2023",
                                  "inum": "GJI0611330220210",
                                  "chksum": "7851ccb28bef36326547ccd147a1ea0e914dbe085f8eaa0b05486e97d2c1745c"
                                },
                                {
                                  "val": 11800,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 900,
                                        "rt": 18,
                                        "txval": 10000,
                                        "camt": 900,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30487cf5110f295d37bdc8e4ce316455a9fc480004671ed20811f35c",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "01-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "01-12-2023",
                                  "inum": "GJI0611330353886",
                                  "chksum": "853539a3357c5c81b129df310ac02e55bc5fd2026f7c179be3f4c2feca677237"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCCB2123P1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 5900,
                                  "itms": [
                                    {
                                      "num": 1800,
                                      "itm_det": {
                                        "samt": 450,
                                        "rt": 18,
                                        "txval": 5000,
                                        "camt": 450
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "30-10-2023",
                                  "rchrg": "N",
                                  "inum": "76",
                                  "chksum": "639caff03a1810e4d078216813b9f3cc0fad85f65f3eb8ce371494b4ce60c458"
                                },
                                {
                                  "val": 6195,
                                  "itms": [
                                    {
                                      "num": 1800,
                                      "itm_det": {
                                        "samt": 472.5,
                                        "rt": 18,
                                        "txval": 5250,
                                        "camt": 472.5
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-10-2023",
                                  "rchrg": "N",
                                  "inum": "77",
                                  "chksum": "ae4e297bb07db8ce3d376a60354ead6ac03ca2e12e665a92b7d8752fd8f63c25"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCPL3123J1YZ",
                              "fldtr1": "13-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 14160,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 12000,
                                        "camt": 0,
                                        "iamt": 2160
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "22-12-2023",
                                  "rchrg": "N",
                                  "inum": "PAN-V/27/424",
                                  "chksum": "4a331460e9605b817bfce2a5ad68bce81ff9bef5197bedc22968f73039b9098f"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "27ABCCU4123C1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 35400,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 2700,
                                        "rt": 18,
                                        "txval": 30000,
                                        "camt": 2700,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t303eb4d1cab56c71027d971cbf0eeb1530e14fc31f996cd101d49842",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "22-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "23-12-2023",
                                  "inum": "FBBL2424B29715",
                                  "chksum": "6491b64316c38b79606b4225f75dd141614a4f44c6449f20db436250aacfd5db"
                                },
                                {
                                  "val": 4718.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 359.91,
                                        "rt": 18,
                                        "txval": 3999,
                                        "camt": 359.91,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t309f77a9bb8318a7931b1540e8f29052ee672f9525bcb10938d8e3e1",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "12-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "12-12-2023",
                                  "inum": "HT2424I001454703",
                                  "chksum": "2cd3d2eb24045ede76d4932c7aaede1a11f3ff1a2c9f92e551fef7093009add6"
                                },
                                {
                                  "val": 4718.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 359.91,
                                        "rt": 18,
                                        "txval": 3999,
                                        "camt": 359.91,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b3ceed1dbc3f1129ada8d1032de76a8e5d9232cc7ae75641369580",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "18-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "18-12-2023",
                                  "inum": "HT2424I001485717",
                                  "chksum": "b024ee4dca59e40216ed28160b90240d73f959ab2f683e5f412c11248befeca6"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCCB2123G1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 460,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 35.1,
                                        "rt": 18,
                                        "txval": 390,
                                        "camt": 35.1
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "GIN0003609",
                                  "chksum": "6df0d792c4a275b9ae291facbf71dff1c645dc2dc1840baf61feb7fbf1956fb8"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCPK3123G1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 1887,
                                  "itms": [
                                    {
                                      "num": 1800,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 1600,
                                        "iamt": 288
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "02-12-2023",
                                  "rchrg": "N",
                                  "inum": "08",
                                  "chksum": "497d558440c623ce31e6f00af1b8cd40334c7ef2d8c5ba4586698950f1c6a07a"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "36ABCPH8123R1YZ",
                              "fldtr1": "08-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 3398.4,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 2880,
                                        "camt": 0,
                                        "iamt": 518.4
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30c9eacb3701114023ed746e0e2c4f38a2a88a525b10467d94b379ee",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "10-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "11-12-2023",
                                  "inum": "102324229636",
                                  "chksum": "4a40811683d7324a026c4cc57d6c9091cdd72110d38979133c4519f70d3f1052"
                                },
                                {
                                  "val": 2832,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 2400,
                                        "camt": 0,
                                        "iamt": 432
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b4128b0b6343c13b5dd21b2d3084f08f30d1a0f8389984fd2615b1",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "11-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "11-12-2023",
                                  "inum": "102324230047",
                                  "chksum": "7b869627113a641ec26e037e8a43ce813c778615d6306e08ac96a1c231143edf"
                                },
                                {
                                  "val": 328.88,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 278.71,
                                        "camt": 0,
                                        "iamt": 50.17
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t307ae1cebb53e68135e8d42c53e2d9792b8b7bd543f01ab0da203bc6",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "25-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "26-12-2023",
                                  "inum": "102324243574",
                                  "chksum": "219acfe29f93805dff06f6d5a480be29bcc9ead5e870604fd706a28dc5d138ce"
                                },
                                {
                                  "val": 292.33,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 247.74,
                                        "camt": 0,
                                        "iamt": 44.59
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b5bdd11a0876f41ae60132a0caa589b508aedf4dc86a7df8f16b17",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "27-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "28-12-2023",
                                  "inum": "102324245907",
                                  "chksum": "231c3c2cdd8453e8d01baa2c9f2def14892db3c3004c18de16f4d82cb7ba6df7"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "33ABCCZ4123M2YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 2643,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 2240,
                                        "iamt": 403
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "10-12-2023",
                                  "rchrg": "N",
                                  "inum": "141519",
                                  "chksum": "c5d125323e779d687ee02308001099bdb55f3afaefd36da570cb0eec4e5061ed"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "29ABCCR4123K1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 354,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 300,
                                        "camt": 0,
                                        "iamt": 54
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "12-12-2023",
                                  "rchrg": "N",
                                  "inum": "NPS/1224/0088766",
                                  "chksum": "64aec8aebbf45c388d77bc8a03b38895e73ec5d89a44c18cbc9703a44b419a65"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "27ABCCI0123E1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 12390,
                                  "itms": [
                                    {
                                      "num": 1800,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 10500,
                                        "iamt": 1890
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "21-12-2023",
                                  "rchrg": "N",
                                  "inum": "INV-000764",
                                  "chksum": "a15e9083d654cb370ff7add0ef93fe072a8a1a1c5ad96ee569941a5cd433a71e"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "29ABCCR4123K1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 1497,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 80.2,
                                        "rt": 12,
                                        "txval": 1336.62,
                                        "camt": 80.2
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "03-10-2023",
                                  "rchrg": "N",
                                  "inum": "VPDL-331",
                                  "chksum": "be4342e9e49709abc9e5f11d3098212e6db62df15a960973b580361d458f1ba8"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCPM7123B2YZ",
                              "fldtr1": "09-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 25000,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 21186.44,
                                        "camt": 0,
                                        "iamt": 3813.56
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "19-12-2023",
                                  "rchrg": "N",
                                  "inum": "OPV/997000175687",
                                  "chksum": "8d829a556dcde2e34abe140562131b7bea4aec7eeb2f9ac0ebc668582eaddeb0"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "27ABCCN2123N1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 12711.98,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 8315.9,
                                        "iamt": 1496.86
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "4XCFPHNO3URQ1223",
                                  "chksum": "75d98911ec2350b650c79a157760948606fd89837d623d16a19e7b1b4343c457"
                                },
                                {
                                  "val": 52865.55,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 41022.9,
                                        "iamt": 7384.13
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "GSDKTASVXEXU1223",
                                  "chksum": "89e0c717a02ff5666d1f7a5a59fed3a0a368c96036ad88248902b1eaf6b87a73"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "29ABCCR4123J1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            }
                          ]
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/b2ba/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-2A B2BA",
        "deprecated": false,
        "description": "Get all amended B2B invoices in GSTR-2A for a return period for authenticated taxpayer",
        "operationId": "getGstr2aB2ba",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "`optional` Counter party GSTIN",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{ctin}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET13509 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aB2baResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2ba": [
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCCR0123M1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "aspd": "Oct-23",
                                  "atyp": "D",
                                  "chksum": "6a93632fb89ac2028409a04ef1b538d38e9e50503b69c1ddd182570d61615aea",
                                  "idt": "25-10-2023",
                                  "inum": "RN1/FAMA-16557",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 0.01
                                      },
                                      "num": 1418
                                    }
                                  ],
                                  "oidt": "25-10-2023",
                                  "oinum": "RN1/FAMA-16557",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 0.01
                                }
                              ]
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "28ddcef3-cea8-449b-bc59-7aac885e6216"
                    }
                  },
                  "RET13509 No data found": {
                    "summary": "RET13509 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13509",
                          "message": "No document found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9f98706e-6745-4963-9bbe-e0c85833bc8b"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/cdn/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A CDN",
        "deprecated": false,
        "description": "Get all credit/debit notes in GSTR-2A for a return period for authenticated taxpayer",
        "operationId": "getGstr2aCdn",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Filter to fetch data from specified date. E.g., 28/01/2025",
            "required": false,
            "schema": {
              "type": "string",
              "example": "29/01/2025"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "Filter by supplier / counterparty GSTIN",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{ctin}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET13509 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aCdnResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cdn": [
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "07ABCCA9123A1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "nt": [
                                {
                                  "chksum": "62e70374990b3cef19e36d4eee08cd033c63811ddbf7d27601b9a4b83786dbf1",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "x4dftn9my4a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 561.05,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 3116.94
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103340",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 3677.99
                                },
                                {
                                  "chksum": "c9cf8df2a4ebb548eeed7c373e6e4760416dc13520de43a1b26f4036f83d2a73",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "x4dftn9my4eb8bbc314c0ef223d54402ebf09a4368735bb3bdc2159994de0543",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 961.11,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 5339.48
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103368",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 6300.59
                                },
                                {
                                  "chksum": "fd69021e1d2e13e5044855accbaaae6c9b770a0a7330f30f9c9fb5a70914c587",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "x4dftn9my4a2b71831e89eba6742a7035660560559843936076fd0466cb6e2c2",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 46380.95,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 257671.97
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103394",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 304052.92
                                },
                                {
                                  "chksum": "9d01418f52927eae3b7439571a395472876b28d91ac0c75e0c3014e7587023e4",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "x4dftn9my4fca1a9feeac080875d8fbcb0b2367c00b582c60485119a375ce80f",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 17349.93,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 96388.48
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103426",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 113738.41
                                },
                                {
                                  "chksum": "ac2f16c2039f07d75db508c9acfe448cd177963a08ad8228e28cbd066ebad18b",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "x4dftn9my4a50837c18b84b9cc52a5c6423b4afa05dcbf1454ef98aa88206d5d",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 17533.22,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 97406.76
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103435",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 114939.98
                                }
                              ]
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "f44b271e-fff6-45dd-ab62-d9c224a623e8"
                    }
                  },
                  "RET13509 No data found": {
                    "summary": "RET13509 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13509",
                          "message": "No document found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6476839b-7222-406f-ba66-ce26f8235e46"
                    }
                  },
                  "200 Success 2": {
                    "summary": "200 Success 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cdn": [
                            {
                              "cfs": "Y",
                              "nt": [
                                {
                                  "val": 3677.99,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 3116.94,
                                        "camt": 0,
                                        "iamt": 561.05
                                      }
                                    }
                                  ],
                                  "irn": "x4dftn9my4a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103340",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "62e70374990b3cef19e36d4eee08cd033c63811ddbf7d27601b9a4b83786dbf1"
                                },
                                {
                                  "val": 6300.59,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 5339.48,
                                        "camt": 0,
                                        "iamt": 961.11
                                      }
                                    }
                                  ],
                                  "irn": "x4dftn9my4eb8bbc314c0ef223d54402ebf09a4368735bb3bdc2159994de0543",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103368",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "c9cf8df2a4ebb548eeed7c373e6e4760416dc13520de43a1b26f4036f83d2a73"
                                },
                                {
                                  "val": 304052.92,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 257671.97,
                                        "camt": 0,
                                        "iamt": 46380.95
                                      }
                                    }
                                  ],
                                  "irn": "x4dftn9my4a2b71831e89eba6742a7035660560559843936076fd0466cb6e2c2",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103394",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "fd69021e1d2e13e5044855accbaaae6c9b770a0a7330f30f9c9fb5a70914c587"
                                },
                                {
                                  "val": 113738.41,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 96388.48,
                                        "camt": 0,
                                        "iamt": 17349.93
                                      }
                                    }
                                  ],
                                  "irn": "x4dftn9my4fca1a9feeac080875d8fbcb0b2367c00b582c60485119a375ce80f",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103426",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "9d01418f52927eae3b7439571a395472876b28d91ac0c75e0c3014e7587023e4"
                                },
                                {
                                  "val": 114939.98,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 97406.76,
                                        "camt": 0,
                                        "iamt": 17533.22
                                      }
                                    }
                                  ],
                                  "irn": "x4dftn9my4a50837c18b84b9cc52a5c6423b4afa05dcbf1454ef98aa88206d5d",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103435",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "ac2f16c2039f07d75db508c9acfe448cd177963a08ad8228e28cbd066ebad18b"
                                }
                              ],
                              "ctin": "07ABCCA9123A1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            }
                          ]
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/cdna/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A CDNA",
        "deprecated": false,
        "description": "Get all amended credit/debit notes in GSTR-2A for a return period for authenticated taxpayer",
        "operationId": "getGstr2aCdna",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "Filter by supplier / counterparty GSTIN",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{ctin}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET13509 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aCdnaResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cdna": [
                            {
                              "cfs": "Y",
                              "ctin": "01ABCAP1123Q1ZS",
                              "nt": [
                                {
                                  "chksum": "AflJufPlFStqKBZ",
                                  "d_flag": "Y",
                                  "diff_percent": 0.65,
                                  "idt": "20-09-2023",
                                  "inum": "915914",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 614.44,
                                        "csamt": 621.09,
                                        "iamt": 0,
                                        "rt": 10.1,
                                        "samt": 5.68,
                                        "txval": 6210.99
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "23-12-2023",
                                  "nt_num": "533515",
                                  "ntty": "C",
                                  "ont_dt": "23-09-2023",
                                  "ont_num": "533515",
                                  "p_gst": "N",
                                  "pos": "06",
                                  "rchrg": "N",
                                  "val": 729248.16
                                }
                              ]
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "182ebce6-df57-4be7-9b07-2d9936a17550"
                    }
                  },
                  "RET13509 No data found": {
                    "summary": "RET13509 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13509",
                          "message": "No document found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "c65a8035-bbe6-4ffa-a70a-7f70ea79906b"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/impg/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A IMPG",
        "deprecated": false,
        "description": "Get all amended credit/debit notes in GSTR-2A for a return period for authenticated taxpayer",
        "operationId": "getGstr2aImpg",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Filter to fetch data from specified date. E.g., 28/01/2025",
            "required": false,
            "schema": {
              "type": "string",
              "example": "10/12/2021"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET13510 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aImpgResponse"
                },
                "examples": {
                  "RET13510 No data found": {
                    "summary": "RET13510 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13510",
                          "message": "No Record found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "cdbce6ba-bd9f-417b-bd0d-5196076f05ed"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/impgsez/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A IMPGSEZ",
        "deprecated": false,
        "description": "Get all amended credit/debit notes in GSTR-2A for a return period for authenticated taxpayer",
        "operationId": "getGstr2aImpgsez",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Filter to fetch data from specified date. E.g., 28/01/2025",
            "required": false,
            "schema": {
              "type": "string",
              "example": "10/12/2021"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET13510 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aImpgsezResponse"
                },
                "examples": {
                  "RET13510 No data found": {
                    "summary": "RET13510 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13510",
                          "message": "No Record found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "93bf82a7-5e2b-410b-9ebf-9c2009fbfcf5"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/isd/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A ISD",
        "deprecated": false,
        "description": "Get invoices in GSTR2A related to ISD credit for a return period for authenticated taxpayer",
        "operationId": "getGstr2aIsd",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "`optional` Counter party GSTIN",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{ctin}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET13509 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aIsdResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "isd": [
                            {
                              "cfs": "Y",
                              "ctin": "16DEFPS8555D1Z7",
                              "doclist": [
                                {
                                  "camt": 20,
                                  "cess": 20,
                                  "chksum": "AflJufPlFStqKBZ",
                                  "docdt": "02-12-2023",
                                  "docnum": "1004",
                                  "iamt": 20,
                                  "isd_docty": "ISD",
                                  "itc_elg": "Y",
                                  "samt": 20
                                }
                              ]
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a1283380-4fc6-4a94-bf2c-3fc10e238f41"
                    }
                  },
                  "RET13509 No data found": {
                    "summary": "RET13509 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13509",
                          "message": "No document found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "b49a3907-4e8f-4fba-a79a-d57c576806e3"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/tcs/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A TCS",
        "deprecated": false,
        "description": "Get invoices in GSTR2A related to ISD credit for a return period for authenticated taxpayer",
        "operationId": "getGstr2aTcs",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET13509 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aTcsResponse"
                },
                "examples": {
                  "RET13509 No data found": {
                    "summary": "RET13509 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13509",
                          "message": "No document found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "40c27ecd-4978-44e7-b5d7-70d17cd55622"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/tds/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A TDS",
        "deprecated": false,
        "description": "Get invoices in GSTR2A related to ISD credit for a return period for authenticated taxpayer",
        "operationId": "getGstr2aTds",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "RET13509 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2aTdsResponse"
                },
                "examples": {
                  "RET13509 No data found": {
                    "summary": "RET13509 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET13509",
                          "message": "No document found for the provided Inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "bbe3e10a-8cf7-452b-ac22-d3814375efd2"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/{year}/{month}": {
      "get": {
        "summary": "GSTR-2A Document",
        "deprecated": false,
        "description": "Get invoices in GSTR2A related to ISD credit for a return period for authenticated taxpayer",
        "operationId": "getGstr2a",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 No data / 200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "data": {
                          "type": "object",
                          "properties": {
                            "b2b": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "cfs": {
                                    "type": "string",
                                    "example": "Y"
                                  },
                                  "cfs3b": {
                                    "type": "string",
                                    "example": "Y"
                                  },
                                  "ctin": {
                                    "type": "string",
                                    "example": "24ABCPD9123Q1YZ"
                                  },
                                  "fldtr1": {
                                    "type": "string",
                                    "example": "11-Jan-24"
                                  },
                                  "flprdr1": {
                                    "type": "string",
                                    "example": "Dec-23"
                                  },
                                  "inv": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "chksum": {
                                          "type": "string",
                                          "example": "15479fc2ca8939a16a0ad1714f804e32199489fa2bcc34dbc3693e075ab0a923"
                                        },
                                        "idt": {
                                          "type": "string",
                                          "example": "01-12-2023"
                                        },
                                        "inum": {
                                          "type": "string",
                                          "example": "23-24/126"
                                        },
                                        "inv_typ": {
                                          "type": "string",
                                          "example": "R"
                                        },
                                        "itms": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "itm_det": {
                                                "type": "object",
                                                "properties": {
                                                  "camt": {
                                                    "type": "number",
                                                    "example": 175.5
                                                  },
                                                  "csamt": {
                                                    "type": "number",
                                                    "example": 0
                                                  },
                                                  "iamt": {
                                                    "type": "number",
                                                    "example": 0
                                                  },
                                                  "rt": {
                                                    "type": "number",
                                                    "example": 18
                                                  },
                                                  "samt": {
                                                    "type": "number",
                                                    "example": 175.5
                                                  },
                                                  "txval": {
                                                    "type": "number",
                                                    "example": 1950
                                                  }
                                                }
                                              },
                                              "num": {
                                                "type": "number",
                                                "example": 1
                                              }
                                            }
                                          },
                                          "example": [
                                            {
                                              "itm_det": {
                                                "camt": 175.5,
                                                "csamt": 0,
                                                "iamt": 0,
                                                "rt": 18,
                                                "samt": 175.5,
                                                "txval": 1950
                                              },
                                              "num": 1
                                            }
                                          ]
                                        },
                                        "pos": {
                                          "type": "string",
                                          "example": "24"
                                        },
                                        "rchrg": {
                                          "type": "string",
                                          "example": "N"
                                        },
                                        "val": {
                                          "type": "number",
                                          "example": 2301
                                        }
                                      }
                                    },
                                    "example": [
                                      {
                                        "chksum": "15479fc2ca8939a16a0ad1714f804e32199489fa2bcc34dbc3693e075ab0a923",
                                        "idt": "01-12-2023",
                                        "inum": "23-24/126",
                                        "inv_typ": "R",
                                        "itms": [
                                          {
                                            "itm_det": {
                                              "camt": 175.5,
                                              "csamt": 0,
                                              "iamt": 0,
                                              "rt": 18,
                                              "samt": 175.5,
                                              "txval": 1950
                                            },
                                            "num": 1
                                          }
                                        ],
                                        "pos": "24",
                                        "rchrg": "N",
                                        "val": 2301
                                      }
                                    ]
                                  }
                                }
                              },
                              "example": [
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "24ABCPD9123Q1YZ",
                                  "fldtr1": "11-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "15479fc2ca8939a16a0ad1714f804e32199489fa2bcc34dbc3693e075ab0a923",
                                      "idt": "01-12-2023",
                                      "inum": "23-24/126",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 175.5,
                                            "csamt": 0,
                                            "iamt": 0,
                                            "rt": 18,
                                            "samt": 175.5,
                                            "txval": 1950
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 2301
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "06ABCCG0123D1YZ",
                                  "fldtr1": "11-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "ce60dfa45192a4f3a3d1d6c983d700dded0033b2a17600aa1c41cb287a8b1803",
                                      "idt": "31-12-2023",
                                      "inum": "4883379355",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "csamt": 0,
                                            "iamt": 2197.29,
                                            "rt": 18,
                                            "txval": 12207.14
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 14404.43
                                    },
                                    {
                                      "chksum": "67d3cec7423b2176bef9962f36667a297a0bd8836fc86bbca2777bd7898d862d",
                                      "idt": "31-12-2023",
                                      "inum": "4884148871",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "csamt": 0,
                                            "iamt": 24.64,
                                            "rt": 18,
                                            "txval": 136.9
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 161.54
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "24ABCCB2123P1YZ",
                                  "fldtr1": "10-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "7851ccb28bef36326547ccd147a1ea0e914dbe085f8eaa0b05486e97d2c1745c",
                                      "idt": "01-12-2023",
                                      "inum": "GJI0611330220210",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t3004161d2a8006b1cafe7213ccaa4014120722fa5eb2d68854a04af8",
                                      "irngendate": "02-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 26.91,
                                            "iamt": 0,
                                            "rt": 18,
                                            "samt": 26.91,
                                            "txval": 299
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 352.82
                                    },
                                    {
                                      "chksum": "853539a3357c5c81b129df310ac02e55bc5fd2026f7c179be3f4c2feca677237",
                                      "idt": "01-12-2023",
                                      "inum": "GJI0611330353886",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30487cf5110f295d37bdc8e4ce316455a9fc480004671ed20811f35c",
                                      "irngendate": "01-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 900,
                                            "iamt": 0,
                                            "rt": 18,
                                            "samt": 900,
                                            "txval": 10000
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 11800
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "24ABCPL3123J1YZ",
                                  "fldtr1": "13-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "639caff03a1810e4d078216813b9f3cc0fad85f65f3eb8ce371494b4ce60c458",
                                      "idt": "30-10-2023",
                                      "inum": "76",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 450,
                                            "rt": 18,
                                            "samt": 450,
                                            "txval": 5000
                                          },
                                          "num": 1800
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 5900
                                    },
                                    {
                                      "chksum": "ae4e297bb07db8ce3d376a60354ead6ac03ca2e12e665a92b7d8752fd8f63c25",
                                      "idt": "31-10-2023",
                                      "inum": "77",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 472.5,
                                            "rt": 18,
                                            "samt": 472.5,
                                            "txval": 5250
                                          },
                                          "num": 1800
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 6195
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "27ABCCU4123C1YZ",
                                  "fldtr1": "11-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "4a331460e9605b817bfce2a5ad68bce81ff9bef5197bedc22968f73039b9098f",
                                      "idt": "22-12-2023",
                                      "inum": "PAN-V/27/424",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "csamt": 0,
                                            "iamt": 2160,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 12000
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 14160
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "24ABCCB2123G1YZ",
                                  "fldtr1": "10-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "6491b64316c38b79606b4225f75dd141614a4f44c6449f20db436250aacfd5db",
                                      "idt": "22-12-2023",
                                      "inum": "FBBL2424B29715",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t303eb4d1cab56c71027d971cbf0eeb1530e14fc31f996cd101d49842",
                                      "irngendate": "23-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 2700,
                                            "iamt": 0,
                                            "rt": 18,
                                            "samt": 2700,
                                            "txval": 30000
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 35400
                                    },
                                    {
                                      "chksum": "2cd3d2eb24045ede76d4932c7aaede1a11f3ff1a2c9f92e551fef7093009add6",
                                      "idt": "12-12-2023",
                                      "inum": "HT2424I001454703",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t309f77a9bb8318a7931b1540e8f29052ee672f9525bcb10938d8e3e1",
                                      "irngendate": "12-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 359.91,
                                            "iamt": 0,
                                            "rt": 18,
                                            "samt": 359.91,
                                            "txval": 3999
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 4718.82
                                    },
                                    {
                                      "chksum": "b024ee4dca59e40216ed28160b90240d73f959ab2f683e5f412c11248befeca6",
                                      "idt": "18-12-2023",
                                      "inum": "HT2424I001485717",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30b3ceed1dbc3f1129ada8d1032de76a8e5d9232cc7ae75641369580",
                                      "irngendate": "18-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 359.91,
                                            "iamt": 0,
                                            "rt": 18,
                                            "samt": 359.91,
                                            "txval": 3999
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 4718.82
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "24ABCPK3123G1YZ",
                                  "fldtr1": "10-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "6df0d792c4a275b9ae291facbf71dff1c645dc2dc1840baf61feb7fbf1956fb8",
                                      "idt": "31-12-2023",
                                      "inum": "GIN0003609",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 35.1,
                                            "rt": 18,
                                            "samt": 35.1,
                                            "txval": 390
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 460
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "36ABCPH8123R1YZ",
                                  "fldtr1": "08-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "497d558440c623ce31e6f00af1b8cd40334c7ef2d8c5ba4586698950f1c6a07a",
                                      "idt": "02-12-2023",
                                      "inum": "08",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "iamt": 288,
                                            "rt": 18,
                                            "txval": 1600
                                          },
                                          "num": 1800
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 1887
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "33ABCCZ4123M2YZ",
                                  "fldtr1": "11-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "4a40811683d7324a026c4cc57d6c9091cdd72110d38979133c4519f70d3f1052",
                                      "idt": "10-12-2023",
                                      "inum": "102324229636",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30c9eacb3701114023ed746e0e2c4f38a2a88a525b10467d94b379ee",
                                      "irngendate": "11-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "csamt": 0,
                                            "iamt": 518.4,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 2880
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 3398.4
                                    },
                                    {
                                      "chksum": "7b869627113a641ec26e037e8a43ce813c778615d6306e08ac96a1c231143edf",
                                      "idt": "11-12-2023",
                                      "inum": "102324230047",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30b4128b0b6343c13b5dd21b2d3084f08f30d1a0f8389984fd2615b1",
                                      "irngendate": "11-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "csamt": 0,
                                            "iamt": 432,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 2400
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 2832
                                    },
                                    {
                                      "chksum": "219acfe29f93805dff06f6d5a480be29bcc9ead5e870604fd706a28dc5d138ce",
                                      "idt": "25-12-2023",
                                      "inum": "102324243574",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t307ae1cebb53e68135e8d42c53e2d9792b8b7bd543f01ab0da203bc6",
                                      "irngendate": "26-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "csamt": 0,
                                            "iamt": 50.17,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 278.71
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 328.88
                                    },
                                    {
                                      "chksum": "231c3c2cdd8453e8d01baa2c9f2def14892db3c3004c18de16f4d82cb7ba6df7",
                                      "idt": "27-12-2023",
                                      "inum": "102324245907",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30b5bdd11a0876f41ae60132a0caa589b508aedf4dc86a7df8f16b17",
                                      "irngendate": "28-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "csamt": 0,
                                            "iamt": 44.59,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 247.74
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 292.33
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "29ABCCR4123K1YZ",
                                  "fldtr1": "11-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "c5d125323e779d687ee02308001099bdb55f3afaefd36da570cb0eec4e5061ed",
                                      "idt": "10-12-2023",
                                      "inum": "141519",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "iamt": 403,
                                            "rt": 18,
                                            "txval": 2240
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 2643
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "27ABCCI0123E1YZ",
                                  "fldtr1": "10-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "64aec8aebbf45c388d77bc8a03b38895e73ec5d89a44c18cbc9703a44b419a65",
                                      "idt": "12-12-2023",
                                      "inum": "NPS/1224/0088766",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "csamt": 0,
                                            "iamt": 54,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 300
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 354
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "29ABCCR4123K1YZ",
                                  "fldtr1": "10-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "a15e9083d654cb370ff7add0ef93fe072a8a1a1c5ad96ee569941a5cd433a71e",
                                      "idt": "21-12-2023",
                                      "inum": "INV-000764",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "iamt": 1890,
                                            "rt": 18,
                                            "txval": 10500
                                          },
                                          "num": 1800
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 12390
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "24ABCPM7123B2YZ",
                                  "fldtr1": "09-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "be4342e9e49709abc9e5f11d3098212e6db62df15a960973b580361d458f1ba8",
                                      "idt": "03-10-2023",
                                      "inum": "VPDL-331",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 80.2,
                                            "csamt": 0,
                                            "rt": 12,
                                            "samt": 80.2,
                                            "txval": 1336.62
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 1497
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "27ABCCN2123N1YZ",
                                  "fldtr1": "11-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "8d829a556dcde2e34abe140562131b7bea4aec7eeb2f9ac0ebc668582eaddeb0",
                                      "idt": "19-12-2023",
                                      "inum": "OPV/997000175687",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "csamt": 0,
                                            "iamt": 3813.56,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 21186.44
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 25000
                                    }
                                  ]
                                },
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "29ABCCR4123J1YZ",
                                  "fldtr1": "11-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "chksum": "75d98911ec2350b650c79a157760948606fd89837d623d16a19e7b1b4343c457",
                                      "idt": "31-12-2023",
                                      "inum": "4XCFPHNO3URQ1223",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "iamt": 1496.86,
                                            "rt": 18,
                                            "txval": 8315.9
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 12711.98
                                    },
                                    {
                                      "chksum": "89e0c717a02ff5666d1f7a5a59fed3a0a368c96036ad88248902b1eaf6b87a73",
                                      "idt": "31-12-2023",
                                      "inum": "GSDKTASVXEXU1223",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "iamt": 7384.13,
                                            "rt": 18,
                                            "txval": 41022.9
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 52865.55
                                    }
                                  ]
                                }
                              ]
                            },
                            "b2ba": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "cfs": {
                                    "type": "string",
                                    "example": "Y"
                                  },
                                  "cfs3b": {
                                    "type": "string",
                                    "example": "Y"
                                  },
                                  "ctin": {
                                    "type": "string",
                                    "example": "24ABCCR0123M1YZ"
                                  },
                                  "fldtr1": {
                                    "type": "string",
                                    "example": "10-Jan-24"
                                  },
                                  "flprdr1": {
                                    "type": "string",
                                    "example": "Dec-23"
                                  },
                                  "inv": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "aspd": {
                                          "type": "string",
                                          "example": "Oct-23"
                                        },
                                        "atyp": {
                                          "type": "string",
                                          "example": "D"
                                        },
                                        "chksum": {
                                          "type": "string",
                                          "example": "6a93632fb89ac2028409a04ef1b538d38e9e50503b69c1ddd182570d61615aea"
                                        },
                                        "idt": {
                                          "type": "string",
                                          "example": "25-10-2023"
                                        },
                                        "inum": {
                                          "type": "string",
                                          "example": "RN1/FAMA-16557"
                                        },
                                        "inv_typ": {
                                          "type": "string",
                                          "example": "R"
                                        },
                                        "itms": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "itm_det": {
                                                "type": "object",
                                                "properties": {
                                                  "camt": {
                                                    "type": "number",
                                                    "example": 0
                                                  },
                                                  "iamt": {
                                                    "type": "number",
                                                    "example": 0
                                                  },
                                                  "rt": {
                                                    "type": "number",
                                                    "example": 18
                                                  },
                                                  "samt": {
                                                    "type": "number",
                                                    "example": 0
                                                  },
                                                  "txval": {
                                                    "type": "number",
                                                    "example": 0.01
                                                  }
                                                }
                                              },
                                              "num": {
                                                "type": "number",
                                                "example": 1418
                                              }
                                            }
                                          },
                                          "example": [
                                            {
                                              "itm_det": {
                                                "camt": 0,
                                                "iamt": 0,
                                                "rt": 18,
                                                "samt": 0,
                                                "txval": 0.01
                                              },
                                              "num": 1418
                                            }
                                          ]
                                        },
                                        "oidt": {
                                          "type": "string",
                                          "example": "25-10-2023"
                                        },
                                        "oinum": {
                                          "type": "string",
                                          "example": "RN1/FAMA-16557"
                                        },
                                        "pos": {
                                          "type": "string",
                                          "example": "24"
                                        },
                                        "rchrg": {
                                          "type": "string",
                                          "example": "N"
                                        },
                                        "val": {
                                          "type": "number",
                                          "example": 0.01
                                        }
                                      }
                                    },
                                    "example": [
                                      {
                                        "aspd": "Oct-23",
                                        "atyp": "D",
                                        "chksum": "6a93632fb89ac2028409a04ef1b538d38e9e50503b69c1ddd182570d61615aea",
                                        "idt": "25-10-2023",
                                        "inum": "RN1/FAMA-16557",
                                        "inv_typ": "R",
                                        "itms": [
                                          {
                                            "itm_det": {
                                              "camt": 0,
                                              "iamt": 0,
                                              "rt": 18,
                                              "samt": 0,
                                              "txval": 0.01
                                            },
                                            "num": 1418
                                          }
                                        ],
                                        "oidt": "25-10-2023",
                                        "oinum": "RN1/FAMA-16557",
                                        "pos": "24",
                                        "rchrg": "N",
                                        "val": 0.01
                                      }
                                    ]
                                  }
                                }
                              },
                              "example": [
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "24ABCCR0123M1YZ",
                                  "fldtr1": "10-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "inv": [
                                    {
                                      "aspd": "Oct-23",
                                      "atyp": "D",
                                      "chksum": "6a93632fb89ac2028409a04ef1b538d38e9e50503b69c1ddd182570d61615aea",
                                      "idt": "25-10-2023",
                                      "inum": "RN1/FAMA-16557",
                                      "inv_typ": "R",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "iamt": 0,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 0.01
                                          },
                                          "num": 1418
                                        }
                                      ],
                                      "oidt": "25-10-2023",
                                      "oinum": "RN1/FAMA-16557",
                                      "pos": "24",
                                      "rchrg": "N",
                                      "val": 0.01
                                    }
                                  ]
                                }
                              ]
                            },
                            "cdn": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "cfs": {
                                    "type": "string",
                                    "example": "Y"
                                  },
                                  "cfs3b": {
                                    "type": "string",
                                    "example": "Y"
                                  },
                                  "ctin": {
                                    "type": "string",
                                    "example": "07ABCCA9123A1YZ"
                                  },
                                  "fldtr1": {
                                    "type": "string",
                                    "example": "11-Jan-24"
                                  },
                                  "flprdr1": {
                                    "type": "string",
                                    "example": "Dec-23"
                                  },
                                  "nt": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "chksum": {
                                          "type": "string",
                                          "example": "62e70374990b3cef19e36d4eee08cd033c63811ddbf7d27601b9a4b83786dbf1"
                                        },
                                        "d_flag": {
                                          "type": "string",
                                          "example": "Y"
                                        },
                                        "inv_typ": {
                                          "type": "string",
                                          "example": "R"
                                        },
                                        "irn": {
                                          "type": "string",
                                          "example": "qoycq59t30a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51"
                                        },
                                        "irngendate": {
                                          "type": "string",
                                          "example": "13-12-2023"
                                        },
                                        "itms": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "itm_det": {
                                                "type": "object",
                                                "properties": {
                                                  "camt": {
                                                    "type": "number",
                                                    "example": 0
                                                  },
                                                  "iamt": {
                                                    "type": "number",
                                                    "example": 561.05
                                                  },
                                                  "rt": {
                                                    "type": "number",
                                                    "example": 18
                                                  },
                                                  "samt": {
                                                    "type": "number",
                                                    "example": 0
                                                  },
                                                  "txval": {
                                                    "type": "number",
                                                    "example": 3116.94
                                                  }
                                                }
                                              },
                                              "num": {
                                                "type": "number",
                                                "example": 1
                                              }
                                            }
                                          },
                                          "example": [
                                            {
                                              "itm_det": {
                                                "camt": 0,
                                                "iamt": 561.05,
                                                "rt": 18,
                                                "samt": 0,
                                                "txval": 3116.94
                                              },
                                              "num": 1
                                            }
                                          ]
                                        },
                                        "nt_dt": {
                                          "type": "string",
                                          "example": "13-12-2023"
                                        },
                                        "nt_num": {
                                          "type": "string",
                                          "example": "ACN2324000103340"
                                        },
                                        "ntty": {
                                          "type": "string",
                                          "example": "C"
                                        },
                                        "pos": {
                                          "type": "string",
                                          "example": "24"
                                        },
                                        "rchrg": {
                                          "type": "string",
                                          "example": "N"
                                        },
                                        "srctyp": {
                                          "type": "string",
                                          "example": "E-Invoice"
                                        },
                                        "val": {
                                          "type": "number",
                                          "example": 3677.99
                                        }
                                      }
                                    },
                                    "example": [
                                      {
                                        "chksum": "62e70374990b3cef19e36d4eee08cd033c63811ddbf7d27601b9a4b83786dbf1",
                                        "d_flag": "Y",
                                        "inv_typ": "R",
                                        "irn": "qoycq59t30a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51",
                                        "irngendate": "13-12-2023",
                                        "itms": [
                                          {
                                            "itm_det": {
                                              "camt": 0,
                                              "iamt": 561.05,
                                              "rt": 18,
                                              "samt": 0,
                                              "txval": 3116.94
                                            },
                                            "num": 1
                                          }
                                        ],
                                        "nt_dt": "13-12-2023",
                                        "nt_num": "ACN2324000103340",
                                        "ntty": "C",
                                        "pos": "24",
                                        "rchrg": "N",
                                        "srctyp": "e-Invoice",
                                        "val": 3677.99
                                      },
                                      {
                                        "chksum": "c9cf8df2a4ebb548eeed7c373e6e4760416dc13520de43a1b26f4036f83d2a73",
                                        "d_flag": "Y",
                                        "inv_typ": "R",
                                        "irn": "qoycq59t30eb8bbc314c0ef223d54402ebf09a4368735bb3bdc2159994de0543",
                                        "irngendate": "13-12-2023",
                                        "itms": [
                                          {
                                            "itm_det": {
                                              "camt": 0,
                                              "iamt": 961.11,
                                              "rt": 18,
                                              "samt": 0,
                                              "txval": 5339.48
                                            },
                                            "num": 1
                                          }
                                        ],
                                        "nt_dt": "13-12-2023",
                                        "nt_num": "ACN2324000103368",
                                        "ntty": "C",
                                        "pos": "24",
                                        "rchrg": "N",
                                        "srctyp": "e-Invoice",
                                        "val": 6300.59
                                      },
                                      {
                                        "chksum": "fd69021e1d2e13e5044855accbaaae6c9b770a0a7330f30f9c9fb5a70914c587",
                                        "d_flag": "Y",
                                        "inv_typ": "R",
                                        "irn": "qoycq59t30a2b71831e89eba6742a7035660560559843936076fd0466cb6e2c2",
                                        "irngendate": "13-12-2023",
                                        "itms": [
                                          {
                                            "itm_det": {
                                              "camt": 0,
                                              "iamt": 46380.95,
                                              "rt": 18,
                                              "samt": 0,
                                              "txval": 257671.97
                                            },
                                            "num": 1
                                          }
                                        ],
                                        "nt_dt": "13-12-2023",
                                        "nt_num": "ACN2324000103394",
                                        "ntty": "C",
                                        "pos": "24",
                                        "rchrg": "N",
                                        "srctyp": "e-Invoice",
                                        "val": 304052.92
                                      },
                                      {
                                        "chksum": "9d01418f52927eae3b7439571a395472876b28d91ac0c75e0c3014e7587023e4",
                                        "d_flag": "Y",
                                        "inv_typ": "R",
                                        "irn": "qoycq59t30fca1a9feeac080875d8fbcb0b2367c00b582c60485119a375ce80f",
                                        "irngendate": "13-12-2023",
                                        "itms": [
                                          {
                                            "itm_det": {
                                              "camt": 0,
                                              "iamt": 17349.93,
                                              "rt": 18,
                                              "samt": 0,
                                              "txval": 96388.48
                                            },
                                            "num": 1
                                          }
                                        ],
                                        "nt_dt": "13-12-2023",
                                        "nt_num": "ACN2324000103426",
                                        "ntty": "C",
                                        "pos": "24",
                                        "rchrg": "N",
                                        "srctyp": "e-Invoice",
                                        "val": 113738.41
                                      },
                                      {
                                        "chksum": "ac2f16c2039f07d75db508c9acfe448cd177963a08ad8228e28cbd066ebad18b",
                                        "d_flag": "Y",
                                        "inv_typ": "R",
                                        "irn": "qoycq59t30a50837c18b84b9cc52a5c6423b4afa05dcbf1454ef98aa88206d5d",
                                        "irngendate": "13-12-2023",
                                        "itms": [
                                          {
                                            "itm_det": {
                                              "camt": 0,
                                              "iamt": 17533.22,
                                              "rt": 18,
                                              "samt": 0,
                                              "txval": 97406.76
                                            },
                                            "num": 1
                                          }
                                        ],
                                        "nt_dt": "13-12-2023",
                                        "nt_num": "ACN2324000103435",
                                        "ntty": "C",
                                        "pos": "24",
                                        "rchrg": "N",
                                        "srctyp": "e-Invoice",
                                        "val": 114939.98
                                      }
                                    ]
                                  }
                                }
                              },
                              "example": [
                                {
                                  "cfs": "Y",
                                  "cfs3b": "Y",
                                  "ctin": "07ABCCA9123A1YZ",
                                  "fldtr1": "11-Jan-24",
                                  "flprdr1": "Dec-23",
                                  "nt": [
                                    {
                                      "chksum": "62e70374990b3cef19e36d4eee08cd033c63811ddbf7d27601b9a4b83786dbf1",
                                      "d_flag": "Y",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51",
                                      "irngendate": "13-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "iamt": 561.05,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 3116.94
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "nt_dt": "13-12-2023",
                                      "nt_num": "ACN2324000103340",
                                      "ntty": "C",
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 3677.99
                                    },
                                    {
                                      "chksum": "c9cf8df2a4ebb548eeed7c373e6e4760416dc13520de43a1b26f4036f83d2a73",
                                      "d_flag": "Y",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30eb8bbc314c0ef223d54402ebf09a4368735bb3bdc2159994de0543",
                                      "irngendate": "13-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "iamt": 961.11,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 5339.48
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "nt_dt": "13-12-2023",
                                      "nt_num": "ACN2324000103368",
                                      "ntty": "C",
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 6300.59
                                    },
                                    {
                                      "chksum": "fd69021e1d2e13e5044855accbaaae6c9b770a0a7330f30f9c9fb5a70914c587",
                                      "d_flag": "Y",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30a2b71831e89eba6742a7035660560559843936076fd0466cb6e2c2",
                                      "irngendate": "13-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "iamt": 46380.95,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 257671.97
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "nt_dt": "13-12-2023",
                                      "nt_num": "ACN2324000103394",
                                      "ntty": "C",
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 304052.92
                                    },
                                    {
                                      "chksum": "9d01418f52927eae3b7439571a395472876b28d91ac0c75e0c3014e7587023e4",
                                      "d_flag": "Y",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30fca1a9feeac080875d8fbcb0b2367c00b582c60485119a375ce80f",
                                      "irngendate": "13-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "iamt": 17349.93,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 96388.48
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "nt_dt": "13-12-2023",
                                      "nt_num": "ACN2324000103426",
                                      "ntty": "C",
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 113738.41
                                    },
                                    {
                                      "chksum": "ac2f16c2039f07d75db508c9acfe448cd177963a08ad8228e28cbd066ebad18b",
                                      "d_flag": "Y",
                                      "inv_typ": "R",
                                      "irn": "qoycq59t30a50837c18b84b9cc52a5c6423b4afa05dcbf1454ef98aa88206d5d",
                                      "irngendate": "13-12-2023",
                                      "itms": [
                                        {
                                          "itm_det": {
                                            "camt": 0,
                                            "iamt": 17533.22,
                                            "rt": 18,
                                            "samt": 0,
                                            "txval": 97406.76
                                          },
                                          "num": 1
                                        }
                                      ],
                                      "nt_dt": "13-12-2023",
                                      "nt_num": "ACN2324000103435",
                                      "ntty": "C",
                                      "pos": "24",
                                      "rchrg": "N",
                                      "srctyp": "e-Invoice",
                                      "val": 114939.98
                                    }
                                  ]
                                }
                              ]
                            },
                            "fp": {
                              "type": "string",
                              "example": "042024"
                            },
                            "gstin": {
                              "type": "string",
                              "example": "29AAACQ3770E000"
                            }
                          }
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "50d9c8de-1b74-4de8-9d16-01892a5b1c84"
                    }
                  }
                },
                "examples": {
                  "200 No data": {
                    "summary": "200 No data",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "fp": "042024",
                          "gstin": "29AAACQ3770E000"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "50d9c8de-1b74-4de8-9d16-01892a5b1c84"
                    }
                  },
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "b2b": [
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCPD9123Q1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "15479fc2ca8939a16a0ad1714f804e32199489fa2bcc34dbc3693e075ab0a923",
                                  "idt": "01-12-2023",
                                  "inum": "23-24/126",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 175.5,
                                        "csamt": 0,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 175.5,
                                        "txval": 1950
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 2301
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "06ABCCG0123D1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "ce60dfa45192a4f3a3d1d6c983d700dded0033b2a17600aa1c41cb287a8b1803",
                                  "idt": "31-12-2023",
                                  "inum": "4883379355",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 2197.29,
                                        "rt": 18,
                                        "txval": 12207.14
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 14404.43
                                },
                                {
                                  "chksum": "67d3cec7423b2176bef9962f36667a297a0bd8836fc86bbca2777bd7898d862d",
                                  "idt": "31-12-2023",
                                  "inum": "4884148871",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "csamt": 0,
                                        "iamt": 24.64,
                                        "rt": 18,
                                        "txval": 136.9
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 161.54
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCCB2123P1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "7851ccb28bef36326547ccd147a1ea0e914dbe085f8eaa0b05486e97d2c1745c",
                                  "idt": "01-12-2023",
                                  "inum": "GJI0611330220210",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t3004161d2a8006b1cafe7213ccaa4014120722fa5eb2d68854a04af8",
                                  "irngendate": "02-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 26.91,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 26.91,
                                        "txval": 299
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 352.82
                                },
                                {
                                  "chksum": "853539a3357c5c81b129df310ac02e55bc5fd2026f7c179be3f4c2feca677237",
                                  "idt": "01-12-2023",
                                  "inum": "GJI0611330353886",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30487cf5110f295d37bdc8e4ce316455a9fc480004671ed20811f35c",
                                  "irngendate": "01-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 900,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 900,
                                        "txval": 10000
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 11800
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCPL3123J1YZ",
                              "fldtr1": "13-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "639caff03a1810e4d078216813b9f3cc0fad85f65f3eb8ce371494b4ce60c458",
                                  "idt": "30-10-2023",
                                  "inum": "76",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 450,
                                        "rt": 18,
                                        "samt": 450,
                                        "txval": 5000
                                      },
                                      "num": 1800
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 5900
                                },
                                {
                                  "chksum": "ae4e297bb07db8ce3d376a60354ead6ac03ca2e12e665a92b7d8752fd8f63c25",
                                  "idt": "31-10-2023",
                                  "inum": "77",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 472.5,
                                        "rt": 18,
                                        "samt": 472.5,
                                        "txval": 5250
                                      },
                                      "num": 1800
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 6195
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "27ABCCU4123C1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "4a331460e9605b817bfce2a5ad68bce81ff9bef5197bedc22968f73039b9098f",
                                  "idt": "22-12-2023",
                                  "inum": "PAN-V/27/424",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 2160,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 12000
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 14160
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCCB2123G1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "6491b64316c38b79606b4225f75dd141614a4f44c6449f20db436250aacfd5db",
                                  "idt": "22-12-2023",
                                  "inum": "FBBL2424B29715",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t303eb4d1cab56c71027d971cbf0eeb1530e14fc31f996cd101d49842",
                                  "irngendate": "23-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 2700,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 2700,
                                        "txval": 30000
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 35400
                                },
                                {
                                  "chksum": "2cd3d2eb24045ede76d4932c7aaede1a11f3ff1a2c9f92e551fef7093009add6",
                                  "idt": "12-12-2023",
                                  "inum": "HT2424I001454703",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t309f77a9bb8318a7931b1540e8f29052ee672f9525bcb10938d8e3e1",
                                  "irngendate": "12-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 359.91,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 359.91,
                                        "txval": 3999
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 4718.82
                                },
                                {
                                  "chksum": "b024ee4dca59e40216ed28160b90240d73f959ab2f683e5f412c11248befeca6",
                                  "idt": "18-12-2023",
                                  "inum": "HT2424I001485717",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b3ceed1dbc3f1129ada8d1032de76a8e5d9232cc7ae75641369580",
                                  "irngendate": "18-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 359.91,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 359.91,
                                        "txval": 3999
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 4718.82
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCPK3123G1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "6df0d792c4a275b9ae291facbf71dff1c645dc2dc1840baf61feb7fbf1956fb8",
                                  "idt": "31-12-2023",
                                  "inum": "GIN0003609",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 35.1,
                                        "rt": 18,
                                        "samt": 35.1,
                                        "txval": 390
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 460
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "36ABCPH8123R1YZ",
                              "fldtr1": "08-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "497d558440c623ce31e6f00af1b8cd40334c7ef2d8c5ba4586698950f1c6a07a",
                                  "idt": "02-12-2023",
                                  "inum": "08",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 288,
                                        "rt": 18,
                                        "txval": 1600
                                      },
                                      "num": 1800
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 1887
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "33ABCCZ4123M2YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "4a40811683d7324a026c4cc57d6c9091cdd72110d38979133c4519f70d3f1052",
                                  "idt": "10-12-2023",
                                  "inum": "102324229636",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30c9eacb3701114023ed746e0e2c4f38a2a88a525b10467d94b379ee",
                                  "irngendate": "11-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 518.4,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 2880
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 3398.4
                                },
                                {
                                  "chksum": "7b869627113a641ec26e037e8a43ce813c778615d6306e08ac96a1c231143edf",
                                  "idt": "11-12-2023",
                                  "inum": "102324230047",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b4128b0b6343c13b5dd21b2d3084f08f30d1a0f8389984fd2615b1",
                                  "irngendate": "11-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 432,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 2400
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 2832
                                },
                                {
                                  "chksum": "219acfe29f93805dff06f6d5a480be29bcc9ead5e870604fd706a28dc5d138ce",
                                  "idt": "25-12-2023",
                                  "inum": "102324243574",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t307ae1cebb53e68135e8d42c53e2d9792b8b7bd543f01ab0da203bc6",
                                  "irngendate": "26-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 50.17,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 278.71
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 328.88
                                },
                                {
                                  "chksum": "231c3c2cdd8453e8d01baa2c9f2def14892db3c3004c18de16f4d82cb7ba6df7",
                                  "idt": "27-12-2023",
                                  "inum": "102324245907",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b5bdd11a0876f41ae60132a0caa589b508aedf4dc86a7df8f16b17",
                                  "irngendate": "28-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 44.59,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 247.74
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 292.33
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "29ABCCR4123K1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "c5d125323e779d687ee02308001099bdb55f3afaefd36da570cb0eec4e5061ed",
                                  "idt": "10-12-2023",
                                  "inum": "141519",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 403,
                                        "rt": 18,
                                        "txval": 2240
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 2643
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "27ABCCI0123E1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "64aec8aebbf45c388d77bc8a03b38895e73ec5d89a44c18cbc9703a44b419a65",
                                  "idt": "12-12-2023",
                                  "inum": "NPS/1224/0088766",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 54,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 300
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 354
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "29ABCCR4123K1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "a15e9083d654cb370ff7add0ef93fe072a8a1a1c5ad96ee569941a5cd433a71e",
                                  "idt": "21-12-2023",
                                  "inum": "INV-000764",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 1890,
                                        "rt": 18,
                                        "txval": 10500
                                      },
                                      "num": 1800
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 12390
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCPM7123B2YZ",
                              "fldtr1": "09-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "be4342e9e49709abc9e5f11d3098212e6db62df15a960973b580361d458f1ba8",
                                  "idt": "03-10-2023",
                                  "inum": "VPDL-331",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 80.2,
                                        "csamt": 0,
                                        "rt": 12,
                                        "samt": 80.2,
                                        "txval": 1336.62
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 1497
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "27ABCCN2123N1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "8d829a556dcde2e34abe140562131b7bea4aec7eeb2f9ac0ebc668582eaddeb0",
                                  "idt": "19-12-2023",
                                  "inum": "OPV/997000175687",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "csamt": 0,
                                        "iamt": 3813.56,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 21186.44
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 25000
                                }
                              ]
                            },
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "29ABCCR4123J1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "chksum": "75d98911ec2350b650c79a157760948606fd89837d623d16a19e7b1b4343c457",
                                  "idt": "31-12-2023",
                                  "inum": "4XCFPHNO3URQ1223",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 1496.86,
                                        "rt": 18,
                                        "txval": 8315.9
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 12711.98
                                },
                                {
                                  "chksum": "89e0c717a02ff5666d1f7a5a59fed3a0a368c96036ad88248902b1eaf6b87a73",
                                  "idt": "31-12-2023",
                                  "inum": "GSDKTASVXEXU1223",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "iamt": 7384.13,
                                        "rt": 18,
                                        "txval": 41022.9
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 52865.55
                                }
                              ]
                            }
                          ],
                          "b2ba": [
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "24ABCCR0123M1YZ",
                              "fldtr1": "10-Jan-24",
                              "flprdr1": "Dec-23",
                              "inv": [
                                {
                                  "aspd": "Oct-23",
                                  "atyp": "D",
                                  "chksum": "6a93632fb89ac2028409a04ef1b538d38e9e50503b69c1ddd182570d61615aea",
                                  "idt": "25-10-2023",
                                  "inum": "RN1/FAMA-16557",
                                  "inv_typ": "R",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 0,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 0.01
                                      },
                                      "num": 1418
                                    }
                                  ],
                                  "oidt": "25-10-2023",
                                  "oinum": "RN1/FAMA-16557",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "val": 0.01
                                }
                              ]
                            }
                          ],
                          "cdn": [
                            {
                              "cfs": "Y",
                              "cfs3b": "Y",
                              "ctin": "07ABCCA9123A1YZ",
                              "fldtr1": "11-Jan-24",
                              "flprdr1": "Dec-23",
                              "nt": [
                                {
                                  "chksum": "62e70374990b3cef19e36d4eee08cd033c63811ddbf7d27601b9a4b83786dbf1",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 561.05,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 3116.94
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103340",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 3677.99
                                },
                                {
                                  "chksum": "c9cf8df2a4ebb548eeed7c373e6e4760416dc13520de43a1b26f4036f83d2a73",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30eb8bbc314c0ef223d54402ebf09a4368735bb3bdc2159994de0543",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 961.11,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 5339.48
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103368",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 6300.59
                                },
                                {
                                  "chksum": "fd69021e1d2e13e5044855accbaaae6c9b770a0a7330f30f9c9fb5a70914c587",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30a2b71831e89eba6742a7035660560559843936076fd0466cb6e2c2",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 46380.95,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 257671.97
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103394",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 304052.92
                                },
                                {
                                  "chksum": "9d01418f52927eae3b7439571a395472876b28d91ac0c75e0c3014e7587023e4",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30fca1a9feeac080875d8fbcb0b2367c00b582c60485119a375ce80f",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 17349.93,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 96388.48
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103426",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 113738.41
                                },
                                {
                                  "chksum": "ac2f16c2039f07d75db508c9acfe448cd177963a08ad8228e28cbd066ebad18b",
                                  "d_flag": "Y",
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30a50837c18b84b9cc52a5c6423b4afa05dcbf1454ef98aa88206d5d",
                                  "irngendate": "13-12-2023",
                                  "itms": [
                                    {
                                      "itm_det": {
                                        "camt": 0,
                                        "iamt": 17533.22,
                                        "rt": 18,
                                        "samt": 0,
                                        "txval": 97406.76
                                      },
                                      "num": 1
                                    }
                                  ],
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103435",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "srctyp": "e-Invoice",
                                  "val": 114939.98
                                }
                              ]
                            }
                          ],
                          "fp": "122023",
                          "gstin": "29AAACQ3770E000"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "22b919da-029c-4095-88a4-d477b81fb72f"
                    }
                  },
                  "200 Success 2": {
                    "summary": "200 Success 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "data": {
                          "b2ba": [
                            {
                              "inv": [
                                {
                                  "val": 0.01,
                                  "itms": [
                                    {
                                      "num": 1418,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 0.01,
                                        "camt": 0,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "oinum": "RN1/FAMA-16557",
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "atyp": "D",
                                  "idt": "25-10-2023",
                                  "rchrg": "N",
                                  "aspd": "Oct-23",
                                  "inum": "RN1/FAMA-16557",
                                  "oidt": "25-10-2023",
                                  "chksum": "6a93632fb89ac2028409a04ef1b538d38e9e50503b69c1ddd182570d61615aea"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCCR0123M1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            }
                          ],
                          "b2b": [
                            {
                              "inv": [
                                {
                                  "val": 2301,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 175.5,
                                        "rt": 18,
                                        "txval": 1950,
                                        "camt": 175.5,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "01-12-2023",
                                  "rchrg": "N",
                                  "inum": "23-24/126",
                                  "chksum": "15479fc2ca8939a16a0ad1714f804e32199489fa2bcc34dbc3693e075ab0a923"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCPD9123Q1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 14404.43,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "rt": 18,
                                        "txval": 12207.14,
                                        "iamt": 2197.29
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "4883379355",
                                  "chksum": "ce60dfa45192a4f3a3d1d6c983d700dded0033b2a17600aa1c41cb287a8b1803"
                                },
                                {
                                  "val": 161.54,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "rt": 18,
                                        "txval": 136.9,
                                        "iamt": 24.64
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "4884148871",
                                  "chksum": "67d3cec7423b2176bef9962f36667a297a0bd8836fc86bbca2777bd7898d862d"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "06ABCCG0123D1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 352.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 26.91,
                                        "rt": 18,
                                        "txval": 299,
                                        "camt": 26.91,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t3004161d2a8006b1cafe7213ccaa4014120722fa5eb2d68854a04af8",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "01-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "02-12-2023",
                                  "inum": "GJI0611330220210",
                                  "chksum": "7851ccb28bef36326547ccd147a1ea0e914dbe085f8eaa0b05486e97d2c1745c"
                                },
                                {
                                  "val": 11800,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 900,
                                        "rt": 18,
                                        "txval": 10000,
                                        "camt": 900,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30487cf5110f295d37bdc8e4ce316455a9fc480004671ed20811f35c",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "01-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "01-12-2023",
                                  "inum": "GJI0611330353886",
                                  "chksum": "853539a3357c5c81b129df310ac02e55bc5fd2026f7c179be3f4c2feca677237"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCCB2123P1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 5900,
                                  "itms": [
                                    {
                                      "num": 1800,
                                      "itm_det": {
                                        "samt": 450,
                                        "rt": 18,
                                        "txval": 5000,
                                        "camt": 450
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "30-10-2023",
                                  "rchrg": "N",
                                  "inum": "76",
                                  "chksum": "639caff03a1810e4d078216813b9f3cc0fad85f65f3eb8ce371494b4ce60c458"
                                },
                                {
                                  "val": 6195,
                                  "itms": [
                                    {
                                      "num": 1800,
                                      "itm_det": {
                                        "samt": 472.5,
                                        "rt": 18,
                                        "txval": 5250,
                                        "camt": 472.5
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-10-2023",
                                  "rchrg": "N",
                                  "inum": "77",
                                  "chksum": "ae4e297bb07db8ce3d376a60354ead6ac03ca2e12e665a92b7d8752fd8f63c25"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCPL3123J1YZ",
                              "fldtr1": "13-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 14160,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 12000,
                                        "camt": 0,
                                        "iamt": 2160
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "22-12-2023",
                                  "rchrg": "N",
                                  "inum": "PAN-V/27/424",
                                  "chksum": "4a331460e9605b817bfce2a5ad68bce81ff9bef5197bedc22968f73039b9098f"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "27ABCCU4123C1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 35400,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 2700,
                                        "rt": 18,
                                        "txval": 30000,
                                        "camt": 2700,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t303eb4d1cab56c71027d971cbf0eeb1530e14fc31f996cd101d49842",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "22-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "23-12-2023",
                                  "inum": "FBBL2424B29715",
                                  "chksum": "6491b64316c38b79606b4225f75dd141614a4f44c6449f20db436250aacfd5db"
                                },
                                {
                                  "val": 4718.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 359.91,
                                        "rt": 18,
                                        "txval": 3999,
                                        "camt": 359.91,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t309f77a9bb8318a7931b1540e8f29052ee672f9525bcb10938d8e3e1",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "12-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "12-12-2023",
                                  "inum": "HT2424I001454703",
                                  "chksum": "2cd3d2eb24045ede76d4932c7aaede1a11f3ff1a2c9f92e551fef7093009add6"
                                },
                                {
                                  "val": 4718.82,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 359.91,
                                        "rt": 18,
                                        "txval": 3999,
                                        "camt": 359.91,
                                        "iamt": 0
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b3ceed1dbc3f1129ada8d1032de76a8e5d9232cc7ae75641369580",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "18-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "18-12-2023",
                                  "inum": "HT2424I001485717",
                                  "chksum": "b024ee4dca59e40216ed28160b90240d73f959ab2f683e5f412c11248befeca6"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCCB2123G1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 460,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 35.1,
                                        "rt": 18,
                                        "txval": 390,
                                        "camt": 35.1
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "GIN0003609",
                                  "chksum": "6df0d792c4a275b9ae291facbf71dff1c645dc2dc1840baf61feb7fbf1956fb8"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCPK3123G1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 1887,
                                  "itms": [
                                    {
                                      "num": 1800,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 1600,
                                        "iamt": 288
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "02-12-2023",
                                  "rchrg": "N",
                                  "inum": "08",
                                  "chksum": "497d558440c623ce31e6f00af1b8cd40334c7ef2d8c5ba4586698950f1c6a07a"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "36ABCPH8123R1YZ",
                              "fldtr1": "08-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 3398.4,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 2880,
                                        "camt": 0,
                                        "iamt": 518.4
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30c9eacb3701114023ed746e0e2c4f38a2a88a525b10467d94b379ee",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "10-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "11-12-2023",
                                  "inum": "102324229636",
                                  "chksum": "4a40811683d7324a026c4cc57d6c9091cdd72110d38979133c4519f70d3f1052"
                                },
                                {
                                  "val": 2832,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 2400,
                                        "camt": 0,
                                        "iamt": 432
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b4128b0b6343c13b5dd21b2d3084f08f30d1a0f8389984fd2615b1",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "11-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "11-12-2023",
                                  "inum": "102324230047",
                                  "chksum": "7b869627113a641ec26e037e8a43ce813c778615d6306e08ac96a1c231143edf"
                                },
                                {
                                  "val": 328.88,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 278.71,
                                        "camt": 0,
                                        "iamt": 50.17
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t307ae1cebb53e68135e8d42c53e2d9792b8b7bd543f01ab0da203bc6",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "25-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "26-12-2023",
                                  "inum": "102324243574",
                                  "chksum": "219acfe29f93805dff06f6d5a480be29bcc9ead5e870604fd706a28dc5d138ce"
                                },
                                {
                                  "val": 292.33,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 247.74,
                                        "camt": 0,
                                        "iamt": 44.59
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "irn": "qoycq59t30b5bdd11a0876f41ae60132a0caa589b508aedf4dc86a7df8f16b17",
                                  "pos": "24",
                                  "srctyp": "E-Invoice",
                                  "idt": "27-12-2023",
                                  "rchrg": "N",
                                  "irngendate": "28-12-2023",
                                  "inum": "102324245907",
                                  "chksum": "231c3c2cdd8453e8d01baa2c9f2def14892db3c3004c18de16f4d82cb7ba6df7"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "33ABCCZ4123M2YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 2643,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 2240,
                                        "iamt": 403
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "10-12-2023",
                                  "rchrg": "N",
                                  "inum": "141519",
                                  "chksum": "c5d125323e779d687ee02308001099bdb55f3afaefd36da570cb0eec4e5061ed"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "29ABCCR4123K1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 354,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 300,
                                        "camt": 0,
                                        "iamt": 54
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "12-12-2023",
                                  "rchrg": "N",
                                  "inum": "NPS/1224/0088766",
                                  "chksum": "64aec8aebbf45c388d77bc8a03b38895e73ec5d89a44c18cbc9703a44b419a65"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "27ABCCI0123E1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 12390,
                                  "itms": [
                                    {
                                      "num": 1800,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 10500,
                                        "iamt": 1890
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "21-12-2023",
                                  "rchrg": "N",
                                  "inum": "INV-000764",
                                  "chksum": "a15e9083d654cb370ff7add0ef93fe072a8a1a1c5ad96ee569941a5cd433a71e"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "29ABCCR4123K1YZ",
                              "fldtr1": "10-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 1497,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 80.2,
                                        "rt": 12,
                                        "txval": 1336.62,
                                        "camt": 80.2
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "03-10-2023",
                                  "rchrg": "N",
                                  "inum": "VPDL-331",
                                  "chksum": "be4342e9e49709abc9e5f11d3098212e6db62df15a960973b580361d458f1ba8"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "24ABCPM7123B2YZ",
                              "fldtr1": "09-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 25000,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 21186.44,
                                        "camt": 0,
                                        "iamt": 3813.56
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "19-12-2023",
                                  "rchrg": "N",
                                  "inum": "OPV/997000175687",
                                  "chksum": "8d829a556dcde2e34abe140562131b7bea4aec7eeb2f9ac0ebc668582eaddeb0"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "27ABCCN2123N1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            },
                            {
                              "inv": [
                                {
                                  "val": 12711.98,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 8315.9,
                                        "iamt": 1496.86
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "4XCFPHNO3URQ1223",
                                  "chksum": "75d98911ec2350b650c79a157760948606fd89837d623d16a19e7b1b4343c457"
                                },
                                {
                                  "val": 52865.55,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 18,
                                        "txval": 41022.9,
                                        "iamt": 7384.13
                                      }
                                    }
                                  ],
                                  "inv_typ": "R",
                                  "pos": "24",
                                  "idt": "31-12-2023",
                                  "rchrg": "N",
                                  "inum": "GSDKTASVXEXU1223",
                                  "chksum": "89e0c717a02ff5666d1f7a5a59fed3a0a368c96036ad88248902b1eaf6b87a73"
                                }
                              ],
                              "cfs": "Y",
                              "ctin": "29ABCCR4123J1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            }
                          ],
                          "fp": "122023",
                          "gstin": "29AAACQ3770E000",
                          "cdn": [
                            {
                              "cfs": "Y",
                              "nt": [
                                {
                                  "val": 3677.99,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 3116.94,
                                        "camt": 0,
                                        "iamt": 561.05
                                      }
                                    }
                                  ],
                                  "irn": "qoycq59t30a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103340",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "srctyp": "E-Invoice",
                                  "pos": "24",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "62e70374990b3cef19e36d4eee08cd033c63811ddbf7d27601b9a4b83786dbf1"
                                },
                                {
                                  "val": 6300.59,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 5339.48,
                                        "camt": 0,
                                        "iamt": 961.11
                                      }
                                    }
                                  ],
                                  "irn": "qoycq59t30eb8bbc314c0ef223d54402ebf09a4368735bb3bdc2159994de0543",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103368",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "srctyp": "E-Invoice",
                                  "pos": "24",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "c9cf8df2a4ebb548eeed7c373e6e4760416dc13520de43a1b26f4036f83d2a73"
                                },
                                {
                                  "val": 304052.92,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 257671.97,
                                        "camt": 0,
                                        "iamt": 46380.95
                                      }
                                    }
                                  ],
                                  "irn": "qoycq59t30a2b71831e89eba6742a7035660560559843936076fd0466cb6e2c2",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103394",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "srctyp": "E-Invoice",
                                  "pos": "24",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "fd69021e1d2e13e5044855accbaaae6c9b770a0a7330f30f9c9fb5a70914c587"
                                },
                                {
                                  "val": 113738.41,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 96388.48,
                                        "camt": 0,
                                        "iamt": 17349.93
                                      }
                                    }
                                  ],
                                  "irn": "qoycq59t30fca1a9feeac080875d8fbcb0b2367c00b582c60485119a375ce80f",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103426",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "srctyp": "E-Invoice",
                                  "pos": "24",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "9d01418f52927eae3b7439571a395472876b28d91ac0c75e0c3014e7587023e4"
                                },
                                {
                                  "val": 114939.98,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "samt": 0,
                                        "rt": 18,
                                        "txval": 97406.76,
                                        "camt": 0,
                                        "iamt": 17533.22
                                      }
                                    }
                                  ],
                                  "irn": "qoycq59t30a50837c18b84b9cc52a5c6423b4afa05dcbf1454ef98aa88206d5d",
                                  "d_flag": "Y",
                                  "nt_num": "ACN2324000103435",
                                  "irngendate": "13-12-2023",
                                  "nt_dt": "13-12-2023",
                                  "inv_typ": "R",
                                  "srctyp": "E-Invoice",
                                  "pos": "24",
                                  "ntty": "C",
                                  "rchrg": "N",
                                  "chksum": "ac2f16c2039f07d75db508c9acfe448cd177963a08ad8228e28cbd066ebad18b"
                                }
                              ],
                              "ctin": "07ABCCA9123A1YZ",
                              "fldtr1": "11-Jan-24",
                              "cfs3b": "Y",
                              "flprdr1": "Dec-23"
                            }
                          ]
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/ecom/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-2A ECOM",
        "deprecated": false,
        "description": "Get all ECOM details in GSTR-2A for a return period for authenticated taxpayer.",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Year e.g. 2020",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Month e.g. 01",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "`optional` Counter party GSTIN",
            "required": false,
            "example": "{{gstin}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Filter to fetch data from specified date. E.g., 28/01/2025",
            "required": false,
            "example": "29/01/2025",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstrsGstr2aEcomYearMonthResponse"
                },
                "examples": {
                  "No document found": {
                    "summary": "No document found",
                    "value": {
                      "code": 200,
                      "timestamp": 1769775673827,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found for the provided Inputs",
                          "error_cd": "RET13509"
                        }
                      },
                      "transaction_id": "7f8adc15-7345-4d26-ab40-ae9313e4ceaf"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2a/ecoma/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-2A ECOMA",
        "deprecated": false,
        "description": "Get amended ECOM details in GSTR-2A for a return period for authenticated taxpayer.",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Year e.g. 2020",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Month e.g. 01",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "counterparty_gstin",
            "in": "query",
            "description": "`optional` Counter party GSTIN",
            "required": false,
            "example": "{{gstin}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Filter to fetch data from specified date. E.g., 28/01/2025",
            "required": false,
            "example": "29/01/2025",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstrsGstr2aEcomaYearMonthResponse"
                },
                "examples": {
                  "No document found": {
                    "summary": "No document found",
                    "value": {
                      "code": 200,
                      "timestamp": 1769775699280,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found for the provided Inputs",
                          "error_cd": "RET13509"
                        }
                      },
                      "transaction_id": "800bae5a-0c3b-4dda-b235-9aa20c6f7f31"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2b/{year}/{month}": {
      "get": {
        "summary": "GSTR-2B Document",
        "deprecated": false,
        "description": "Get summary in GSTR2A for a return period for authenticated taxpayer. This is an aggregate API which combines B2B, B2BA, CDN, CDNA and ISD API. (*Additional charges applicable)",
        "operationId": "getGstr2bDocument",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2B Document"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "file_number",
            "in": "query",
            "description": "Specify file_number incrementally (from 1 to fc) in additional requests to retrieve all invoice data. Only applicable if status_cd = 3.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "example": "{{file_number}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / 200 Success page number 1 / 200 Success (before Oct 2024) / 200 Success with file count pagination / 200 Success page number 1 (before Oct 2024) / RET2B1023 GSTR-2B not available / RET2B1016 No details available to view",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr2bDocumentResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "chksum": "e6255f8e01d58128775e20b2405bf4b93f74fc9f737b3f7da1829927f357bb61",
                          "data": {
                            "cpsumm": {
                              "b2b": [
                                {
                                  "cess": 0,
                                  "cgst": 2362.5,
                                  "ctin": "24ACRPP7935N1ZO",
                                  "igst": 0,
                                  "sgst": 2362.5,
                                  "supfildt": "07-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "HITESHKUMAR DWARKADAS PATEL",
                                  "ttldocs": 1,
                                  "txval": 26250
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06AACCG0527D1Z8",
                                  "igst": 397.44,
                                  "sgst": 0,
                                  "supfildt": "11-11-2024",
                                  "supprd": "102024",
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "ttldocs": 1,
                                  "txval": 2208
                                },
                                {
                                  "cess": 0,
                                  "cgst": 198.31,
                                  "ctin": "24AACFI9070L1Z5",
                                  "igst": 0,
                                  "sgst": 198.31,
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "I TECH STORE",
                                  "ttldocs": 1,
                                  "txval": 2203.39
                                },
                                {
                                  "cess": 0,
                                  "cgst": 30.59,
                                  "ctin": "24AAJCC9783E1ZD",
                                  "igst": 0,
                                  "sgst": 30.59,
                                  "supfildt": "11-11-2024",
                                  "supprd": "102024",
                                  "trdnm": "CLICKTECH RETAIL PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 339.84
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27AAFCV6085L1ZO",
                                  "igst": 237.38,
                                  "sgst": 0,
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "VAY NETWORK SERVICES PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 1318.8
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "08BMNPP2457E2ZR",
                                  "igst": 18.76,
                                  "sgst": 0,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "DM Marketing",
                                  "ttldocs": 1,
                                  "txval": 375.24
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29AAICP2912R1ZR",
                                  "igst": 130822.64,
                                  "sgst": 0,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "CASHFREE PAYMENTS INDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 726792.4
                                },
                                {
                                  "cess": 0,
                                  "cgst": 648.16,
                                  "ctin": "24AABCI6363G1ZP",
                                  "igst": 0,
                                  "sgst": 648.16,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "Reliance Jio Infocomm  Limited",
                                  "ttldocs": 1,
                                  "txval": 7201.8
                                },
                                {
                                  "cess": 0,
                                  "cgst": 152.54,
                                  "ctin": "24AAWFG9936H1ZP",
                                  "igst": 0,
                                  "sgst": 152.54,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "GOURMESSERIE LLP",
                                  "ttldocs": 1,
                                  "txval": 1694.92
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06AAGCG5872M1Z3",
                                  "igst": 27,
                                  "sgst": 0,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "Grey Swift Private Limited",
                                  "ttldocs": 1,
                                  "txval": 150
                                },
                                {
                                  "cess": 0,
                                  "cgst": 2362.5,
                                  "ctin": "24AIYPP5747M1Z8",
                                  "igst": 0,
                                  "sgst": 2362.5,
                                  "supfildt": "04-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "SHRI SAI TEXTILES",
                                  "ttldocs": 1,
                                  "txval": 26250
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "32BEGPM1696R1ZU",
                                  "igst": 49.36,
                                  "sgst": 0,
                                  "supfildt": "13-11-2024",
                                  "supprd": "102024",
                                  "trdnm": "ONLY MAT",
                                  "ttldocs": 1,
                                  "txval": 408.79
                                },
                                {
                                  "cess": 0,
                                  "cgst": 432.11,
                                  "ctin": "24AAECJ6878N1ZU",
                                  "igst": 0,
                                  "sgst": 432.11,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "JIO PLATFORMS LIMITED",
                                  "ttldocs": 1,
                                  "txval": 4801.2
                                },
                                {
                                  "cess": 0,
                                  "cgst": 4725,
                                  "ctin": "24AQDPP4462E1Z0",
                                  "igst": 0,
                                  "sgst": 4725,
                                  "supfildt": "07-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "PATEL YOGINABEN HITESHKUMAR",
                                  "ttldocs": 1,
                                  "txval": 52500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 26.91,
                                  "ctin": "24AAACB2894G1ZT",
                                  "igst": 0,
                                  "sgst": 26.91,
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "ttldocs": 1,
                                  "txval": 299
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29AAHCD5090M1Z3",
                                  "igst": 4079.23,
                                  "sgst": 0,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "DIGITAP.AI ENTERPRISE SOLUTIONS PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 22662.4
                                },
                                {
                                  "cess": 0,
                                  "cgst": 10883.91,
                                  "ctin": "24AAACU6278M1ZV",
                                  "igst": 0,
                                  "sgst": 10883.91,
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "UNICORN INFOSOLUTIONS PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 120932.18
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27AAGCG4576J1Z6",
                                  "igst": 4.65,
                                  "sgst": 0,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "Google Cloud India Private Limited",
                                  "ttldocs": 1,
                                  "txval": 25.84
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06AACCG0527D1Z8",
                                  "igst": 384.19,
                                  "sgst": 0,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "ttldocs": 1,
                                  "txval": 2134.4
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07AAJCA9880A1ZL",
                                  "igst": 79345.02,
                                  "sgst": 0,
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "AMAZON WEB SERVICES INDIA PRIVATE LIMITED",
                                  "ttldocs": 6,
                                  "txval": 440805.62
                                },
                                {
                                  "cess": 0,
                                  "cgst": 2333.9,
                                  "ctin": "24AAWFG9936H1ZP",
                                  "igst": 0,
                                  "sgst": 2333.9,
                                  "supfildt": "13-11-2024",
                                  "supprd": "102024",
                                  "trdnm": "GOURMESSERIE LLP",
                                  "ttldocs": 2,
                                  "txval": 25932.21
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33AAACZ4322M2Z9",
                                  "igst": 288,
                                  "sgst": 0,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "ZOHO CORPORATION PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 1600
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27AAFCN3372G1ZF",
                                  "igst": 2535.19,
                                  "sgst": 0,
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "NSDL PAYMENTS BANK LIMITED",
                                  "ttldocs": 2,
                                  "txval": 14084.4
                                },
                                {
                                  "cess": 0,
                                  "cgst": 258.62,
                                  "ctin": "24AAECR0564M1Z9",
                                  "igst": 0,
                                  "sgst": 258.62,
                                  "supfildt": "09-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 2873.53
                                }
                              ]
                            },
                            "docdata": {
                              "b2b": [
                                {
                                  "ctin": "24AAWFG9936H1ZP",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 152.54,
                                      "dt": "29-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "PRN-1289",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 152.54,
                                      "txval": 1694.92,
                                      "typ": "R",
                                      "val": 2000
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "GOURMESSERIE LLP"
                                },
                                {
                                  "ctin": "24AACFI9070L1Z5",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 198.31,
                                      "dt": "08-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "IT/24-25/978",
                                      "irn": "aa77ad30f54d5660be7ebbf4c64c146e150eda6b332622dafb5c72bdc9d4c3c4",
                                      "irngendate": "08-11-2024",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 198.31,
                                      "srctyp": "e-Invoice",
                                      "txval": 2203.39,
                                      "typ": "R",
                                      "val": 2600
                                    }
                                  ],
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "I TECH STORE"
                                },
                                {
                                  "ctin": "24AAECJ6878N1ZU",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 432.11,
                                      "dt": "05-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "C24E242500023146",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 432.11,
                                      "txval": 4801.2,
                                      "typ": "R",
                                      "val": 5665.42
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "JIO PLATFORMS LIMITED"
                                },
                                {
                                  "ctin": "32BEGPM1696R1ZU",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "16-10-2024",
                                      "igst": 49.36,
                                      "imsStatus": "N",
                                      "inum": "OI-30587/24-25",
                                      "irn": "82b4218619a08e138e63bdbc883a31715d80af5e02bf902b544828639c944f6d",
                                      "irngendate": "11-11-2024",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "srctyp": "e-Invoice",
                                      "txval": 408.79,
                                      "typ": "R",
                                      "val": 458.15
                                    }
                                  ],
                                  "supfildt": "13-11-2024",
                                  "supprd": "102024",
                                  "trdnm": "ONLY MAT"
                                },
                                {
                                  "ctin": "27AAGCG4576J1Z6",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "30-11-2024",
                                      "igst": 4.65,
                                      "imsStatus": "N",
                                      "inum": "5129155089",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 25.84,
                                      "typ": "R",
                                      "val": 30.49
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "Google Cloud India Private Limited"
                                },
                                {
                                  "ctin": "24AAECR0564M1Z9",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 258.62,
                                      "dt": "13-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "AMD2-3993079",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 258.62,
                                      "txval": 2873.53,
                                      "typ": "R",
                                      "val": 3390.77
                                    }
                                  ],
                                  "supfildt": "09-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "07AAJCA9880A1ZL",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "02-11-2024",
                                      "igst": 12461.39,
                                      "imsStatus": "N",
                                      "inum": "AIN2425002587878",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 69229.92,
                                      "typ": "R",
                                      "val": 81691.31
                                    },
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "02-11-2024",
                                      "igst": 35686.04,
                                      "imsStatus": "N",
                                      "inum": "AIN2425002589127",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 198255.78,
                                      "typ": "R",
                                      "val": 233941.82
                                    },
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "02-11-2024",
                                      "igst": 27316.7,
                                      "imsStatus": "N",
                                      "inum": "AIN2425002589265",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 151759.42,
                                      "typ": "R",
                                      "val": 179076.12
                                    },
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "02-11-2024",
                                      "igst": 3878.32,
                                      "imsStatus": "N",
                                      "inum": "AIN2425002596389",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 21546.21,
                                      "typ": "R",
                                      "val": 25424.53
                                    },
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "02-11-2024",
                                      "igst": 0.3,
                                      "imsStatus": "N",
                                      "inum": "AIN2425002815796",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 1.68,
                                      "typ": "R",
                                      "val": 1.98
                                    },
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "03-11-2024",
                                      "igst": 2.27,
                                      "imsStatus": "N",
                                      "inum": "AIN2425002877822",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 12.61,
                                      "typ": "R",
                                      "val": 14.88
                                    }
                                  ],
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "AMAZON WEB SERVICES INDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06AAGCG5872M1Z3",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "19-11-2024",
                                      "igst": 27,
                                      "imsStatus": "N",
                                      "inum": "LE/25/1/07976",
                                      "irn": "90c6352d3136cd3f296a1d80bce1b2fbc5b2a4eceef8ca187674e2dcfe4269e8",
                                      "irngendate": "19-11-2024",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "srctyp": "e-Invoice",
                                      "txval": 150,
                                      "typ": "R",
                                      "val": 177
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "Grey Swift Private Limited"
                                },
                                {
                                  "ctin": "29AAHCD5090M1Z3",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "11-11-2024",
                                      "igst": 4079.23,
                                      "imsStatus": "N",
                                      "inum": "2024-25/DIG01231",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 22662.4,
                                      "typ": "R",
                                      "val": 26741.63
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "DIGITAP.AI ENTERPRISE SOLUTIONS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ACRPP7935N1ZO",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 2362.5,
                                      "dt": "01-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "R22",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 2362.5,
                                      "txval": 26250,
                                      "typ": "R",
                                      "val": 30975
                                    }
                                  ],
                                  "supfildt": "07-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "HITESHKUMAR DWARKADAS PATEL"
                                },
                                {
                                  "ctin": "24AIYPP5747M1Z8",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 2362.5,
                                      "dt": "01-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "15R",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 2362.5,
                                      "txval": 26250,
                                      "typ": "R",
                                      "val": 30975
                                    }
                                  ],
                                  "supfildt": "04-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "SHRI SAI TEXTILES"
                                },
                                {
                                  "ctin": "24AAACU6278M1ZV",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 10883.91,
                                      "dt": "05-11-2024",
                                      "igst": 0,
                                      "imsStatus": "A",
                                      "inum": "AO2SA2425002517",
                                      "irn": "d373832e40491f8c4a02405a3add9cc28a4f762078bd4133f8b083c018bc2efd",
                                      "irngendate": "05-11-2024",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 10883.91,
                                      "srctyp": "e-Invoice",
                                      "txval": 120932.18,
                                      "typ": "R",
                                      "val": 142700
                                    }
                                  ],
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "UNICORN INFOSOLUTIONS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24AQDPP4462E1Z0",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 4725,
                                      "dt": "01-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "R-15",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 4725,
                                      "txval": 52500,
                                      "typ": "R",
                                      "val": 61950
                                    }
                                  ],
                                  "supfildt": "07-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "PATEL YOGINABEN HITESHKUMAR"
                                },
                                {
                                  "ctin": "24AAJCC9783E1ZD",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 30.59,
                                      "dt": "16-10-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "AMD2-1463535",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 30.59,
                                      "txval": 339.84,
                                      "typ": "R",
                                      "val": 401.02
                                    }
                                  ],
                                  "supfildt": "11-11-2024",
                                  "supprd": "102024",
                                  "trdnm": "CLICKTECH RETAIL PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "29AAICP2912R1ZR",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "30-11-2024",
                                      "igst": 130822.64,
                                      "imsStatus": "N",
                                      "inum": "CF/24-25/62727",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 726792.4,
                                      "typ": "R",
                                      "val": 857615.03
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "CASHFREE PAYMENTS INDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06AACCG0527D1Z8",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "31-10-2024",
                                      "igst": 397.44,
                                      "imsStatus": "N",
                                      "inum": "5096411148",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 2208,
                                      "typ": "R",
                                      "val": 2605.44
                                    }
                                  ],
                                  "supfildt": "11-11-2024",
                                  "supprd": "102024",
                                  "trdnm": "GOOGLE INDIA PVT LTD"
                                },
                                {
                                  "ctin": "27AAFCN3372G1ZF",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "30-11-2024",
                                      "igst": 11.23,
                                      "imsStatus": "N",
                                      "inum": "NPBL/24-25/11192",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 62.4,
                                      "typ": "R",
                                      "val": 73.63
                                    },
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "30-11-2024",
                                      "igst": 2523.96,
                                      "imsStatus": "N",
                                      "inum": "NPBL/24-25/11199",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 14022,
                                      "typ": "R",
                                      "val": 16545.96
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "NSDL PAYMENTS BANK LIMITED"
                                },
                                {
                                  "ctin": "33AAACZ4322M2Z9",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "02-11-2024",
                                      "igst": 288,
                                      "imsStatus": "N",
                                      "inum": "1024250260344",
                                      "irn": "44297107201907e74e42716012e1ec8b25b2b1b62c6942e0c5cb6e1cf9aed90e",
                                      "irngendate": "11-11-2024",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "srctyp": "e-Invoice",
                                      "txval": 1600,
                                      "typ": "R",
                                      "val": 1888
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "ZOHO CORPORATION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06AACCG0527D1Z8",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "30-11-2024",
                                      "igst": 384.19,
                                      "imsStatus": "N",
                                      "inum": "5117213122",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 2134.4,
                                      "typ": "R",
                                      "val": 2518.59
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "GOOGLE INDIA PVT LTD"
                                },
                                {
                                  "ctin": "08BMNPP2457E2ZR",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "13-11-2024",
                                      "igst": 18.76,
                                      "imsStatus": "N",
                                      "inum": "IN-21576",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 375.24,
                                      "typ": "R",
                                      "val": 394
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "DM Marketing"
                                },
                                {
                                  "ctin": "24AABCI6363G1ZP",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 648.16,
                                      "dt": "05-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "C24E242500143276",
                                      "irn": "04e156eaa4b42fc37474c23c93c74771dcf79ddf5402b056e186e9e857f7e710",
                                      "irngendate": "05-11-2024",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 648.16,
                                      "srctyp": "e-Invoice",
                                      "txval": 7201.8,
                                      "typ": "R",
                                      "val": 8498.12
                                    }
                                  ],
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "Reliance Jio Infocomm  Limited"
                                },
                                {
                                  "ctin": "24AAWFG9936H1ZP",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 2181.36,
                                      "dt": "17-10-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "PRN-1050",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 2181.36,
                                      "txval": 24237.29,
                                      "typ": "R",
                                      "val": 28600
                                    },
                                    {
                                      "cess": 0,
                                      "cgst": 152.54,
                                      "dt": "25-10-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "PRN-1094",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 152.54,
                                      "txval": 1694.92,
                                      "typ": "R",
                                      "val": 2000
                                    }
                                  ],
                                  "supfildt": "13-11-2024",
                                  "supprd": "102024",
                                  "trdnm": "GOURMESSERIE LLP"
                                },
                                {
                                  "ctin": "24AAACB2894G1ZT",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 26.91,
                                      "dt": "27-11-2024",
                                      "igst": 0,
                                      "imsStatus": "N",
                                      "inum": "BM2524I007134077",
                                      "irn": "b79c9c9cc5efcabf1d626b23efa56da6dc00e998d5b3bb35ca7e981858c40275",
                                      "irngendate": "27-11-2024",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 26.91,
                                      "srctyp": "e-Invoice",
                                      "txval": 299,
                                      "typ": "R",
                                      "val": 352.82
                                    }
                                  ],
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "BHARTI  AIRTEL LTD."
                                },
                                {
                                  "ctin": "27AAFCV6085L1ZO",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "cgst": 0,
                                      "dt": "06-11-2024",
                                      "igst": 237.38,
                                      "imsStatus": "N",
                                      "inum": "VN1024D11312",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "sgst": 0,
                                      "txval": 1318.8,
                                      "typ": "R",
                                      "val": 1556.18
                                    }
                                  ],
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "trdnm": "VAY NETWORK SERVICES PRIVATE LIMITED"
                                }
                              ]
                            },
                            "gendt": "14-12-2024",
                            "gstin": "24ABKCS2033B1ZV",
                            "itcsumm": {
                              "itcavl": {
                                "nonrevsup": {
                                  "b2b": {
                                    "cess": 0,
                                    "cgst": 24415.05,
                                    "igst": 218188.86,
                                    "sgst": 24415.05,
                                    "txval": 1483843.96
                                  },
                                  "cess": 0,
                                  "cgst": 24415.05,
                                  "igst": 218188.86,
                                  "sgst": 24415.05
                                }
                              }
                            },
                            "rtnprd": "112024",
                            "version": "1.0"
                          }
                        }
                      },
                      "timestamp": 1735643392000,
                      "transaction_id": "f3fee28c-1498-41e1-ad39-1c5516881bfe"
                    }
                  },
                  "200 Success (before Oct 2024)": {
                    "summary": "200 Success (before Oct 2024)",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "chksum": "528a2f0cad941d31eeabe535099236aba8762ded3fdee2975a6b987be3b11689",
                          "data": {
                            "cpsumm": {
                              "b2b": [
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCG0123D1YZ",
                                  "igst": 2221.93,
                                  "sgst": 0,
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "ttldocs": 2,
                                  "txval": 12344.04
                                },
                                {
                                  "cess": 0,
                                  "cgst": 926.91,
                                  "ctin": "24ABCCB2123P1YZ",
                                  "igst": 0,
                                  "sgst": 926.91,
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "Vodafone Idea Limited",
                                  "ttldocs": 2,
                                  "txval": 10299
                                },
                                {
                                  "cess": 0,
                                  "cgst": 3419.82,
                                  "ctin": "24ABCCB2123G1YZ",
                                  "igst": 0,
                                  "sgst": 3419.82,
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "ttldocs": 3,
                                  "txval": 37998
                                },
                                {
                                  "cess": 0,
                                  "cgst": 922.5,
                                  "ctin": "24ABCPL3123J1YZ",
                                  "igst": 0,
                                  "sgst": 922.5,
                                  "supfildt": "13-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "H R LAKHANI & ASSOCIATES",
                                  "ttldocs": 2,
                                  "txval": 10250
                                },
                                {
                                  "cess": 0,
                                  "cgst": 175.5,
                                  "ctin": "24ABCPD9123Q1YZ",
                                  "igst": 0,
                                  "sgst": 175.5,
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "S N LAPTOP",
                                  "ttldocs": 1,
                                  "txval": 1950
                                },
                                {
                                  "cess": 0,
                                  "cgst": 35.1,
                                  "ctin": "24ABCPK3123G1YZ",
                                  "igst": 0,
                                  "sgst": 35.1,
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "S.SERVICE",
                                  "ttldocs": 1,
                                  "txval": 390
                                },
                                {
                                  "cess": 0,
                                  "cgst": 80.2,
                                  "ctin": "24ABCPM7123B2YZ",
                                  "igst": 0,
                                  "sgst": 80.2,
                                  "supfildt": "09-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "DYRROTH",
                                  "ttldocs": 1,
                                  "txval": 1336.62
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCN2123N1YZ",
                                  "igst": 3813.56,
                                  "sgst": 0,
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "Protean eGov Technologies Limited",
                                  "ttldocs": 1,
                                  "txval": 21186.44
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCU4123C1YZ",
                                  "igst": 2160,
                                  "sgst": 0,
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "UTI INFRASTRUCTURE TECHNOLOGY AND SERVICES LIMITED",
                                  "ttldocs": 1,
                                  "txval": 12000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCI0123E1YZ",
                                  "igst": 54,
                                  "sgst": 0,
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "ICICI PRUDENTIAL PENSION FUNDS MANAGEMENT COMPANY LIMITED",
                                  "ttldocs": 1,
                                  "txval": 300
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCR4123J1YZ",
                                  "igst": 8880.99,
                                  "sgst": 0,
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "RAZORPAY SOFTWARE PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 49338.8
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCR4123K1YZ",
                                  "igst": 1890,
                                  "sgst": 0,
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "RULEZERO TECHNOLOGY SOLUTIONS PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 10500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCR4123K1YZ",
                                  "igst": 403,
                                  "sgst": 0,
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "RZPX PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 2240
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCZ4123M2YZ",
                                  "igst": 1045.16,
                                  "sgst": 0,
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "ZOHO CORPORATION PRIVATE LIMITED",
                                  "ttldocs": 4,
                                  "txval": 5806.45
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCPH8123R1YZ",
                                  "igst": 288,
                                  "sgst": 0,
                                  "supfildt": "08-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "Diksha Bang & Co",
                                  "ttldocs": 1,
                                  "txval": 1600
                                }
                              ],
                              "b2ba": [
                                {
                                  "cess": 0,
                                  "cgst": -9.81,
                                  "ctin": "24ABCCR0123M1YZ",
                                  "igst": 0,
                                  "sgst": -9.81,
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": -108.94
                                }
                              ],
                              "cdnr": [
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCA9123A1YZ",
                                  "igst": 82786.26,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "AMAZON WEB SERVICES INDIA PRIVATE LIMITED",
                                  "ttldocs": 5,
                                  "txval": 459923.63
                                }
                              ]
                            },
                            "docdata": {
                              "b2b": [
                                {
                                  "ctin": "24ABCPD9123Q1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-12-2023",
                                      "inum": "23-24/126",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 175.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 175.5,
                                          "txval": 1950
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2301
                                    }
                                  ],
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "S N LAPTOP"
                                },
                                {
                                  "ctin": "24ABCPM7123B2YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-10-2023",
                                      "inum": "VPDL-331",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 80.2,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 80.2,
                                          "txval": 1336.62
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1497
                                    }
                                  ],
                                  "supfildt": "09-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "DYRROTH"
                                },
                                {
                                  "ctin": "27ABCCI0123E1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-12-2023",
                                      "inum": "NPS/1224/0088766",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 54,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 300
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 354
                                    }
                                  ],
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "ICICI PRUDENTIAL PENSION FUNDS MANAGEMENT COMPANY LIMITED"
                                },
                                {
                                  "ctin": "24ABCCB2123G1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-12-2023",
                                      "inum": "FBBL2424B29715",
                                      "irn": "x1k86ddx813eb4d1cab56c71027d971cbf0eeb1530e14fc31f996cd101d49842",
                                      "irngendate": "23-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 2700,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2700,
                                          "txval": 30000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 35400
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-12-2023",
                                      "inum": "HT2424I001454703",
                                      "irn": "x1k86ddx819f77a9bb8318a7931b1540e8f29052ee672f9525bcb10938d8e3e1",
                                      "irngendate": "12-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 359.91,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 359.91,
                                          "txval": 3999
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 4718.82
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-12-2023",
                                      "inum": "HT2424I001485717",
                                      "irn": "x1k86ddx81b3ceed1dbc3f1129ada8d1032de76a8e5d9232cc7ae75641369580",
                                      "irngendate": "18-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 359.91,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 359.91,
                                          "txval": 3999
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 4718.82
                                    }
                                  ],
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "BHARTI  AIRTEL LTD."
                                },
                                {
                                  "ctin": "33ABCCZ4123M2YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-12-2023",
                                      "inum": "102324229636",
                                      "irn": "x1k86ddx81c9eacb3701114023ed746e0e2c4f38a2a88a525b10467d94b379ee",
                                      "irngendate": "11-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 518.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2880
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 3398.4
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-12-2023",
                                      "inum": "102324230047",
                                      "irn": "x1k86ddx81b4128b0b6343c13b5dd21b2d3084f08f30d1a0f8389984fd2615b1",
                                      "irngendate": "11-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 432,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2832
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-12-2023",
                                      "inum": "102324243574",
                                      "irn": "x1k86ddx817ae1cebb53e68135e8d42c53e2d9792b8b7bd543f01ab0da203bc6",
                                      "irngendate": "26-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 50.17,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 278.71
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 328.88
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-12-2023",
                                      "inum": "102324245907",
                                      "irn": "x1k86ddx81b5bdd11a0876f41ae60132a0caa589b508aedf4dc86a7df8f16b17",
                                      "irngendate": "28-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 44.59,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 247.74
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 292.33
                                    }
                                  ],
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "ZOHO CORPORATION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06ABCCG0123D1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-12-2023",
                                      "inum": "4883379355",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2197.29,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 12207.14
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 14404.43
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-12-2023",
                                      "inum": "4884148871",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 24.64,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 136.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 161.54
                                    }
                                  ],
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "GOOGLE INDIA PVT LTD"
                                },
                                {
                                  "ctin": "27ABCCU4123C1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-12-2023",
                                      "inum": "PAN-V/27/424",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2160,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 12000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 14160
                                    }
                                  ],
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "UTI INFRASTRUCTURE TECHNOLOGY AND SERVICES LIMITED"
                                },
                                {
                                  "ctin": "24ABCPL3123J1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-10-2023",
                                      "inum": "76",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 450,
                                          "num": 1800,
                                          "rt": 18,
                                          "sgst": 450,
                                          "txval": 5000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "77",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 472.5,
                                          "num": 1800,
                                          "rt": 18,
                                          "sgst": 472.5,
                                          "txval": 5250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6195
                                    }
                                  ],
                                  "supfildt": "13-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "H R LAKHANI & ASSOCIATES"
                                },
                                {
                                  "ctin": "24ABCPK3123G1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-12-2023",
                                      "inum": "GIN0003609",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 35.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 35.1,
                                          "txval": 390
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 460
                                    }
                                  ],
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "S.SERVICE"
                                },
                                {
                                  "ctin": "29ABCCR4123J1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-12-2023",
                                      "inum": "4XCFPHNO3URQ1223",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 1496.86,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 8315.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12711.98
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-12-2023",
                                      "inum": "GSDKTASVXEXU1223",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 7384.13,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 41022.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 52865.55
                                    }
                                  ],
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "RAZORPAY SOFTWARE PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "36ABCPH8123R1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-12-2023",
                                      "inum": "08",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 288,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 1600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1887
                                    }
                                  ],
                                  "supfildt": "08-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "Diksha Bang & Co"
                                },
                                {
                                  "ctin": "27ABCCN2123N1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-12-2023",
                                      "inum": "OPV/997000175687",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3813.56,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 21186.44
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 25000
                                    }
                                  ],
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "Protean eGov Technologies Limited"
                                },
                                {
                                  "ctin": "24ABCCB2123P1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-12-2023",
                                      "inum": "GJI0611330220210",
                                      "irn": "x1k86ddx8104161d2a8006b1cafe7213ccaa4014120722fa5eb2d68854a04af8",
                                      "irngendate": "02-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 26.91,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 26.91,
                                          "txval": 299
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 352.82
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-12-2023",
                                      "inum": "GJI0611330353886",
                                      "irn": "x1k86ddx81487cf5110f295d37bdc8e4ce316455a9fc480004671ed20811f35c",
                                      "irngendate": "01-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 900,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 900,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 11800
                                    }
                                  ],
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "Vodafone Idea Limited"
                                },
                                {
                                  "ctin": "29ABCCR4123K1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-12-2023",
                                      "inum": "INV-000764",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 1890,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 10500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12390
                                    }
                                  ],
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "RULEZERO TECHNOLOGY SOLUTIONS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "29ABCCR4123K1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-12-2023",
                                      "inum": "141519",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 403,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 2240
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2643
                                    }
                                  ],
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "RZPX PRIVATE LIMITED"
                                }
                              ],
                              "b2ba": [
                                {
                                  "ctin": "24ABCCR0123M1YZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-10-2023",
                                      "inum": "RN1/FAMA-16557",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 0,
                                          "num": 1418,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 0.01
                                        }
                                      ],
                                      "oidt": "25-10-2023",
                                      "oinum": "RN1/FAMA-16557",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 0.01
                                    }
                                  ],
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED"
                                }
                              ],
                              "cdnr": [
                                {
                                  "ctin": "07ABCCA9123A1YZ",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-12-2023",
                                      "irn": "x1k86ddx81a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51",
                                      "irngendate": "13-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 561.05,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3116.94
                                        }
                                      ],
                                      "ntnum": "ACN2324000103340",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3677.99
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-12-2023",
                                      "irn": "x1k86ddx81eb8bbc314c0ef223d54402ebf09a4368735bb3bdc2159994de0543",
                                      "irngendate": "13-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 961.11,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 5339.48
                                        }
                                      ],
                                      "ntnum": "ACN2324000103368",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6300.59
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-12-2023",
                                      "irn": "x1k86ddx81a2b71831e89eba6742a7035660560559843936076fd0466cb6e2c2",
                                      "irngendate": "13-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 46380.95,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 257671.97
                                        }
                                      ],
                                      "ntnum": "ACN2324000103394",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 304052.92
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-12-2023",
                                      "irn": "x1k86ddx81fca1a9feeac080875d8fbcb0b2367c00b582c60485119a375ce80f",
                                      "irngendate": "13-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 17349.93,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 96388.48
                                        }
                                      ],
                                      "ntnum": "ACN2324000103426",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 113738.41
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-12-2023",
                                      "irn": "x1k86ddx81a50837c18b84b9cc52a5c6423b4afa05dcbf1454ef98aa88206d5d",
                                      "irngendate": "13-12-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 17533.22,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 97406.76
                                        }
                                      ],
                                      "ntnum": "ACN2324000103435",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 114939.98
                                    }
                                  ],
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "trdnm": "AMAZON WEB SERVICES INDIA PRIVATE LIMITED"
                                }
                              ]
                            },
                            "gendt": "14-01-2024",
                            "gstin": "29AAACQ3770E000",
                            "itcsumm": {
                              "itcavl": {
                                "nonrevsup": {
                                  "b2b": {
                                    "cess": 0,
                                    "cgst": 5560.03,
                                    "igst": 20756.64,
                                    "sgst": 5560.03
                                  },
                                  "b2ba": {
                                    "cess": 0,
                                    "cgst": -9.81,
                                    "igst": 0,
                                    "sgst": -9.81
                                  },
                                  "cess": 0,
                                  "cgst": 5550.22,
                                  "igst": 20756.64,
                                  "sgst": 5550.22
                                },
                                "othersup": {
                                  "cdnr": {
                                    "cess": 0,
                                    "cgst": 0,
                                    "igst": 82786.26,
                                    "sgst": 0
                                  },
                                  "cess": 0,
                                  "cgst": 0,
                                  "igst": 82786.26,
                                  "sgst": 0
                                }
                              }
                            },
                            "rtnprd": "122023",
                            "version": "1.0"
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "1b43849e-de28-4bba-a998-85c14c5ad7ee"
                    }
                  },
                  "200 Success page number 1": {
                    "summary": "200 Success page number 1",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "chksum": "baeb49893b8c483496c0e169c9532521a9f9b104cc612c706b10dd39f051b4e3",
                          "data": {
                            "docdata": {
                              "b2b": [
                                {
                                  "ctin": "06ABCCZ0123M1ZF",
                                  "inv": [
                                    {
                                      "cess": 0,
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "igst": 6629.91,
                                      "inum": "INV-BRHR123/23-24/009",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "txval": 36832.83,
                                      "typ": "R",
                                      "val": 43463
                                    },
                                    {
                                      "cess": 0,
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "igst": 864.52,
                                      "inum": "INV-BRHR123/23-24/010",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "txval": 4802.88,
                                      "typ": "R",
                                      "val": 5667
                                    },
                                    {
                                      "cess": 0,
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "igst": 2988.3,
                                      "inum": "INV-BRHR123/23-24/011",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "txval": 16601.68,
                                      "typ": "R",
                                      "val": 19590
                                    },
                                    {
                                      "cess": 0,
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "igst": 4777.76,
                                      "inum": "INV-BRHR123/23-24/013",
                                      "itcavl": "Y",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "txval": 26543.1,
                                      "typ": "R",
                                      "val": 31321
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Beardo"
                                }
                              ],
                              "cdnr": [
                                {
                                  "ctin": "07ABCCI0123B1Z4",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "igst": 193,
                                      "itcavl": "Y",
                                      "ntnum": "NTDL2232403AO16252123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "txval": 3868,
                                      "typ": "C",
                                      "val": 4061
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "igst": 193,
                                      "itcavl": "Y",
                                      "ntnum": "NTDL2232403AO17783123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "txval": 3868,
                                      "typ": "C",
                                      "val": 4061
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "igst": 205,
                                      "itcavl": "Y",
                                      "ntnum": "NTDL2232403AO22117123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "txval": 4106,
                                      "typ": "C",
                                      "val": 4311
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "igst": 61,
                                      "itcavl": "Y",
                                      "ntnum": "NTDL2232403AO22436123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "txval": 339,
                                      "typ": "C",
                                      "val": 4461
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "igst": 205,
                                      "itcavl": "Y",
                                      "ntnum": "NTDL2232403AO23770123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "txval": 4106,
                                      "typ": "C",
                                      "val": 4311
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "igst": 61,
                                      "itcavl": "Y",
                                      "ntnum": "NTDL2232403AO27386123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "txval": 339,
                                      "typ": "C",
                                      "val": 400
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "igst": 219,
                                      "itcavl": "Y",
                                      "ntnum": "NTDL2232403AO33604123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "txval": 4386,
                                      "typ": "C",
                                      "val": 4605
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Interglobe Aviation Limited"
                                },
                                {
                                  "ctin": "27ABCPL0123L2Z0",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-04-2023",
                                      "igst": 42.71,
                                      "itcavl": "Y",
                                      "ntnum": "NTAMD2123-5719",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "txval": 237.29,
                                      "typ": "C",
                                      "val": 280
                                    }
                                  ],
                                  "supfildt": "18-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "CRESCENT INC"
                                }
                              ]
                            },
                            "gstin": "29AAACQ3770E000",
                            "rtnprd": "032024",
                            "version": "1.0"
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "96492b63-9c03-4ce0-84a0-b7f5f0cc1f35"
                    }
                  },
                  "200 Success page number 1 (before Oct 2024)": {
                    "summary": "200 Success page number 1 (before Oct 2024)",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "chksum": "baeb49893b8c483496c0e169c9532521a9f9b104cc612c706b10dd39f051b4e3",
                          "data": {
                            "docdata": {
                              "b2b": [
                                {
                                  "ctin": "06ABCCZ0123M1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-BRHR123/23-24/009",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 6629.91,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 36832.83
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 43463
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-BRHR123/23-24/010",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 864.52,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 4802.88
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5667
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-BRHR123/23-24/011",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2988.3,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 16601.68
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 19590
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-BRHR123/23-24/012",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 49,
                                          "num": 501,
                                          "rt": 5,
                                          "txval": 980
                                        },
                                        {
                                          "cess": 0,
                                          "igst": 14.64,
                                          "num": 1201,
                                          "rt": 12,
                                          "txval": 122
                                        },
                                        {
                                          "cess": 0,
                                          "igst": 12374.47,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 68747.05
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 82287
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-BRHR123/23-24/013",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 4777.76,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 26543.1
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 31321
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Beardo"
                                },
                                {
                                  "ctin": "27ABCFL0123H1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-LC123-ZED-003",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 11052,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 61400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 72452
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LIFESTYLE CARE"
                                },
                                {
                                  "ctin": "24ABCLS0123E1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-02-2024",
                                      "inum": "INV-HFXV123/01158/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 293.67,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 293.67,
                                          "txval": 3263
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3851
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-02-2024",
                                      "inum": "INV-HFXV123/01166/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 155.25,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 155.25,
                                          "txval": 1725
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2035
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-02-2024",
                                      "inum": "INV-HVAC123/01260/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1053.36,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 1053.36,
                                          "txval": 11704
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13810
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-02-2024",
                                      "inum": "INV-HVAC123/01267/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 259.74,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 259.74,
                                          "txval": 2886
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3406
                                    }
                                  ],
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "SHREE EMPIRE STATE SHOP OFFICES & PREMISES CO OP  HSG SOC LIMITED"
                                },
                                {
                                  "ctin": "32ABCCR0123E1ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-321G1100005243123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 10800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 60000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 70800
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED"
                                },
                                {
                                  "ctin": "07ABCPA0123P1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-IN123-475",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 815.95,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 4533.05
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5349
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "NAKSH ENTERPRISES"
                                },
                                {
                                  "ctin": "36ABCPS0123D1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-565123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 25541.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 141895
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 167436
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-568123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4687.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 26040
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 30727
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-583123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 23400,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 130000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 153400
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PREETIS HOUSE OF PACKAGING"
                                },
                                {
                                  "ctin": "09ABCFH0123R1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-2023123-24/A-08",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 12322.44,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 68458
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 80780
                                    }
                                  ],
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "M/s HEALTIFYING INDIA"
                                },
                                {
                                  "ctin": "07ABCCS0123P1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-071L9B97Q0324001123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 236.35,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 4727
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5290.35
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCO0123E1Z3",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-2023123-24/10967",
                                      "irn": "abc12yhd3775a1a9dfde27b527a5fdbce41b1cdb056d2cbb69ba6c123abc6xyz",
                                      "irngendate": "17-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1620.97,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1620.97,
                                          "txval": 18010.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 21252.74
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OZONETEL COMMUNICATIONS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "33ABCCP0123Q1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-PS202403123-407",
                                      "irn": "abc12yhd37a146c993138b99010f68d46cad74b80ff56adc72c84e123abc6xyz",
                                      "irngendate": "26-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 13115.16,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 72862
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 85977
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PAULSONS BEAUTY AND FASHION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCFB0123A1ZW",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-2324123-02-00019",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 972,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 972,
                                          "txval": 10800
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12744
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-02-2024",
                                      "inum": "INV-2324123-02-00224",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13.5,
                                          "txval": 150
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 177
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-02-2024",
                                      "inum": "INV-2324123-02-00314",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 121.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 121.5,
                                          "txval": 1350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1593
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-02-2024",
                                      "inum": "INV-2324123-02-00315",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13.5,
                                          "txval": 150
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 177
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-02-2024",
                                      "inum": "INV-2324123-02-00316",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13.5,
                                          "txval": 150
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 177
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-02-2024",
                                      "inum": "INV-2324123-02-00317",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13.5,
                                          "txval": 150
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 177
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-2324123-02-00319",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13.5,
                                          "txval": 150
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 177
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-2324123-02-00320",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 189,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 189,
                                          "txval": 2100
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2478
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-02-2024",
                                      "inum": "INV-2324123-02-00434",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 27,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 27,
                                          "txval": 300
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 354
                                    }
                                  ],
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "BEST VOYAGE DOMESTIC LLP"
                                },
                                {
                                  "ctin": "24ABCPV0123J1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-25123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 9450,
                                          "num": 1800,
                                          "rt": 18,
                                          "sgst": 9450,
                                          "txval": 105000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 123900
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PRIME PACKMART"
                                },
                                {
                                  "ctin": "24ABCPC0123E1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-72123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5420.25,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5420.25,
                                          "txval": 60225
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 71066
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-73123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 415.8,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 415.8,
                                          "txval": 4620
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5452
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SONEE CREATION"
                                },
                                {
                                  "ctin": "27ABCCC0123L1ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-CM123/23-24/03/027",
                                      "irn": "abc12yhd3737da06273090633364fa6e03b151f839aff7ef273b60123abc6xyz",
                                      "irngendate": "06-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 50349.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 279720
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 330070
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CITIUS BPO (INDIA) PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "03ABCCI0123B1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-PB1232403AP03418123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 450,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 9013
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9463
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBAL AVATION LTD."
                                },
                                {
                                  "ctin": "33ABCCN0123P2ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-332412BP03AAB985123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 175,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3490
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4250
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED"
                                },
                                {
                                  "ctin": "33ABCCT0123F1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-I330000001973197123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 177,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3540
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3717
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA Airlines Limited"
                                },
                                {
                                  "ctin": "07ABCCR0123G1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-RIPL2023123-24/0949",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 71720.64,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 398448
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 470169
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-RIPL2023123-24/0976",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 29843.37,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 165796.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 195640
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "R I AYURVEDA RESEARCH LABS (A UNIT OF RAM LAL INDER LAL PVT. LTD.)"
                                },
                                {
                                  "ctin": "33ABCCP0123P1Z4",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-02-2024",
                                      "inum": "INV-24123/C016470",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 286.15,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 286.15,
                                          "txval": 4769.1
                                        }
                                      ],
                                      "pos": "33",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 5341.39
                                    }
                                  ],
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "PRIDE HOTELS LIMITED"
                                },
                                {
                                  "ctin": "24ABCFJ0123A1ZG",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-GST123/1563/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2506.32,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 2506.32,
                                          "txval": 27848
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 32861
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-GST123/1625/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 10764,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 10764,
                                          "txval": 119600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 141128
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "JAIN SOAP"
                                },
                                {
                                  "ctin": "27ABCCW0123P1ZH",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-2300074822496123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 71302.68,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 396126
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 467429
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "WELLNESS FOREVER MEDICARE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCU0123H1ZQ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-6900123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1395,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1395,
                                          "txval": 15500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 18290
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-6993123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 409.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 409.5,
                                          "txval": 4550
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5369
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-6994123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1638,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1638,
                                          "txval": 18200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 21476
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "inum": "INV-7030123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1854,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1854,
                                          "txval": 20600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 24308
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-7092123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 819,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 819,
                                          "txval": 9100
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 10738
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-7093123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1539,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1539,
                                          "txval": 17100
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 20178
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-7108123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 821.25,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 821.25,
                                          "txval": 9125
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 10768
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-03-2024",
                                      "inum": "INV-7207123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6441.75,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 6441.75,
                                          "txval": 71575
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 84459
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-03-2024",
                                      "inum": "INV-7208123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3118.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3118.5,
                                          "txval": 34650
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 40887
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-7517123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1282.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1282.5,
                                          "txval": 14250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 16815
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-7518123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5418,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5418,
                                          "txval": 60200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 71036
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "UNICK FIX A FORM AND PRINTERS LIMITED"
                                },
                                {
                                  "ctin": "06ABCCI0123H1Z2",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-ICW123/23-24/1893",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 5401.87,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 30010.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 35412.24
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ICUBESWIRE TECHNOLOGIES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "03ABCPM0123A1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-597123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 11025,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 220500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 231525
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MADAAN ENTERPRISES"
                                },
                                {
                                  "ctin": "27ABCPS0123L1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-D123-189",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 50.45,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 280.26
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 331
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "T.K. ENTERPRISES"
                                },
                                {
                                  "ctin": "18ABCHS0123P1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-AR123/23-24/2545",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 91.8,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 91.8,
                                          "txval": 1530
                                        }
                                      ],
                                      "pos": "18",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1714
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-AR123/23-24/2552",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 91.77,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 91.77,
                                          "txval": 1529.46
                                        }
                                      ],
                                      "pos": "18",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1713
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "inum": "INV-AR123/23-24/2561",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 91.77,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 91.77,
                                          "txval": 1529.52
                                        }
                                      ],
                                      "pos": "18",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1713
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-AR123/23-24/2565",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 91.77,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 91.77,
                                          "txval": 1529.46
                                        }
                                      ],
                                      "pos": "18",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1713
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ADITYA RESIDENCY"
                                },
                                {
                                  "ctin": "27ABCPK0123B1ZW",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-BB123/2851/23-24",
                                      "irn": "abc12yhd37c69251aefa73a1b7ef9d06c0cd4916a9a07d1ea4da4f123abc6xyz",
                                      "irngendate": "30-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 11800
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BEAUTY BAZAAR"
                                },
                                {
                                  "ctin": "24ABCPB0123D1ZX",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-ORION2324123/03267",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1683.75,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 1683.75,
                                          "txval": 67350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 70718
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-ORION2324123/03312",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 687.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 687.5,
                                          "txval": 27500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 28875
                                    }
                                  ],
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ORION INC."
                                },
                                {
                                  "ctin": "33ABCCA0123G1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-SI23TN0018501636123",
                                      "irn": "abc12yhd376b6ac71b092b56df89e7cc0744496d723768371b93e3123abc6xyz",
                                      "irngendate": "20-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2754,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 15300
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 18054
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ALLSEC TECHNOLOGIES LTD"
                                },
                                {
                                  "ctin": "07ABCFS0123N1ZX",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-SYS123/23-24/3316",
                                      "irn": "abc12yhd37f5247358cab91a1d991d1c7c287dada2dd1dea50ceab123abc6xyz",
                                      "irngendate": "19-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1631.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 9066
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 10698
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-SYS123/23-24/3397",
                                      "irn": "abc12yhd37b52430903342b56bf449e97654bf18ac1fb65c91a0a7123abc6xyz",
                                      "irngendate": "28-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 10802.16,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 60012
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 70814
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SYSCOM PACKAGING COMPANY"
                                },
                                {
                                  "ctin": "24ABCFA0123E1ZR",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-TI123-5320/23-24",
                                      "irn": "abc12yhd37f41110eddba21287f5083b468f6c6ce216f2397af647123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2970,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2970,
                                          "txval": 33000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 38940
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMBA MULTIPRINT"
                                },
                                {
                                  "ctin": "23ABCPK0123P1Z1",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-09-2023",
                                      "inum": "INV-996123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 900,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5900
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Khandelwal Agency"
                                },
                                {
                                  "ctin": "24ABCPP0123G1ZI",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-555123/2023/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3095.19,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 3095.19,
                                          "txval": 34391
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 40581
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARUTI CORPORATION"
                                },
                                {
                                  "ctin": "06ABCCR0123J1ZI",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20230600016475123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 147.23,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 817.95
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 965.18
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED"
                                },
                                {
                                  "ctin": "24ABCFP0123D2ZG",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-PAP123/2023-24/419",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 720,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 720,
                                          "txval": 8000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9440
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-PAP123/2023-24/437",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3825,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 3825,
                                          "txval": 42500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50150
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-PAP123/2023-24/441",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2250,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 2250,
                                          "txval": 25000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 29500
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "P A PAREKH AND CO"
                                },
                                {
                                  "ctin": "06ABCCS0123H1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-240303001201123",
                                      "irn": "abc12yhd37269cf8727841b8d2b45fa0baed83d3e91d081ab606d5123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 94.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 525
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 620
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-240303001205123",
                                      "irn": "abc12yhd37b38bb837d745033a59275355ab7685f5410ff8584b50123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 94.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 525
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 620
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-243103011077123",
                                      "irn": "abc12yhd377dd1f89d8116b80ae198dbdeb1381ef56ce903ab817a123abc6xyz",
                                      "irngendate": "16-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4072.76,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 22626.46
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 26699
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-243103020203123",
                                      "irn": "abc12yhd37238be2889b92e0acdeae794a3a2d9bf8046e1c3db907123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 8675.48,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 48197.11
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 56873
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-243103022676123",
                                      "irn": "abc12yhd37193bbf5f558354000994ecef555405c2c267174c7a43123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 874.13,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4856.25
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 5730
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-243103022677123",
                                      "irn": "abc12yhd374579e4ed00d945ad35066641d4da8b8a6e5251d1ae23123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 465.51,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2586.15
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 3052
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-243103022678123",
                                      "irn": "abc12yhd376cf11ff1873b278a64238070ee5461594d2f7d1ea745123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3398.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 18882.68
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 22282
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-243103022679123",
                                      "irn": "abc12yhd3732f9667aa8f484084f117a9c80625a8ca8ab75935b3b123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4238.51,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 23547.3
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 27786
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-243103022681123",
                                      "irn": "abc12yhd379f5da7abe95c8523151b2d86d80b1818cee6419cefd7123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 742.3,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4123.88
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 4866
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-243103022742123",
                                      "irn": "abc12yhd3771bb5e6c658ba7ba95f4a3ccfa875990842286722292123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 71799.78,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 398887.68
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 470687
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SAFEXPRESS PRIVATE LTD."
                                },
                                {
                                  "ctin": "03ABCCT0123F5ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-I030000001994174123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 475,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 9500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9975
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LTD"
                                },
                                {
                                  "ctin": "01ABCPN0123Q1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-GST123-1893",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1080,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7080
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Satvik Enterprises"
                                },
                                {
                                  "ctin": "33ABCPV0123K1ZS",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-292123/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1260,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 7000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8260
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-293123/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1800,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SUPER MARKETING"
                                },
                                {
                                  "ctin": "36ABCCR0123J1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20233600009973123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1529.82,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 8499
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 10028.82
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20233600010000123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 5400,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 30000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 35400
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED"
                                },
                                {
                                  "ctin": "29ABCCV0123N1ZW",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-01-2024",
                                      "inum": "INV-VP123-IND-1005367",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 9.15,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 50.85
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 60
                                    }
                                  ],
                                  "supfildt": "26-03-2024",
                                  "supprd": "012024",
                                  "trdnm": "VOLOPAY INDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "37ABCCR0123J1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20233700009103123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2554.77,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 14193.05
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 16747.82
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20233700009129123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 7920,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 44000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 51920
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED"
                                },
                                {
                                  "ctin": "29ABCCV0123F1ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-VL123/MAR071/23-24",
                                      "irn": "abc12yhd376cccaf2f163fa2f4e6e8970b6060d37637e79db05448123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 817.74,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4543
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 5361
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VALUELEAF SERVICES INDIA PVT LTD"
                                },
                                {
                                  "ctin": "06ABCPG0123E2ZS",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-BO123-HR/23-24/1748",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 41172.71,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 228737.25
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 269910
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BO INTERNATIONAL"
                                },
                                {
                                  "ctin": "07ABCCA0123Q1ZM",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-AIPL123/23-24/1405",
                                      "irn": "abc12yhd370c6cbcf9aa43a253a8cd20e18e4869eff55fe7e8ac41123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 155430,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 863500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1018930
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMITOJE INDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCS0123L1ZO",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-CPA123-196611",
                                      "irn": "abc12yhd370fc514951ce8845083357db3d4a575910e81c61d3c13123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 375,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 375,
                                          "txval": 6250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-CPA123-196612",
                                      "irn": "abc12yhd37fa6c63d871929682c0a438f6ab49b4bda6b3a74e9ad0123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 375,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 375,
                                          "txval": 6250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-CPA123-196620",
                                      "irn": "abc12yhd379b5613642bade9109943229b8176f9073fcb9c969500123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 375,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 375,
                                          "txval": 6250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-CPA123-196630",
                                      "irn": "abc12yhd37e24c24bb3da11dc731725f89cf0b10a410af65d8ed8e123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 31.41,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 31.41,
                                          "txval": 349
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 411.82
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-CPA123-196631",
                                      "irn": "abc12yhd3792e93aed74cdf49e00a63877e1734c8d79d8d1bc529c123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 345,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 345,
                                          "txval": 5750
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 6440
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SHIVA SATYA HOTELS PVT.LTD"
                                },
                                {
                                  "ctin": "07ABCCR0123A1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-01-2024",
                                      "inum": "INV-2158123/PROS",
                                      "irn": "abc12yhd3704e1fff86ca73c66084d5082c668c3de43c2b57e6174123abc6xyz",
                                      "irngendate": "22-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 216,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2451
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-01-2024",
                                      "inum": "INV-2227123/LIT",
                                      "irn": "abc12yhd377ce9112f3d5cc5333848c299cdc6a4e9d08f44a37a47123abc6xyz",
                                      "irngendate": "22-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 6840,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 38000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 46209
                                    }
                                  ],
                                  "supfildt": "01-04-2024",
                                  "supprd": "012024",
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited"
                                },
                                {
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-MUM2324B15436123",
                                      "irn": "abc12yhd377e2bb862394660a43f1832f74b04b934836ca699ba97123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 72000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 400000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 400000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-MUM2324B17661123",
                                      "irn": "abc12yhd3706fb00faa604935210782a67e42c9e7fa599ee7bdb63123abc6xyz",
                                      "irngendate": "02-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 63000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 350000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 350000
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KHAITAN AND CO"
                                },
                                {
                                  "ctin": "07ABCPK0123J1ZX",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-GST123/0465",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 6196.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 34425
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 40621.5
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HIPPO HITECH DIGITAL PRINT SOLUTIONS"
                                },
                                {
                                  "ctin": "24ABCPS0123G1ZW",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-1036123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1516.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1516.5,
                                          "txval": 16850
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 19883
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-1091123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1516.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1516.5,
                                          "txval": 16850
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 19883
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ADARSH ENTERPRISE"
                                },
                                {
                                  "ctin": "32ABCCA0123B1ZP",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-321FQ0324123/AAA255",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 155,
                                          "num": 254,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3100
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3810
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ALLIANCE AIR AVIATION LIMITED"
                                },
                                {
                                  "ctin": "29ABCCQ0123A2ZI",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-MJMKAI2400008968123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1261.26,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 7007
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8268.26
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-MJMKAI2400008972123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 11194.74,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 62193
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 73387.74
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-MJMKAI2400008984123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 11031.84,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 61288
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 72319.84
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-MJMKAI2400008987123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 8991,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 49950
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 58941
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-MJMKAI2400008992123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 15960.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 88670
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 104630.6
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-VJKAIN24123-029475",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 77.31,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 429.51
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 506.82
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-VJKAIN24123-029655",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 43.16,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 239.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 282.91
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MYNTRA JABONG INDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "09ABCCZ0123M1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-BRUP123/23-24/031",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 649.98,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 3611
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4261
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ZED LIFESTYLE PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06ABCCG0123E1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-HR230211767123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 24450.48,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 135836
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 160286.48
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BLINK COMMERCE PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCPP0123D1Z7",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-TPS123/2023-24/1769",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 11.25,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 11.25,
                                          "txval": 125
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 148
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-TPS123/2023-24/1783",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 14.85,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 14.85,
                                          "txval": 165
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 195
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-TPS123/2023-24/1811",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 325.35,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 325.35,
                                          "txval": 3615
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4266
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-03-2024",
                                      "inum": "INV-TPS123/2023-24/1854",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 343.8,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 343.8,
                                          "txval": 3820
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4508
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-TPS123/2023-24/1925",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 247.68,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 247.68,
                                          "txval": 2752
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3247
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Think Printz Solutions"
                                },
                                {
                                  "ctin": "24ABCCI0123F1Z2",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-24123/0008503",
                                      "irn": "abc12yhd37da1b92d894d63c14c85ba62ede0e7113b3ed05ae2e59123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 156.05,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 156.05,
                                          "txval": 2600.91
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2913.01
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-24123/0008504",
                                      "irn": "abc12yhd37a8c9a05e8eba02462645101ac38de84d56e63bdc3f33123abc6xyz",
                                      "irngendate": "03-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 20.63,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 20.63,
                                          "txval": 825
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 866.26
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LORDS ISHWAR HOTELS LIMITED"
                                },
                                {
                                  "ctin": "24ABCFH0123Q1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-02-2024",
                                      "inum": "INV-HPPTI123/8",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 1050.57,
                                          "num": 1800,
                                          "rt": 18,
                                          "sgst": 1050.57,
                                          "txval": 11673
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13774
                                    }
                                  ],
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "HP E-TECH"
                                },
                                {
                                  "ctin": "09ABCPS0123E1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-LBD0563123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-LBD0564123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1260,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 7000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8260
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-LBD0585123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-LBD0586123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1260,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 7000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8260
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S  LAKSHYA AGENCIES"
                                },
                                {
                                  "ctin": "07ABCCR0123A1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-12-2023",
                                      "inum": "INV-2023123/PROS",
                                      "irn": "abc12yhd37d47ea72721966d5bf0e83c8a85948d10eab41165d37c123abc6xyz",
                                      "irngendate": "19-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 216,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2501
                                    }
                                  ],
                                  "supfildt": "29-03-2024",
                                  "supprd": "122023",
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited"
                                },
                                {
                                  "ctin": "06ABCCP0123P1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-PP123/23-24/1904",
                                      "irn": "abc12yhd3740b56543f5efa12da750eb7ef277914f48a1c7f6ecd2123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 5129.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 28496.21
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 33626
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-PP123/23-24/1920",
                                      "irn": "abc12yhd37897d9d77234e3142845ac028eb3f3939b458ff2041ed123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4969.73,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 27609.61
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 32579
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-PP123/BK/23-24/0816",
                                      "irn": "abc12yhd37a04e27e59e5931b29834f1c9b847d231d491aa6b58f6123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 207.61,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1153.39
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1361
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-PP123/BK/23-24/0864",
                                      "irn": "abc12yhd37c2d6dc213e0ff9236d308650963dcd49e653039bd6ee123abc6xyz",
                                      "irngendate": "06-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 38.59,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 214.41
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 253
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Pouring Pounds India Private Limited"
                                },
                                {
                                  "ctin": "19ABCCZ0123M1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-BRWB123/23-24/014",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 6370.3,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 35390.58
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 41761
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-BRWB123/23-24/015",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 248.55,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 1380.82
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1629
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-BRWB123/23-24/016",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2528.94,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 14049.69
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 16579
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-BRWB123/23-24/017",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2615.62,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 14531.23
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 17147
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-BRWB123/23-24/018",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 58.56,
                                          "num": 1201,
                                          "rt": 12,
                                          "txval": 488
                                        },
                                        {
                                          "cess": 0,
                                          "igst": 19227.92,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 106821.76
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 126596
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BEARDO"
                                },
                                {
                                  "ctin": "06ABCCD0123G2ZM",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-DL123/23-24/03/207",
                                      "irn": "abc12yhd37d05fa0bd0b90d0cd3ad3fa1f22582482b491d346d6e6123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 787.86,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4377
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 5164.86
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DATALOGY DIGITAL PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCFS0123M1ZI",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-T123/9766",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 162,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 162,
                                          "txval": 2700
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 39.6,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 39.6,
                                          "txval": 440
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3543
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SHREE  MAHAVEER  STATIONERY MART"
                                },
                                {
                                  "ctin": "07ABCCR0123E1ZR",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-A71G1100005386123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7920,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 44000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 51920
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Reliance Retail Limited"
                                },
                                {
                                  "ctin": "09ABCCL0123N1ZW",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-1070626770123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 9000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 50000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 59000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-1070627645123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3192.12,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 17734
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 20926.12
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-1070628980123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 180,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1180
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S LULU INDIA SHOPPING MALL PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCPS0123C1Z3",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-SG123-962",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2520,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 14000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 16520
                                    }
                                  ],
                                  "supfildt": "20-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "R R Beauty World Thane"
                                },
                                {
                                  "ctin": "09ABCFH0123R1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-2023123-24/A-09",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 13125.06,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 72917
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 86042
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/s HEALTIFYING INDIA"
                                },
                                {
                                  "ctin": "24ABCCI0123B1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH75762123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 207,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 207,
                                          "txval": 8276
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8690
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH76295123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 130.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 130.5,
                                          "txval": 5223
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5484
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH76412123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 161,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 161,
                                          "txval": 6448
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6770
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH77771123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 12,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 12,
                                          "txval": 475
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 499
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH78016123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 12,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 12,
                                          "txval": 475
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 499
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH78411123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 24,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 24,
                                          "txval": 950
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 998
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH79501123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 140.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 140.5,
                                          "txval": 5636
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5917
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH80319123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 161,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 161,
                                          "txval": 6448
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6770
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH80448123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 71.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 71.5,
                                          "txval": 2857
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH81244123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 119,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 119,
                                          "txval": 4775
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5013
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH81984123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 71.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 71.5,
                                          "txval": 2857
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH83396123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 289,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 289,
                                          "txval": 11556
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12134
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH83559123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 136.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 136.5,
                                          "txval": 5458
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 30.5,
                                          "igst": 0,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 30.5,
                                          "txval": 339
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6131
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH83756123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 139.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 139.5,
                                          "txval": 5597
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5876
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH84491123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 173,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 173,
                                          "txval": 6923
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7269
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH85070123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 238,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 238,
                                          "txval": 9550
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 10026
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-GJ1232403BH85413123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 65.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 65.5,
                                          "txval": 2619
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2750
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-GJ1232403BH86528123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 161,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 161,
                                          "txval": 6448
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6770
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-GJ1232403BH91463123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 161,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 161,
                                          "txval": 6448
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6770
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-GJ1232403BH98658123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 172.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 172.5,
                                          "txval": 6906
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7251
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-GJ1232403BI02125123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 3.5,
                                          "txval": 143
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 150
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-GJ1232403BI13093123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 160,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 160,
                                          "txval": 6389
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6709
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-GJ1232403BI16997123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 103.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 103.5,
                                          "txval": 4138
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4345
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "inum": "INV-GJ1232403BI62291123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 3,
                                          "txval": 119
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 125
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-GJ1232403BI95958123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 2.5,
                                          "txval": 100
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 105
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-GJ1232403BJ05007123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 6,
                                          "txval": 233
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 245
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-GJ1232403BJ11078123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 8.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 8.5,
                                          "txval": 333
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 350
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-GJ1232403BJ24347123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 457.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 457.5,
                                          "txval": 18303
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 30.5,
                                          "igst": 0,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 30.5,
                                          "txval": 339
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 19618
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-GJ1232403BK43816123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 62,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 62,
                                          "txval": 2473
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2597
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "32ABCCI0123B1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-KL1232403AX94758123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 400,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 7989
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8389
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "06ABCCR0123E1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-A61G1100008372123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1980,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 11000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12980
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LTD."
                                },
                                {
                                  "ctin": "08ABCPD0123M1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-BE123/4251",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 27090,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 150500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 177590
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BHAVYA ENTERPRISES"
                                },
                                {
                                  "ctin": "07ABCCV0123Q1ZK",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-2023123-24/698/VG",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 8820,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 49000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 57820
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-2023123-24/756/VG",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 18264.6,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 101470
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 119735
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-2023123-24/757/VG",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 4860,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 27000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 31860
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-2023123-24/758/VG",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 11700,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 65000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 76700
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VELVET GROOMING PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "inum": "INV-MHIN2023123-31124",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 409475.88,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 2274866
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2684342
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KAY KAY OVERSEAS CORPORATION"
                                },
                                {
                                  "ctin": "18ABCCS0123M1ZQ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-SO123/CC/23-24/834",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2522.34,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 14013
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 16535
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SATI OIL UDYOG LTD"
                                },
                                {
                                  "ctin": "03ABCPK0123M1Z5",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-RAP123-2023-24-3323",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1332,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 7400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8732
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RAJ AGENCIES"
                                },
                                {
                                  "ctin": "27ABCPM0123A1ZX",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-2023123-24-089",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 12600,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 70000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 82600
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Akanksha Mota & Co"
                                },
                                {
                                  "ctin": "27ABCFC0123B1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-12123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 21320.06,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 118444.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 139675
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-14123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 21320.06,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 118444.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 139675
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CLARA INTERNATIONAL LLP"
                                },
                                {
                                  "ctin": "27ABCPK0123P2ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-BEARDO123-01",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 10800,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 60000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 70800
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S IP CRIME VIGILANCE"
                                },
                                {
                                  "ctin": "24ABCCC0123N1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20232400002617123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 223.51,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 223.51,
                                          "txval": 2483.3
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2930.32
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20232400002633123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 900,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 900,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CESC LIMITED"
                                },
                                {
                                  "ctin": "06ABCCF0123Q1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-FDPL123/23-24/3497",
                                      "irn": "abc12yhd37ea9c8c91c4de5ed67fb6bb81a5c45ec26b4552313d24123abc6xyz",
                                      "irngendate": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 14400,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 80000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 94400
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLAMINGO DIGITAL PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCR0123E1ZP",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-RR27H76L5SD0295123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 346.15,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1922.93
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2269.08
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-RR27H76L5SD0296123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 806.93,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4482.83
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5289.76
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-RR27H76L5SD0297123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 446.9,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2482.74
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2929.64
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-RR27H76L5SD0298123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 531.73,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2953.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3485.63
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-RR27H76L5SD0299123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 740.04,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4111.23
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4851.27
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-RR27H76L5SD0300123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 464.94,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2582.92
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3047.86
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-RR27H76L5SD0301123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 300.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1668.41
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1968.73
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-RR27H76L5SD0302123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 226.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1257.74
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1484.14
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-RR27H76L5SD0303123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 192.59,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1069.91
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1262.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "inum": "INV-RR27H76L5SD0304123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 169.59,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 942.09
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1111.68
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-RR27H76L5SD0305123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 157.07,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 872.58
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1029.65
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-RR27H76L5SD0306123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 237.18,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1317.62
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1554.8
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-RR27H76L5SD0307123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 118.14,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 656.34
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 774.48
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-RR27H76L5SD0308123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 162.29,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 901.54
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1063.83
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-RR27H76L5SD0309123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 136.02,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 755.61
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 891.63
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-RR27H76L5SD0310123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 119.99,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 666.52
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 786.51
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-03-2024",
                                      "inum": "INV-RR27H76L5SD0311123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 149.62,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 831.18
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 980.8
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-RR27H76L5SD0312123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 15.79,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 87.74
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 103.53
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-RR27H76L5SD0313123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 148.11,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 822.72
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 970.83
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-RR27H76L5SD0314123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 104.19,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 578.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 682.99
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-RR27H76L5SD0315123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 69.25,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 384.68
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 453.93
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-RR27H76L5SD0316123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 149.55,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 830.82
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 980.37
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-RR27H76L5SD0317123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 95.37,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 529.86
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 625.23
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "24-03-2024",
                                      "inum": "INV-RR27H76L5SD0318123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 223.3,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1240.47
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1463.77
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "inum": "INV-RR27H76L5SD0319123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 85.39,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 474.3
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 559.69
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-RR27H76L5SD0320123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 133.95,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 744.14
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 878.09
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-RR27H76L5SD0321123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 60.14,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 334.06
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 394.2
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-RR27H76L5SD0322123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 149.28,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 829.28
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 978.56
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-RR27H76L5SD0323123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 116.98,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 649.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 766.78
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-RR27H76L5SD0324123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 123.54,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 686.3
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 809.84
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED"
                                },
                                {
                                  "ctin": "19ABCPC0123F1ZO",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-YE123/194/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1170,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 6500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7670
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "YASHI ENTERPRISE"
                                },
                                {
                                  "ctin": "29ABCCL0123H1ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-1039068567123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 9000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 50000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 59000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LULU INTERNATIONAL SHOPPING MALLS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06ABCCF0123G1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-2380408333123",
                                      "irn": "abc12yhd37971edbea4eb231fcf84a2983865d6962139b0459bd2d123abc6xyz",
                                      "irngendate": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 596533.22,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3314073.48
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 3910606.7
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FACEBOOK INDIA ONLINE SERVICES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "07ABCCG0123C1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-INV123-004444",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 15465.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 85920
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 101386
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "GOEXCELSIOR PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "20ABCFS0123H1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-MADHJH123/23/7124",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 35.55,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 35.55,
                                          "txval": 395
                                        }
                                      ],
                                      "pos": "20",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 467
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-MADHJH123/23/7125",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 152.2,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 152.2,
                                          "txval": 2536.7
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 5.46,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 5.46,
                                          "txval": 60.62
                                        }
                                      ],
                                      "pos": "20",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 2913
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SURAMA HOSPITALITY"
                                },
                                {
                                  "ctin": "27ABCPG0123Q1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-01-2024",
                                      "inum": "INV-INV2023123-24/0716",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1350,
                                          "num": 1800,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 7500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8850
                                    }
                                  ],
                                  "supfildt": "19-03-2024",
                                  "supprd": "012024",
                                  "trdnm": "A A Garg & co"
                                },
                                {
                                  "ctin": "24ABCCI0123G1ZP",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-C24E232400246362123",
                                      "irn": "abc12yhd372ac7b956d018c6a1b499d852ffd10a21a160b3c5a7d9123abc6xyz",
                                      "irngendate": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 268.65,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 268.65,
                                          "txval": 2985
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 3522.3
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-C24E232400249638123",
                                      "irn": "abc12yhd37d727ba75a577d569a85eaec26c41165059a3642a5655123abc6xyz",
                                      "irngendate": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 126.06,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 126.06,
                                          "txval": 1400.7
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1652.82
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Reliance Jio Infocomm  Limited"
                                },
                                {
                                  "ctin": "24ABCFC0123D1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-0313123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1232.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1232.6,
                                          "txval": 13695.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 16161
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-0314123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1021.79,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1021.79,
                                          "txval": 11353.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13397
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-0315123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7047,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7047,
                                          "txval": 78300
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 92394
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-0316123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 139.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 139.1,
                                          "txval": 1545.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1824
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-0317123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 291.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 291.6,
                                          "txval": 3240
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3823
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-0318123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3037.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3037.5,
                                          "txval": 33750
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 39825
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-0319123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3229.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3229.2,
                                          "txval": 35880
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 42338.4
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-0320123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 191.7,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 191.7,
                                          "txval": 2130
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2513
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-0321123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3105,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3105,
                                          "txval": 34500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 40710
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-0323123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2295,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2295,
                                          "txval": 25500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 30090
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-0325123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 9901.44,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 9901.44,
                                          "txval": 110016
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 129819
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-0327123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1034.21,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1034.21,
                                          "txval": 11491.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13560
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-0330123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 754.52,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 754.52,
                                          "txval": 8383.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9893
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-0331123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2569.91,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2569.91,
                                          "txval": 28554.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 33694
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-0333123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 9157.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 9157.5,
                                          "txval": 101750
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 120065
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-0334123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 534.8,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 534.8,
                                          "txval": 5942.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7012
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CALISTTA HEALTHCARE"
                                },
                                {
                                  "ctin": "24ABCCS0123B1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-GST123-2324-1341",
                                      "irn": "abc12yhd37300d1b8cf6e61463444445da11b0b157ab860dcaea04123abc6xyz",
                                      "irngendate": "27-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7517.81,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7517.81,
                                          "txval": 83531.25
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 98666
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VIVA PACK PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCT0123C1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-GJ021NCTG001552123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 503.74,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 503.74,
                                          "txval": 5597.09
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 1576.64,
                                          "num": 2,
                                          "rt": 28,
                                          "sgst": 1576.64,
                                          "txval": 11261.7
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 21020
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-GJ021NCTS001552123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 742.77,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 742.77,
                                          "txval": 8253
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9739
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TORQUE COMMERCIAL VEHICLES PRIVATE LTD"
                                },
                                {
                                  "ctin": "27ABCPS0123F1Z5",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-2023123-24/199",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 57232.08,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 317956
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 375188
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RIGHT WRITING ENTERPRISES / HEET EXPORTS"
                                },
                                {
                                  "ctin": "06ABCCR0123N1ZK",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-RPPL123/1103/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 88665.7,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 492587.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 581253
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-RPPL123/1105/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 44077,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 244872.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 288949
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-RPPL123/1106/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 29025.95,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 161255.25
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 190281
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-RPPL123/1123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 18660.1,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 103667.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 122327
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-RPPL123/1141/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 29143.3,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 161907.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 191050
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-RPPL123/1161/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 26024.98,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 144583.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 170608
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Ryder Propack Private limited"
                                },
                                {
                                  "ctin": "24ABCCL0123Q1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-2385123/23-24",
                                      "irn": "abc12yhd3721a9c696973b2f52f24b0dc7c6e8ffb7bb83e2e09e88123abc6xyz",
                                      "irngendate": "26-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3842.64,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3842.64,
                                          "txval": 42696
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 50381
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LETRA GRAPHIX PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "29ABCCB0123D1ZQ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-240318AL3P290429123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 54000,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 300000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 354000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Swiggy"
                                },
                                {
                                  "ctin": "26ABCCR0123B1ZM",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-DAD123-6105",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 24796.89,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 137760.48
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 162557
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-DAD123-6106",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 37685.09,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 209361.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 247047
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-DAD123-6438",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 38440.08,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 213556
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 251996
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RADCOM PACKAGING PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCM0123G1Z7",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003205123",
                                      "irn": "abc12yhd3700746624aa0ca9c62bef93b678980b86fcdfeec6d133123abc6xyz",
                                      "irngendate": "02-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 11606.64,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 64481.36
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 76088
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003211123",
                                      "irn": "abc12yhd3791442502e9c9112c8932a613cfdc7c44da45b36ae9de123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 57.66,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 320.34
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 378
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003212123",
                                      "irn": "abc12yhd37a33317f56607b1dd96af2ef013c3a31b8d17bddd6fc4123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2057.34,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 11429.66
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 13487
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003215123",
                                      "irn": "abc12yhd37208a59e58a3c3860b4a59ec9cd9f0900a1571049d469123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1167.56,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6486.44
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7654
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003216123",
                                      "irn": "abc12yhd37abc196a37d456f8a12f6e400e24378dd12404e354147123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 302.64,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1681.36
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1984
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003217123",
                                      "irn": "abc12yhd3777d8899536aeffc5ac6fc2add0d54e6446c9434d8cce123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 54.76,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 304.24
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 359
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003218123",
                                      "irn": "abc12yhd378cf76a82b85afe02db52878d057f08f288c85eb8e1d6123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1923.87,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10688.13
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 12612
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003219123",
                                      "irn": "abc12yhd370e9b5068bd423df9e7eb206e118fe6f1166b587027a7123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 23982.87,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 133238.13
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 157221
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003220123",
                                      "irn": "abc12yhd377800b18df5ec0478c9beaf91617994ed0039f2898cec123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 3720.97,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 20672.03
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 24393
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003221123",
                                      "irn": "abc12yhd37a4eeecc44b76805b7615b15367904fef507e26d8a9be123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 289.22,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1606.78
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1896
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003222123",
                                      "irn": "abc12yhd37e82db382c8760e86623616fb04c178e1003eece1acee123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 378.46,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2102.54
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2481
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003223123",
                                      "irn": "abc12yhd37155f068fa78ee0f25be1c9d7cf684bed9e70ce2ee4f4123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 126,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 700
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 826
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003224123",
                                      "irn": "abc12yhd372bdd046c237712d7ef478734695c258029ae38605dee123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 58.58,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 325.42
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 384
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003225123",
                                      "irn": "abc12yhd37b86b97719f96c67d34111770a2cb4d61d93f8f084196123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 23238.15,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 129100.85
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 152339
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003226123",
                                      "irn": "abc12yhd3746dafa190d7fc155f992dbd222c617c3b76d13b073af123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 22158.3,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 123101.7
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 145260
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003227123",
                                      "irn": "abc12yhd37411eca41cb41b8ae0df6a1ccd60630dffc1cc7acad4c123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 28159.78,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 156443.22
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 184603
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003228123",
                                      "irn": "abc12yhd373269751f23f5c7b125c22665cc4f7ad43ef05d92ce4a123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 66832.48,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 371291.52
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 438124
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003229123",
                                      "irn": "abc12yhd37c786eabf5c523d36f15b1ee74d0c8f613d12427d8f9e123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 10756.07,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 59755.93
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 70512
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003230123",
                                      "irn": "abc12yhd37db5cdf0ecbbea8fb4958f172aea85132423dbdac060e123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 17829,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 99050
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 116879
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003231123",
                                      "irn": "abc12yhd37b9750d80b0a5590411f4f9f97422f44a23c2f2e92071123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 18667.68,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 103709.32
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 122377
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003232123",
                                      "irn": "abc12yhd378a3b0d68c2fe1acd3c0c51557c5dc9363aee4cf7e148123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 20002.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 111127.12
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 131130
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003233123",
                                      "irn": "abc12yhd375e86ac69e233a3b89426522461c07e992f5235007b25123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 63388.22,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 352156.78
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 415545
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003234123",
                                      "irn": "abc12yhd37b35321865fcdc44e8ef41e00d117a6f0a990852bb7fe123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 106829.85,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 593499.15
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 700329
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003235123",
                                      "irn": "abc12yhd3774dd43ee64049792bc1c730d67e722fb4c5ef2700d35123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 112.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 627.12
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 740
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003236123",
                                      "irn": "abc12yhd3721639c895ff4696b0d595bc9cb8b06a8fc38ab2164dd123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 99.61,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 553.39
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 653
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003237123",
                                      "irn": "abc12yhd376d159624829e3205bece4970ba536ab3832a1503aae8123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 207.46,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1152.54
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1360
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003242123",
                                      "irn": "abc12yhd376439a51c700409b20380ce5b56c0363e4589d642831a123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 366.41,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2035.59
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2402
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003243123",
                                      "irn": "abc12yhd377ee1223da6b95770173b484f190c4812a36a5b1e79dc123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 10631.75,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 59065.25
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 69697
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003244123",
                                      "irn": "abc12yhd377fd9f720b58b6557536e768e2ddabacf29111a49c46f123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 32668.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 181490.68
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 214159
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003245123",
                                      "irn": "abc12yhd37e15407a7aaf430899e03d94e461399a2984b974cd460123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 3529.37,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 19607.63
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 23137
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003246123",
                                      "irn": "abc12yhd378b267af4cb8fec68431802deac6e5398a02fb2ad7d91123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 8475.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 47083.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 55559
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003247123",
                                      "irn": "abc12yhd370dc893d2f7ca15c1228da1426b34d597a90938825b4b123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 9714.05,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 53966.95
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 63681
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003248123",
                                      "irn": "abc12yhd375138ad7a560584b10c371cec358f735671355adada3f123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 10291.58,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 57175.42
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 67467
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003249123",
                                      "irn": "abc12yhd37eb8d27ee125a87480eb75f98a17037b042f076d80b7d123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 24649.48,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 136941.52
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 161591
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003250123",
                                      "irn": "abc12yhd37961299392897220963ddb950fecad823f6bda6229d4e123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 124050.97,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 689172.03
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 813223
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003251123",
                                      "irn": "abc12yhd37c4f1a8c7cf18d1864b524068a8afc9bfe2c073168796123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 23963.8,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 133132.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 157096
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003252123",
                                      "irn": "abc12yhd37c57c6c78f60f7a37644656f1930ae80e71402e924c18123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1789.78,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 9943.22
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 11733
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003253123",
                                      "irn": "abc12yhd373b77dbac6c65e9a5fd91baf1bc4e87eed790121302e0123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2102.19,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 11678.81
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 13781
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003254123",
                                      "irn": "abc12yhd37a41dffb1c52ecb57d86684f347d080df795e5f3424d5123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 700.02,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3888.98
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 4589
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003255123",
                                      "irn": "abc12yhd372f7415713930f4f5f61c6b1c987f315057fb7129c987123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1713.81,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 9521.19
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 11235
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003256123",
                                      "irn": "abc12yhd37a1e0d72154d636128154d6ee8b634d7c37a0e91995fc123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 16299,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 90550
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 106849
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003257123",
                                      "irn": "abc12yhd374d912d327e1dcbcede3ba4ee74efa4a2e081184accd2123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 12730.27,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 70723.73
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 83454
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003258123",
                                      "irn": "abc12yhd3730c5704b3f50c63cfb0c173e51b7ba572b0753ab3d7f123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 49783.42,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 276574.58
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 326358
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003259123",
                                      "irn": "abc12yhd374f3046c8733441e4b550717ef8324781302c412af291123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 22886.09,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 127144.91
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 150031
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003260123",
                                      "irn": "abc12yhd378e967a34d3734ee3063975c102f41c964c58885344ff123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 52003.68,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 288909.32
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 340913
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003261123",
                                      "irn": "abc12yhd37fa67eff49eb6a8343cdf0c2fc1512ce6f49b7d6b10a9123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15385.73,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 85476.27
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 100862
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003262123",
                                      "irn": "abc12yhd378157c151fafd5f2e0fe07183a021179435c56f8e8702123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2430.61,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 13503.39
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 15934
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003263123",
                                      "irn": "abc12yhd37e1990d4e6a0c78d700b1bcc91ca6871a45a0bb6d1055123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 112098.97,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 622772.03
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 734871
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003264123",
                                      "irn": "abc12yhd3701fb378ea1ec84651b4bb490986d786cbaa1fe7da8e8123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 5.34,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 29.66
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 35
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003265123",
                                      "irn": "abc12yhd37850c7d34d78c830005af2ca5e5abe8b747a3278f7a90123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 41710.58,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 231725.42
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 273436
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003266123",
                                      "irn": "abc12yhd3706bec7695b2db59d9deb1587f9433fdc9b2e8f0d2595123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2925.3,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 16251.7
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 19177
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003267123",
                                      "irn": "abc12yhd379a89c96b9a6b3e7fcae82782f0b32a69f196404a78d1123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2429.7,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 13498.3
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 15928
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003268123",
                                      "irn": "abc12yhd378d33bf39605ef43b9cfc55647f54f4e0d19a1bfebb0d123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 151.63,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 842.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 994
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003269123",
                                      "irn": "abc12yhd376817fbf41f7062dbacd2f846a58af9543f07dcb63a7e123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7011.15,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 38950.85
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 45962
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003270123",
                                      "irn": "abc12yhd37c9cb1c286c67837963ec2d8ca4221820fcf0b692f993123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 4095.91,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 22755.09
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 26851
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003271123",
                                      "irn": "abc12yhd37dac67a0d24ce3a0af0bc1c54492ddd33ee90fbb6b441123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7602.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42233.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 49836
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003272123",
                                      "irn": "abc12yhd37525d40155591ff2284fac400bef38ff69b233bd74914123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 24.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 133.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 158
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-DD0270003273123",
                                      "irn": "abc12yhd3786f242169e5de9db2763ee6a1c2c48f4f04870b21bcb123abc6xyz",
                                      "irngendate": "05-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2.44,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 13.56
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 16
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED"
                                },
                                {
                                  "ctin": "07ABCPN0123G1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-A013789123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 15480,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 86000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 101480
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "UNITED ENTERPRISES"
                                },
                                {
                                  "ctin": "27ABCPM0123L1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-24576123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 1800,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SUNNY ENTERPRISES"
                                },
                                {
                                  "ctin": "19ABCCR0123J1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20231900016801123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 14337.77,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 79653.85
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 93991.62
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20231900016843123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 43380,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 241000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 284380
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED"
                                },
                                {
                                  "ctin": "21ABCFA0123L2Z6",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-1710123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 214.69,
                                          "num": 1200,
                                          "rt": 12,
                                          "txval": 1789.1
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2003.79
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ASP GROUP"
                                },
                                {
                                  "ctin": "24ABCCT0123F6Z5",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-I240000001376404123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 150,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 150,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6300
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-I240000001377889123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 104,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 104,
                                          "txval": 4160
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4368
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LTD"
                                },
                                {
                                  "ctin": "32ABCFO0123G1ZJ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-1274123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 585.45,
                                          "num": 1,
                                          "rt": 12,
                                          "txval": 4878.72
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5464.17
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Orchid suits cochin"
                                },
                                {
                                  "ctin": "29ABCCV0123N1ZW",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-02-2024",
                                      "inum": "INV-VP123-IND-1005643",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 18.3,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 101.69
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 120
                                    }
                                  ],
                                  "supfildt": "26-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "VOLOPAY INDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "07ABCPC0123L1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-01-2024",
                                      "inum": "INV-97738123/OPP",
                                      "irn": "abc12yhd3759a403fb85c1d5196bcfaedbe79a731bbc3b97460104123abc6xyz",
                                      "irngendate": "22-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 0,
                                          "sgst": 0,
                                          "txval": 16000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 18560
                                    }
                                  ],
                                  "supfildt": "02-04-2024",
                                  "supprd": "012024",
                                  "trdnm": "Rahul Chaudhry & Partners"
                                },
                                {
                                  "ctin": "24ABCCN0123P1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-242412BP03AAE358123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 559,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 559,
                                          "txval": 22350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 25061
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED"
                                },
                                {
                                  "ctin": "24ABCPS0123A2Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-0748123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 22641.11,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 22641.11,
                                          "txval": 251567.84
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 296850
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-0754123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5319.92,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5319.92,
                                          "txval": 59110.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 69750
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MG VIP LOUNGE"
                                },
                                {
                                  "ctin": "27ABCPP0123Q1Z4",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-595123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 51871.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 288174
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 340045.32
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-602123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 14260.7,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 79226
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 93486.7
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TECHNO ENTERPRISE"
                                },
                                {
                                  "ctin": "09ABCCR0123F1Z6",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-1000271123",
                                      "irn": "abc12yhd37637c165af027d70a2704f77d30664675b69e34d43447123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 648000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3600000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 4248000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RISE APPLIANCES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06ABCCG0123D1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-4947856797123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 310259.21,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 1723662.26
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2033921.47
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "GOOGLE INDIA PVT LTD"
                                },
                                {
                                  "ctin": "20ABCFO0123P1Z0",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-OAM23123-24GMO298",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 8124.01,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 45133.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 53257.41
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OCTAADS MEDIA"
                                },
                                {
                                  "ctin": "24ABCCR0123K1ZR",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-RPMG123/720/23-24",
                                      "irn": "abc12yhd375817e209d3d9859abef60c681b703bfc7c7a698c2a86123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 41175,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 41175,
                                          "txval": 457500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 539850
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-RPMG123/721/23-24",
                                      "irn": "abc12yhd37b4fb83690cfc6a4c7e54420a0f6008b0ef7d0d64f19f123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 11025,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 11025,
                                          "txval": 122500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 144550
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-RPMG123/722/23-24",
                                      "irn": "abc12yhd37a5ce202c667a27916c3ded115de7889132c2a4fcb956123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4050,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4050,
                                          "txval": 45000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 53100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-RPMG123/745/23-24",
                                      "irn": "abc12yhd374cfec928334cdf932074add17771e1278cf8b7d942a8123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 54199.71,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 54199.71,
                                          "txval": 602219
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 710618
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-RPMG123/746/23-24",
                                      "irn": "abc12yhd375c9329a7ec5cb8e6273c51c77ee35b9a22b882743cdb123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7209,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7209,
                                          "txval": 80100
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 94518
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-RPMG123/752/23-24",
                                      "irn": "abc12yhd37f6afaeb06bb15ac0fc0f6d4c3468bf58dc07502baa02123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3035.7,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3035.7,
                                          "txval": 33730
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 39801
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-RPMG123/779/23-24",
                                      "irn": "abc12yhd379f46d0127fbe8e40736fd70c9968cd3eb253506f98cb123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13090.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13090.5,
                                          "txval": 145450
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 171631
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-RPMG123/785/23-24",
                                      "irn": "abc12yhd373f5a528db7fc2ca9aaa139cdea7d223a979470b9ef70123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 8235,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 8235,
                                          "txval": 91500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 107970
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-RPMG123/792/23-24",
                                      "irn": "abc12yhd379a4ae8aa662bc430e486f1f4bf5221d5805f09ce931e123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 11025,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 11025,
                                          "txval": 122500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 144550
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-RPMG123/793/23-24",
                                      "irn": "abc12yhd373e5e0e2d49af1a05baec93938282fbc0d880190c8c47123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4050,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4050,
                                          "txval": 45000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 53100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-RPMG123/794/23-24",
                                      "irn": "abc12yhd37bfdd11bb7d4300888085ee70dbd25f58d759f1e1b6fa123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 58421.43,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 58421.43,
                                          "txval": 649127
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 765970
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-RPMG123/795/23-24",
                                      "irn": "abc12yhd374779074704768685819534259b4dfc3a9d4ee6745086123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6291,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 6291,
                                          "txval": 69900
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 82482
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-RPMG123/825/23-24",
                                      "irn": "abc12yhd378857778f7d1f4fd24d351503eaf703c0ce36c50d58c3123abc6xyz",
                                      "irngendate": "08-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4393.44,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4393.44,
                                          "txval": 48816
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 57603
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RPM LOGISTICS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCFW0123G1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-BD123-00980",
                                      "irn": "abc12yhd37f4c3c076da54b4fd373fe8b0ddb0847b2bb788566a07123abc6xyz",
                                      "irngendate": "30-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7920,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 44000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 51920
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "WHITE BOX"
                                },
                                {
                                  "ctin": "09ABCCR0123J1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20230900016737123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 3676.59,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 20425.35
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 24101.94
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20230900016738123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 32.74,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 181.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 214.64
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20230900016791123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 13500,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 75000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 88500
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED"
                                },
                                {
                                  "ctin": "33ABCCT0123J1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-TN123/2143/2023-24",
                                      "irn": "abc12yhd3700d0184a12053289e45ccba91b1e50f47ae6512cb573123abc6xyz",
                                      "irngendate": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1071672.12,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 5953734
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7025406
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-TN123/2257/2023-24",
                                      "irn": "abc12yhd37e2e018e85d5aa8f134bd32028e23b61da2ac564190c6123abc6xyz",
                                      "irngendate": "30-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1130664.42,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6281469
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7412133
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "3 POINT HUMAN CAPITAL PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "20ABCPS0123L1Z3",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-744123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cgst": 215.89,
                                          "num": 1200,
                                          "rt": 12,
                                          "sgst": 215.89,
                                          "txval": 3598.2
                                        }
                                      ],
                                      "pos": "20",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 4030
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-02-2024",
                                      "inum": "INV-747123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cgst": 107.93,
                                          "num": 1200,
                                          "rt": 12,
                                          "sgst": 107.93,
                                          "txval": 1798.86
                                        }
                                      ],
                                      "pos": "20",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 2014.72
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-02-2024",
                                      "inum": "INV-1143123/RMF",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cgst": 13.25,
                                          "num": 500,
                                          "rt": 5,
                                          "sgst": 13.25,
                                          "txval": 530
                                        }
                                      ],
                                      "pos": "20",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 557
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-1151123/RMF",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cgst": 0.5,
                                          "num": 500,
                                          "rt": 5,
                                          "sgst": 0.5,
                                          "txval": 20
                                        }
                                      ],
                                      "pos": "20",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 21
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-1152123/RMF",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cgst": 1.25,
                                          "num": 500,
                                          "rt": 5,
                                          "sgst": 1.25,
                                          "txval": 50
                                        }
                                      ],
                                      "pos": "20",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 53
                                    }
                                  ],
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "HOTEL THE CASTLE"
                                },
                                {
                                  "ctin": "27ABCCZ0123M1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-BRMH123/23-24/005",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 7589.2,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 42162.21
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 49751
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-BRMH123/23-24/006",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 11090.4,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 61613.35
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 72704
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-BRMH123/23-24/007",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 211.11,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 1172.83
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1384
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Zed Lifestyle Private Limited"
                                },
                                {
                                  "ctin": "36ABCCM0123D1ZJ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-INV123-MM-ZB-000185",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4500,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 29500
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MAPLEMONK PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "09ABCPK0123N1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-GST123/MAR/485",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 2430,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 13500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 15930
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-GST123/MAR/486",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 1830.51,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 10169.52
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12000
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S G. S. ENTERPRISES"
                                },
                                {
                                  "ctin": "06ABCCV0123B1ZK",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-VCIN123/23-24/2179",
                                      "irn": "abc12yhd378684f9b109c6ab88a322653fdcff50769009e1f8ef95123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3312.38,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 18402.11
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 21714.49
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "vCommission Media Private Limited"
                                },
                                {
                                  "ctin": "06ABCCS0123R1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-HR123/06/457",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 56084.58,
                                          "num": 209251,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 311581
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 367665.58
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-HR123/06/466",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 68528.34,
                                          "num": 209259,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 380713
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 449241.34
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-HR123/06/535",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 56455.74,
                                          "num": 209318,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 313643
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 370098.74
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-HR123/06/545",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 34481.16,
                                          "num": 209322,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 191562
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 226043.16
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SUPERWELL COMTRADE PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCO0123H1ZM",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-OCA2324123-10812",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 21512.7,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 119515
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 141028
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OCEAN GATE CONTAINER TERMINALS PVT LTD"
                                },
                                {
                                  "ctin": "33ABCCM0123G1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-5031602590123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 41038.62,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 227992.32
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 269030.94
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-5031602636123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 149904.95,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 832805.28
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 982710.23
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-5031602703123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 43603.53,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 242241.84
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 285845.37
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED"
                                },
                                {
                                  "ctin": "05ABCFH0123A1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-02-2024",
                                      "inum": "INV-PS123/23-24/5580",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 180,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 180,
                                          "txval": 3000
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 3360
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-02-2024",
                                      "inum": "INV-PS123/23-24/5581",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 180,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 180,
                                          "txval": 3000
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 3360
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-02-2024",
                                      "inum": "INV-PS123/23-24/5582",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6.25,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 6.25,
                                          "txval": 250
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 262.5
                                    }
                                  ],
                                  "supfildt": "23-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "HOTEL PARAS GRAND"
                                },
                                {
                                  "ctin": "27ABCCM0123P1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-MM123/A324/03/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3389.63,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 18831
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 22220.93
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MOBLIGENT MEDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCPB0123P1ZH",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-23123-24/4/DISP-561",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2700,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 15000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 17700
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BEAUTY PALACE"
                                },
                                {
                                  "ctin": "06ABCCI0123R1ZH",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-ING123/23-24/612",
                                      "irn": "abc12yhd378532f5773dcc22d12ff1477b80b689e33903d22bbae4123abc6xyz",
                                      "irngendate": "22-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 28800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 160000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 188800
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INGENIOUS APPLIANCES & PACKAGING PVT LTD"
                                },
                                {
                                  "ctin": "24ABCCB0123L1ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-2024324R00005846123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 457.17,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 457.17,
                                          "txval": 5079.63
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5993.97
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-2024324R00005847123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 277.31,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 277.31,
                                          "txval": 3081.24
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3635.86
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-2024324R00005877123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 59492.76,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 59492.76,
                                          "txval": 661030.64
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 780016.16
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-2024324R00005900123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 23930.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 23930.88,
                                          "txval": 265898.66
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 313760.42
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-240324DHN00004123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 113.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 113.4,
                                          "txval": 1260
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1486.8
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-24324S000066123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 584.54,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 584.54,
                                          "txval": 6494.92
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7664
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BLUE DART EXPRESS LIMITED"
                                },
                                {
                                  "ctin": "09ABCCP0123K1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-INV092403044675123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7080
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-INV092403044676123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 504,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2800
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3304
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-INV092403170683123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 51.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 288.21
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 340
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-INV092403242482123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 5.51,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 30.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 36
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S PINE LABS PVT LTD"
                                },
                                {
                                  "ctin": "27ABCCL0123P1ZR",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-LIPL123/2135/23-24",
                                      "irn": "abc12yhd3715deba650d18be33a32cad616010d8b9aca47d0a9b07123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 5940,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 33000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 38940
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LETTERSHOP INDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "29ABCPC0123H1Z2",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-INV123-3329",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 7200,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 40000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 47200
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-INV123-3519",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 7200,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 40000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 47200
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Suresh Marketing"
                                },
                                {
                                  "ctin": "24ABCPB0123C1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-77123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1080,
                                          "txval": 12000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 14160
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MEHAR EVENT"
                                },
                                {
                                  "ctin": "24ABCPV0123F1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-56123/TDC/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 6750,
                                          "num": 1800,
                                          "rt": 18,
                                          "sgst": 6750,
                                          "txval": 75000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 88500
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "The Drum Circle"
                                },
                                {
                                  "ctin": "37ABCFH0123A1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-27234123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 375,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 375,
                                          "txval": 6250
                                        }
                                      ],
                                      "pos": "37",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 7000
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL KALINGA ENTERPRISES"
                                },
                                {
                                  "ctin": "06ABCCM0123J1Z6",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-02-2024",
                                      "inum": "INV-MBT123/ILN/24/00854",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 28800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 160000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 188800
                                    }
                                  ],
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "Mensa Brand Technologies Private Limited"
                                },
                                {
                                  "ctin": "20ABCCR0123J1ZS",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20232000004492123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 104.19,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 578.85
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 683.04
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED"
                                },
                                {
                                  "ctin": "24ABCPL0123J1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-984123",
                                      "irn": "abc12yhd37800baaf417f2fa18839584b449db20fefbd5a8fd22eb123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 9576,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 9576,
                                          "txval": 106400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 125552
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "K MANOHAR THE BAG MART"
                                },
                                {
                                  "ctin": "27ABCFS0123P1Z0",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-ST2300005123",
                                      "irn": "abc12yhd37b48893bb845c3d5c7694ac8831ae33502f332633e42f123abc6xyz",
                                      "irngendate": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7080
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SAMRUDDHI ENTERPRISES"
                                },
                                {
                                  "ctin": "24ABCPP0123J1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-23BE123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 900,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 900,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-24BE123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 900,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 900,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Velvet Cosmetics"
                                },
                                {
                                  "ctin": "27ABCPY0123N2ZJ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-01-2024",
                                      "inum": "INV-232123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 2646.35,
                                          "num": 500,
                                          "rt": 5,
                                          "txval": 52927
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 52927
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-01-2024",
                                      "inum": "INV-232A123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 4680,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 26000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 30680
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-01-2024",
                                      "inum": "INV-232B123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 2450,
                                          "num": 500,
                                          "rt": 5,
                                          "txval": 49000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 49000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-01-2024",
                                      "inum": "INV-233123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 3508.9,
                                          "num": 500,
                                          "rt": 5,
                                          "txval": 70178
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 70178
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-01-2024",
                                      "inum": "INV-233A123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 5040,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 28000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 33040
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-01-2024",
                                      "inum": "INV-233B123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 2450,
                                          "num": 500,
                                          "rt": 5,
                                          "txval": 49000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 49000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-246123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 1848,
                                          "num": 500,
                                          "rt": 5,
                                          "txval": 36960
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 36960
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-246A123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 4320,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 24000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 28320
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-246B123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 2200,
                                          "num": 500,
                                          "rt": 5,
                                          "txval": 44000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 44000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-247B123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 2450,
                                          "num": 500,
                                          "rt": 5,
                                          "txval": 49000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 49000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-248123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 0,
                                          "txval": 163343
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 163343
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-248A123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 5040,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 28000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 33040
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ANSH ENTERPRISES"
                                },
                                {
                                  "ctin": "24ABCCF0123K1ZN",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-FKRGJ25000001700123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 170.33,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 170.33,
                                          "txval": 1892.52
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2233.17
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06ABCCH0123B1ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-23123-24/CM04450",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 5901.48,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 32786.02
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 38687.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-23123-24/CM05177",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4900.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 27222.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 32122.9
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Hippo Innovations Private Limited"
                                },
                                {
                                  "ctin": "27ABCCS0123M1Z5",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-N2324123/000049165",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 0.39,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2.15
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2.54
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "EASEBUZZ PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCT0123Q1Z2",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-GU23I00001171081123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 11246.54,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 11246.54,
                                          "txval": 124961.57
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 147454.65
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA AIG GENERAL INSURANCE COMPANY LIMITED"
                                },
                                {
                                  "ctin": "27ABCCS0123P1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-271H918FD0324001123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 217.95,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 4359
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4930.95
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-271OB3ZYA0324001123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 456.2,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 9124
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9934.2
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-03-2024",
                                      "inum": "INV-271TYWF2N0324001123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 102.2,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 2044
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2500.2
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCPG0123Q1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-02-2024",
                                      "inum": "INV-INV2023123-24/0782",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1350,
                                          "num": 1800,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 7500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8850
                                    }
                                  ],
                                  "supfildt": "03-04-2024",
                                  "supprd": "022024",
                                  "trdnm": "A A Garg & co"
                                },
                                {
                                  "ctin": "19ABCPS0123Q1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-1239123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 2430,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 13500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 15930
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LOKENATH MARKETING"
                                },
                                {
                                  "ctin": "23ABCCI0123B1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-MP1232403AS05111123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 622,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 12412
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13034
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "33ABCPB0123F1Z5",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-RV123/389/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 9920.16,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 55112
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 65032
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-RV123/390/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 8278.92,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 45994
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 54273
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-RV123/391/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 11696.22,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 64979
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 76675
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-RV123/392/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 9472.86,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 52627
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 62100
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RICH VENTURES"
                                },
                                {
                                  "ctin": "06ABCPD0123C1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-BD123/23-24/0013A",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5900
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DHINGRA ASSOCIATES"
                                },
                                {
                                  "ctin": "09ABCPB0123E1Z0",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-GST123/23-24/970",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5900
                                    }
                                  ],
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "M/S BHATIA & SONS"
                                },
                                {
                                  "ctin": "24ABCPP0123D1ZS",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-BE123/00547",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1620,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1620,
                                          "txval": 18000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 21240
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RIYANSH ENTERPRISE"
                                },
                                {
                                  "ctin": "19ABCPD0123K1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-NE123/23-24/2972",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2070,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 11500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13570
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-NE123/23-24/3177",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2700,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 15000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 17700
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "NUTIX ENTERPRISE"
                                },
                                {
                                  "ctin": "09ABCCV0123H1ZW",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-VF32324123/GIS01096",
                                      "irn": "abc12yhd37ccec4af1958deaed552782b102bbb9864db4b57b8fd0123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7057.94,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 39210.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 46269
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-VF32324123/GIS01097",
                                      "irn": "abc12yhd3794e54c67f3da0de66ea70e4b329060f52cfd7f007e00123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 74564.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 414245
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 488809
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-VF32324123/GIS01098",
                                      "irn": "abc12yhd377af558795dfe330b72141ef974f686302ee9b3ea92e9123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 986.58,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 5481
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 6468
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-VF32324123/GIS01120",
                                      "irn": "abc12yhd37c91c9eb960e590158776e39eaa9fbcf76525e113afdd123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 68629.68,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 381276
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 449906
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-VF32324123/GIS01121",
                                      "irn": "abc12yhd3772ec6d85b454b7d031fdaf9d3e89d9c54d7ab8498f8e123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 73.08,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 406
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 479
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-VF32324123/GIS01135",
                                      "irn": "abc12yhd37b080ae5635cd347c2ddcc554bbcb26d1994fe4638239123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 20941.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 116340
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 137281
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-VF32324123/GIS01189",
                                      "irn": "abc12yhd371e7325fd857a64263a7bc9869ffe00b63a833f18dc5b123abc6xyz",
                                      "irngendate": "30-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 24675.84,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 137088
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 161764
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S VEDIC COSMECEUTICALS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCL0123N1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-204202852902007123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 88.56,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 88.56,
                                          "txval": 984
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1161.12
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-204202852902009123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 107.91,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 107.91,
                                          "txval": 1199
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1414.82
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED"
                                },
                                {
                                  "ctin": "24ABCFK0123D3ZN",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-GJIN2023123-1844",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5902.06,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 5902.06,
                                          "txval": 65578.44
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 77383
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KAY KAY OVERSEAS CORPORATION"
                                },
                                {
                                  "ctin": "27ABCCV0123G1Z5",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-CG2023G0723123",
                                      "irn": "abc12yhd37498e3078010fd67864043541e6f740f8f84851ba74e9123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 40640.84,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 225782.47
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 266423
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VIHAAN WEB SOLUTIONS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "21ABCPP0123C1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-2023123-24/016",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 13131.36,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 72952
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 86084
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FASHLAB RETAILZ"
                                },
                                {
                                  "ctin": "07ABCCR0123A1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-2427123/PROS",
                                      "irn": "abc12yhd378d96bdd9a4e84a29768008f086c22fa275684810ed69123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 288,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2924
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-2482123/LIT",
                                      "irn": "abc12yhd37ab2957fdc60f5922068d4e33ffb966ca2afebadb8bd5123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 3600,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 20000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 25430
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-2530123/OPP",
                                      "irn": "abc12yhd37b455804d505406ac30ca9e8d0f4ea1e30b4a2610bdc4123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2880,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 16000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 21540
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-2531123/OPP",
                                      "irn": "abc12yhd373605b283a74c3db5be0d377a9c1ad95f611c76c4b631123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14890
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "022024",
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited"
                                },
                                {
                                  "ctin": "29ABCFS0123A1ZO",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-SBP123/430",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 5184,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 28800
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 33984
                                    }
                                  ],
                                  "supfildt": "02-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "STERLING BOX & PACKS"
                                },
                                {
                                  "ctin": "06ABCCF0123Q1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-FM24123-03-14",
                                      "irn": "abc12yhd37ac7143b5203ffaef6850a0cba94386594fcac18e9c30123abc6xyz",
                                      "irngendate": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 29615.39,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 164529.95
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 194145.34
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FILLY MEDIA SOLUTIONS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCR0123A1ZP",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-RVCJ123/23-24/2662",
                                      "irn": "abc12yhd37695eb9be3e7d27e0fa0d931ad204bf6faba4d1bf917d123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 72000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 400000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 472000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-RVCJ123/23-24/2708",
                                      "irn": "abc12yhd37a50552950b3a744c8595c961f3d8a9a2068a599c99df123abc6xyz",
                                      "irngendate": "20-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 72000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 400000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 472000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RVCJ DIGITAL MEDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCO0123G1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-MHDI123/02083/23-24",
                                      "irn": "abc12yhd37c65682e41f5768954edb4cb0db2dd268bb062f445bea123abc6xyz",
                                      "irngendate": "27-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 32400,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 180000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 212400
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OML ENTERTAINMENT PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "19ABCFS0123G1ZN",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-01-2024",
                                      "inum": "INV-SE00110123",
                                      "irn": "abc12yhd3792bf96e43add34759188eec3bf83615aded8ff90deb6123abc6xyz",
                                      "irngendate": "07-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2160,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 12000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14160
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-SE00118123",
                                      "irn": "abc12yhd3782390c05c31846318d589a05e400a9ed7fa56cde9e25123abc6xyz",
                                      "irngendate": "19-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2160,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 12000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14160
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-SE00119123",
                                      "irn": "abc12yhd3729c0bcb50d44ce398bb7853c0e764903590cec1d19b4123abc6xyz",
                                      "irngendate": "19-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1440,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 8000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 9440
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SIDDHI VINAYAK"
                                },
                                {
                                  "ctin": "24ABCFA0123E1ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-AP123/0404/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1404,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1404,
                                          "txval": 15600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 18408
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-AP123/0405/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4284,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4284,
                                          "txval": 47600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 56168
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-AP123/0429/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4891.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4891.5,
                                          "txval": 54350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 64133
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-AP123/0431/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5036.85,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5036.85,
                                          "txval": 55965
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 66039
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-AP123/0437/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6224.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 6224.4,
                                          "txval": 69160
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 81609
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-AP123/0439/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1784.48,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1784.48,
                                          "txval": 19827.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 23396
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-AP123/0440/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2989.8,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2989.8,
                                          "txval": 33220
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 39200
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AEGIS PACKAGING"
                                },
                                {
                                  "ctin": "29ABCCD0123Q1ZS",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-CRED123/ADT23/2505",
                                      "irn": "abc12yhd377946cf070a24d08fff25a4e1d32c6646de34037a2c36123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 21990.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 122170
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 144160.6
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-CRED123/ADT23/2650",
                                      "irn": "abc12yhd372beea4ca796cf879eb967a1742380c2c97fe18658a1f123abc6xyz",
                                      "irngendate": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 22842.27,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 126901.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 149743.77
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-CRED123/MAR24/440",
                                      "irn": "abc12yhd378207fd0b94788f5a276a4cc9d175f417650077cb69ad123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4940.45,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 27446.92
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 32387.37
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "inum": "INV-CRED123/MAR24/1332",
                                      "irn": "abc12yhd37108e926bc8005c930cf9403e906c032f051d9e063c6a123abc6xyz",
                                      "irngendate": "26-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3698.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 20545.56
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 24243.76
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-CRED123/MAR24/2231",
                                      "irn": "abc12yhd373739fef3ff91ea158f4eea337a71c4954f9c553ce35f123abc6xyz",
                                      "irngendate": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2713.35,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 15074.15
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 17787.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-CRED123/SH23/34521",
                                      "irn": "abc12yhd371eb217951753053e3db8d1f582c58eec89aab29e6475123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 38861.09,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 215894.92
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 254756.01
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-CRED123/SH23/35135",
                                      "irn": "abc12yhd37b488447cefb002bc529ee569e213786794499e897f51123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1965.66,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10920.34
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 12886
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "inum": "INV-CRED123/SH23/35789",
                                      "irn": "abc12yhd37cde3c2be8fce7771a95e20f8ce6e017658dd1966c80c123abc6xyz",
                                      "irngendate": "26-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 18118.83,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 100660.17
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 118779
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "inum": "INV-CRED123/SH23/36368",
                                      "irn": "abc12yhd373ca255c3b8581f04a2a3e57d7f6423a665f0539f1531123abc6xyz",
                                      "irngendate": "26-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1616.19,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 8978.81
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 10595
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-CRED123/SH23/36967",
                                      "irn": "abc12yhd3737ad0de23f6124ec6561f1b10fadf20e07eb83ef4257123abc6xyz",
                                      "irngendate": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 48771.91,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 270955.08
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 319726.99
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-CRED123/SH23/37468",
                                      "irn": "abc12yhd37ec168e880705db1b7aa947258d95391d668101edcca6123abc6xyz",
                                      "irngendate": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2387.29,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 13262.71
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 15650
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-CRED123/WIN23/798",
                                      "irn": "abc12yhd3735a23be5a87512d3a14d3140201c779d608e35e467f3123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 180000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1000000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1180000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DREAMPLUG TECHNOLOGIES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "37ABCCI0123B1Z1",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-AD1232403AP08731123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 336,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 6724
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7060
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-AD1232403AP89132123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 407,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 8152
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8559
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "07ABCCI0123L1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-DL123/2324/MAR/068",
                                      "irn": "abc12yhd37e864754263b93777daccc291cd1dafdb9d753d6725b9123abc6xyz",
                                      "irngendate": "28-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 87910.39,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 488391.08
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 576301.47
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CODOGNOTTO LOGISTICS INDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCS0123P1ZI",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-241GY319N0324001123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 65.55,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 65.55,
                                          "txval": 2622
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3284.1
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-241MCF38H0324001123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 132.6,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 132.6,
                                          "txval": 5304
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6100.2
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "22ABCPL0123Q1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-3053123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 4320,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 24000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 28320
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LAXMI TRADING"
                                },
                                {
                                  "ctin": "27ABCPM0123K1ZX",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "inum": "INV-689123",
                                      "irn": "abc12yhd37874ce99a50d67d028974d71f9c17a7d1d754d6af616d123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 50155.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 278640
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 328795
                                    }
                                  ],
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DEV ENTERPRISE"
                                },
                                {
                                  "ctin": "33ABCFG0123R1ZP",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-6564123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cgst": 480,
                                          "num": 1200,
                                          "rt": 12,
                                          "sgst": 480,
                                          "txval": 8000
                                        }
                                      ],
                                      "pos": "33",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 8960
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "GREENS GATE"
                                },
                                {
                                  "ctin": "09ABCCO0123A1Z3",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-7783318500123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 63,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 413
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-7783510654123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 63,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 413
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-7783738481123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 63,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 413
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-7785104578123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 63,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 413
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-7785139773123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 63,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 413
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-7785145712123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 63,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 413
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-7842704354123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 41.24,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 229.09
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 270.33
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-7842829524123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 57.77,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 320.93
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 378.7
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-7842955771123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 45.4,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 252.22
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 297.62
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-7842974158123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 21.87,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 121.48
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 143.35
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-7843060536123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 170.61,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 947.88
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1118.49
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S ONE 97 COMMUNICATION LTD"
                                },
                                {
                                  "ctin": "09ABCPT0123M1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-01-2024",
                                      "inum": "INV-ME23123-24/99",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 803.13,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4461.86
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5265
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-ME23123-24/110",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 803.13,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4461.86
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5265
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MAHI ENTERPRISES"
                                },
                                {
                                  "ctin": "27ABCPS0123E1ZK",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-634123",
                                      "irn": "abc12yhd3734a496a152d85514873ad189c04622003e99ac6c5530123abc6xyz",
                                      "irngendate": "30-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 17425.8,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 96810
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 114236
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ROSHAN PACKAGING INDUSTRIES"
                                },
                                {
                                  "ctin": "33ABCPH0123N1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-141123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2052,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 11400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13452
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PAPER MAX"
                                },
                                {
                                  "ctin": "27ABCCL0123N1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-205506374600002123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 68400,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 380000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 448400
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED"
                                },
                                {
                                  "ctin": "05ABCCB0123A1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-5388123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 8.75,
                                          "num": 501,
                                          "rt": 5,
                                          "sgst": 8.75,
                                          "txval": 350
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 367.52
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-5389123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 178.2,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 178.2,
                                          "txval": 2970
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 3326.4
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-5390123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 145.8,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 145.8,
                                          "txval": 2430
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 2721.6
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-5391123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 10.63,
                                          "num": 501,
                                          "rt": 5,
                                          "sgst": 10.63,
                                          "txval": 425
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 446.26
                                    }
                                  ],
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "M/S NEW ROK HOTELS PVT. LTD."
                                },
                                {
                                  "ctin": "19ABCPD0123D1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-KB1890123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 810,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5310
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-KB1891123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 810,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5310
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-KB2013123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 810,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5310
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-KB2014123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 810,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5310
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "K.B.ENTERPRISE"
                                },
                                {
                                  "ctin": "07ABCPJ0123J1Z4",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-2023123-24/296",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 706.14,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 3923
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4629.14
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-2023123-24/297",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 2592,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 14400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 16992
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ICONIC DIGITAL MARKETING"
                                },
                                {
                                  "ctin": "27ABCPB0123L1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-17123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 30600,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 170000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 200600
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-18123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 7920,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 44000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 51920
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-19123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 76412.7,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 424515
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 500927.7
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-20123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 113400,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 630000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 743400
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-21123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 27000,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 150000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 177000
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Finesse Records"
                                },
                                {
                                  "ctin": "27ABCCI0123J1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-ITLP23123-24/34893",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 553022.15,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3072345.27
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3625367
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ITHINK LOGISTIC QUICK SERVICES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "29ABCCZ0123M1Z7",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-BRKA123/23-24/015",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1975.08,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 10972.64
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12948
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-BRKA123/23-24/016",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1221.07,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 6783.71
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8005
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-BRKA123/23-24/017",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1343.14,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 7461.87
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8805
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-BRKA123/23-24/018",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 85.2,
                                          "num": 1201,
                                          "rt": 12,
                                          "txval": 710
                                        },
                                        {
                                          "cess": 0,
                                          "igst": 20309.15,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 112828.63
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 133933
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-BRKA123/23-24/019",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2750.81,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 15282.29
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 18033
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Beardo"
                                },
                                {
                                  "ctin": "02ABCPR0123P1ZO",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-TE4493123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 252,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 1400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1652
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "THAKUR ENTERPRISES"
                                },
                                {
                                  "ctin": "09ABCPS0123E1ZQ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-AC123/2023-2024/552",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 5706.56,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 31703.1
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 37410
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ANALYTICS CLOUD"
                                },
                                {
                                  "ctin": "20ABCCR0123R1Z5",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-R114433823123-00546",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 94.62,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 94.62,
                                          "txval": 1577.02
                                        }
                                      ],
                                      "pos": "20",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1766.26
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Ruptub Solutions Private Limited"
                                },
                                {
                                  "ctin": "06ABCCT0123M1Z3",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-DR0600087755123",
                                      "irn": "abc12yhd37457162e4623e0d15e524826137d832b90959c1585df1123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 777.81,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4321.16
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 5098.97
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Times Internet Ltd."
                                },
                                {
                                  "ctin": "24ABCCP0123M1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-02-2024",
                                      "inum": "INV-TI123/2024/02/2599",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5102.55,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5102.55,
                                          "txval": 56695
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 66900.1
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-02-2024",
                                      "inum": "INV-TI123/2024/02/2623",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 130.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 130.5,
                                          "txval": 1450
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1711
                                    }
                                  ],
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "PRINT VISION PVT LTD."
                                },
                                {
                                  "ctin": "23ABCPD0123J1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-23123-24/06",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 9535.32,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 52974
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 62509
                                    }
                                  ],
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "Raghunath Associates"
                                },
                                {
                                  "ctin": "29ABCPM0123J1Z6",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-1934123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 5670,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 31500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 37170
                                    }
                                  ],
                                  "supfildt": "24-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "MEENA SALES"
                                },
                                {
                                  "ctin": "24ABCFS0123A1ZM",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-D901001239123",
                                      "irn": "abc12yhd37e516a6380c4c2afed1c073d39c02b212d0a15d649321123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 23535,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 23535,
                                          "txval": 261500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 308570
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SANKALP IN"
                                },
                                {
                                  "ctin": "07ABCCR0123A1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1706123/CR",
                                      "irn": "abc12yhd37791c1b6693ddd8c099f41b3002ecad341ad38d665705123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2250,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 12500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 16075
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1707123/PROS",
                                      "irn": "abc12yhd376442ed76aee432a29902262ec0cfe0f417f410581d51123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7365
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1708123/PROS",
                                      "irn": "abc12yhd378e2853aaabfad1433a099c1a7521b45995723bd83b8c123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7315
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1709123/PROS",
                                      "irn": "abc12yhd37530734353afe18e46906d3c49669167c8a8556bbc74e123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7365
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1710123/PROS",
                                      "irn": "abc12yhd37e985a3db7d3abec01bfc550122eaf7d316f935604f8d123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7365
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1763123/OPP",
                                      "irn": "abc12yhd371370f417593d91bcb3ec3b1d259fa149df9ad0ec822e123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14840
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1765123/OPP",
                                      "irn": "abc12yhd374fa38f709baeb40d3a686b404c93a276d794aee8e520123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14890
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1791123/PROS",
                                      "irn": "abc12yhd373e4923d7d0ba5da1f693aa7827edbce1facb9434da3c123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2160,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 12000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14625
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "inum": "INV-1792123/PROS",
                                      "irn": "abc12yhd37c09462b034645befc5f87c95215bc87be415ec63a8fc123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 648,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 7233
                                    }
                                  ],
                                  "supfildt": "12-03-2024",
                                  "supprd": "102023",
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited"
                                },
                                {
                                  "ctin": "24ABCCO0123N1Z8",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-SI123/01260/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2677.72,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 2677.72,
                                          "txval": 29752.48
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 35108
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-SI123/01263/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 761.49,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 761.49,
                                          "txval": 8461.04
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9984
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OCTAVOS ENTERPRISE SOLUTIONS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "19ABCCI0123B1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-WB1232403BQ80672123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 131,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2619
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2750
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-WB1232403BR02778123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 143
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 150
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTER GLOBE AVIATION LTD."
                                },
                                {
                                  "ctin": "06ABCCU0123K1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-UC2324123/GGN/9303",
                                      "irn": "abc12yhd37d7e3bcc0ffef00c871ff47edb12704b03415085a93bd123abc6xyz",
                                      "irngendate": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7452,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 41400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 48852
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-UC2324123/GGN/9890",
                                      "irn": "abc12yhd37d8661f4d191d23711326f2a87d646241172a2d6fdf95123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 22722.44,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 126235.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 148958.24
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "UNICOMMERCE ESOLUTIONS LIMITED"
                                },
                                {
                                  "ctin": "06ABCCA0123H1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-ADM123/2023-24/3513",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 19105.44,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 106141.33
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 125246.77
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ADMITAD MEDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCK0123J1ZQ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-KB00000874364922123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 90,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 90,
                                          "txval": 1000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1180
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-KB00000874365367123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 45,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 45,
                                          "txval": 500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 590
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-KB00000874369061123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 179.62,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 179.62,
                                          "txval": 1995.77
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2355.01
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-KB00000881118330123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 112.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 112.5,
                                          "txval": 1250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1475
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-KB00000881120143123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 45,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 45,
                                          "txval": 500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 590
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-KB00000881121699123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 112.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 112.5,
                                          "txval": 1250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1475
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-KB00000881123531123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 361.46,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 361.45,
                                          "txval": 4016.15
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4739.06
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-KB00000881261722123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 417.47,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 417.47,
                                          "txval": 4638.55
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5473.49
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000887635553123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 112.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 112.5,
                                          "txval": 1250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1475
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000887635765123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 45,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 45,
                                          "txval": 500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 590
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000887638516123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 135.8,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 135.79,
                                          "txval": 1508.85
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1780.44
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000887642704123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 512.56,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 512.55,
                                          "txval": 5695.07
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6720.18
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000888762942123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 45,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 45,
                                          "txval": 500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 590
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000888765058123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 117.7,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 117.7,
                                          "txval": 1307.77
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1543.17
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000888767764123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 278.05,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 278.05,
                                          "txval": 3089.45
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3645.55
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000891827377123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 45,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 45,
                                          "txval": 500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 590
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000891827447123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 137.35,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 137.34,
                                          "txval": 1526.07
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1800.76
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-KB00000891828166123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 316.92,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 316.91,
                                          "txval": 3521.29
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4155.12
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-KB00000896855400123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 22.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 22.5,
                                          "txval": 250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 295
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-KB00000896855401123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 22.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 22.5,
                                          "txval": 250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 295
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-KB00000896855402123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 22.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 22.5,
                                          "txval": 250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 295
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KOTAK MAHINDRA BANK LTD."
                                },
                                {
                                  "ctin": "09ABCCC0123A1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-23123-24/TRN01319",
                                      "irn": "abc12yhd3775f4d3647ee420de9e5c39426270f46a87f2a56b216e123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4305.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 23920
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 28225.6
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CLOUDSTUFF TECHNOLOGY PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "20ABCCI0123B1ZG",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-JS1232403AH30498123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 427,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 8539
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8966
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-JS1232403AH30588123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 143,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2857
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-JS1232403AH35339123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 599,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 11988
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12587
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "33ABCCU0123F1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-02-2024",
                                      "inum": "INV-UH6062123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 235.47,
                                          "igst": 0,
                                          "num": 1200,
                                          "rt": 12,
                                          "sgst": 235.47,
                                          "txval": 3924.46
                                        }
                                      ],
                                      "pos": "33",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 4395.4
                                    }
                                  ],
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "UPAR HOSPITALITY PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "36ABCCI0123B1Z3",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TS1232403BU68529123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 24,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 475
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 499
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TS1232403BU70031123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 261,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 5223
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 76,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 424
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5984
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTER GLOBE AVIATION LIMITED INDIGO"
                                },
                                {
                                  "ctin": "24ABCPB0123H1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-SE123/2023-2024/384",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1800,
                                          "txval": 20000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 23600
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-SE123/2023-2024/385",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 540,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 540,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7080
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SHAKTI ENTERPRISE"
                                },
                                {
                                  "ctin": "21ABCFJ0123H1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-8953FMBIL0001799123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6.76,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 6.76,
                                          "txval": 270.5
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 284
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-8953FMBIL0001800123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 83.52,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 83.52,
                                          "txval": 1392
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1559
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-8953FMBIL0001817123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 4,
                                          "txval": 160
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 168
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-8953FMBIL0001818123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 83.52,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 83.52,
                                          "txval": 1392
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1559
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "JN SHARMA"
                                },
                                {
                                  "ctin": "29ABCCF0123K1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-FKNADI24123/0034670",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 549234.18,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3051301.02
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3600535.2
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-FKNADI24123/0036237",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 19541.42,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 108563.45
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 128104.87
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-FKNAD123/I/24/16662",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1800000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-FKNAD123/I/24/16693",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 540000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3000000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3540000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-FKNAD123/I/24/17398",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 6917.58,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 38431
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 45348.58
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-FKNAD123/I/24/17624",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1403820,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 7799000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9202820
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-FKNAD123/I/24/17625",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 324000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1800000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2124000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-FKRKA25000078547123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 117694.81,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 653860.08
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 771554.53
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "04ABCPA0123Q1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-01-2024",
                                      "inum": "INV-RK123/23-24/0494",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1800,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-02-2024",
                                      "inum": "INV-RK123/23-24/0555",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2016,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 11200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13216
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-RK123/23-24/0639",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2520,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 14000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 16520
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RK TRADERS"
                                },
                                {
                                  "ctin": "24ABCCA0123J1ZO",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-GJ123-2324-125684",
                                      "irn": "abc12yhd376d511c20037699520e22e0e10b3b927862f62ce6a8cd123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 25487.26,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 25487.26,
                                          "txval": 283193.66
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 334168.18
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD"
                                },
                                {
                                  "ctin": "27ABCPN0123F1ZQ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-185123/2023-24",
                                      "irn": "abc12yhd3736a49d41f5fd81a963b1a16157994ddb4d6a0e8f8b91123abc6xyz",
                                      "irngendate": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 594000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3300000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 3894000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HRITHIK ROSHAN"
                                },
                                {
                                  "ctin": "06ABCCM0123R1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-02-2024",
                                      "inum": "INV-M06AI24I19060231123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 78916,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-02-2024",
                                      "inum": "INV-M06AI24I19118318123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 87303,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-02-2024",
                                      "inum": "INV-M06AI24I19118367123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.56,
                                          "num": 87318,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 86.44
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 102
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-02-2024",
                                      "inum": "INV-M06AI24I19118599123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 87363,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-02-2024",
                                      "inum": "INV-M06AI24I19118656123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 87380,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-02-2024",
                                      "inum": "INV-M06AI24I19164177123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 92783,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-02-2024",
                                      "inum": "INV-M06AI24I19314121123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 111151,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-02-2024",
                                      "inum": "INV-M06AI24I19321726123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 111735,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-02-2024",
                                      "inum": "INV-M06AI24I19322707123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.78,
                                          "num": 111798,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 43.22
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 51
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-02-2024",
                                      "inum": "INV-M06AI24I19364247123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 118373,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-02-2024",
                                      "inum": "INV-M06AI24I19364547123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 118429,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-02-2024",
                                      "inum": "INV-M06AI24I19428316123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 127704,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-02-2024",
                                      "inum": "INV-M06AI24I19429038123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 127846,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-02-2024",
                                      "inum": "INV-M06AI24I19499728123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 138832,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-02-2024",
                                      "inum": "INV-M06AI24I19572872123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 149732,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-02-2024",
                                      "inum": "INV-M06AI24I19589892123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 151170,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-02-2024",
                                      "inum": "INV-M06AI24I19589976123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 151178,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-02-2024",
                                      "inum": "INV-M06AI24I19601680123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 152690,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-02-2024",
                                      "inum": "INV-M06AI24I19655923123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 158293,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-02-2024",
                                      "inum": "INV-M06AI24I19682013123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 160488,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-02-2024",
                                      "inum": "INV-M06AI24I19683958123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.41,
                                          "num": 160613,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 85.59
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 101
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-02-2024",
                                      "inum": "INV-M06AI24I19746055123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 169470,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-02-2024",
                                      "inum": "INV-M06AI24I19747344123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.41,
                                          "num": 169553,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 85.59
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 101
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-02-2024",
                                      "inum": "INV-M06AI24I19752370123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 169897,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-02-2024",
                                      "inum": "INV-M06AI24I19809860123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 178906,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-02-2024",
                                      "inum": "INV-M06AI24I19813245123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 179142,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-02-2024",
                                      "inum": "INV-M06AI24I19861932123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 186759,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-02-2024",
                                      "inum": "INV-M06AI24I19884137123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 188850,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-02-2024",
                                      "inum": "INV-M06AI24I19888287123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 189583,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-02-2024",
                                      "inum": "INV-M06AI24I19898824123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 191349,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-02-2024",
                                      "inum": "INV-M06AI24I19923690123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 195553,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-M06AI24I19934973123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 196544,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-M06AI24I19950155123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 198232,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-M06AI24I19972540123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 202605,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-M06AI24I19973167123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 202746,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-02-2024",
                                      "inum": "INV-M06AI24I20089250123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 216055,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-02-2024",
                                      "inum": "INV-M06AI24I20107161123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 218285,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20192260123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 231107,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20192349123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 91.53,
                                          "num": 231135,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 508.47
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 600
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20193141123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 231294,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20194609123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 231565,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20195272123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 231703,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20195276123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 231704,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20195303123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 30.51,
                                          "num": 231711,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 169.49
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 200
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20195388123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 231731,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20196038123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 231864,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20196127123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 231886,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20196151123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 231892,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20196839123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 232023,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20197410123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 232142,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20197870123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 232235,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20200751123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.47,
                                          "num": 232728,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 41.53
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 49
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20200769123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 232733,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20200772123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 232734,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20200803123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 232739,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20201005123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 232773,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20201166123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 30.51,
                                          "num": 232803,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 169.49
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 200
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20203109123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 233063,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20203794123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 233164,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20203876123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 233176,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20204833123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 233288,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20204854123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 233289,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20204953123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 233303,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20205111123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 233332,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20207871123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 233653,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20207962123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 233669,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20209343123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 233822,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20213046123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 234147,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20213144123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 234155,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20213274123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 234166,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-02-2024",
                                      "inum": "INV-M06AI24I20213485123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 234186,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-02-2024",
                                      "inum": "INV-M06AI24I20227014123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 235114,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-02-2024",
                                      "inum": "INV-M06AI24I20251768123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 238922,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-02-2024",
                                      "inum": "INV-M06AI24I20278327123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 243131,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-M06AI24I20479985123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 245716,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-M06AI24I20515543123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 246796,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-M06AI24I20604556123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 251056,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-M06AI24I20604842123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.78,
                                          "num": 251103,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 43.22
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 51
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-02-2024",
                                      "inum": "INV-M06AI24I20624289123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 45.76,
                                          "num": 252788,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 254.24
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 300
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-02-2024",
                                      "inum": "INV-M06AI24I20655956123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 257665,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "24-02-2024",
                                      "inum": "INV-M06AI24I20702764123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 263575,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "24-02-2024",
                                      "inum": "INV-M06AI24I20703024123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 263614,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-02-2024",
                                      "inum": "INV-M06AI24I20750347123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 268737,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-02-2024",
                                      "inum": "INV-M06AI24I20819236123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 276924,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-02-2024",
                                      "inum": "INV-M06AI24I20880910123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 285266,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-M06AI24I20999663123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 301391,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-M06AI24I21033370123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 15.25,
                                          "num": 307180,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 100
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-M06AI24I21038614123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7.63,
                                          "num": 307738,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42.37
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50
                                    }
                                  ],
                                  "supfildt": "16-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "MAKE MY TRIP (INDIA) PVT. LTD."
                                },
                                {
                                  "ctin": "24ABCFH0123D1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-GT123/522",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 936,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 936,
                                          "txval": 10400
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 12272
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HRI CREATION LLP"
                                },
                                {
                                  "ctin": "27ABCFB0123J1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-Bw123/24/126",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1260,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 7000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8260
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BEAUTY GLOW"
                                },
                                {
                                  "ctin": "27ABCCT0123F1Z4",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-I270000012076223123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 440,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 8800
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9240
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-I270000012084309123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 138,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2760
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2898
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-I270000012084310123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 138,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2760
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2898
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-I270000012102002123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 128,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2560
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2688
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LIMITED"
                                },
                                {
                                  "ctin": "30ABCCI0123B1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-GA1232403AS51719123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 214,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4286
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4500
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-GA1232403AS73745123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1985,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 39692
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 122,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 678
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 42477
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-GA1232403AS74837123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 142,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2856
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2998
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE  AVIATION LIMITED"
                                },
                                {
                                  "ctin": "29ABCCF0123P1Z1",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-1006123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 930.06,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 5167
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6097.06
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-1007123/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 1156.14,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 6423
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7579.14
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLASHMONK PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "29ABCCN0123J1ZM",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-NXTIFY23123-24-793",
                                      "irn": "abc12yhd37f7f053ab69612c297d61d5534a852389a3d3ebf333fd123abc6xyz",
                                      "irngendate": "19-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3879.18,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 21551
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 25430.18
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Nxtify Technologies Private Limited"
                                },
                                {
                                  "ctin": "07ABCCI0123B1Z4",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-DL1232403DO76924123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 415,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 8308
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8723
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-DL1232403DO77089123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 143,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2857
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-DL1232403DO82150123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 42,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 856
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 898
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-DL1232403DO83758123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 131,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2619
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2750
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-DL1232403DO84219123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 193,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3868
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4061
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-DL1232403DO85694123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 390,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 7806
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 8196
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-DL1232403DO91927123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 21,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 428
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 449
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-DL1232403DO93365123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 231,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4621
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 61,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 339
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5252
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-DL1232403DP11355123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 441,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 8810
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9251
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-DL1232403DP13433123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 441,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 8810
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9251
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-DL1232403DP21663123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 24,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 475
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 499
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-DL1232403DP22180123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 441,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 8810
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 9251
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-DL1232403DP46743123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 21,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 428
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 449
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-DL1232403DP91014123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 265,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 5316
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5581
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-DL1232403DS33989123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 13,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 267
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 280
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Interglobe Aviation Limited"
                                },
                                {
                                  "ctin": "29ABCCR0123J1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-HA9A8DRM7H7Y0324123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 10212.9,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 56738.35
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 114212.4
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RAZORPAY SOFTWARE PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06ABCCA0123L1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "inum": "INV-HR123/23-24/1393",
                                      "irn": "abc12yhd374a797663db372dbf37460ceada7908b4b10387b4660a123abc6xyz",
                                      "irngendate": "25-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 53100,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 295000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 348100
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "APOLLO HEALTHCO LIMITED"
                                },
                                {
                                  "ctin": "24ABCCB0123G1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HT2424I002073726123",
                                      "irn": "abc12yhd370f9d9f097b662c917503cd10af7177d131baca0d476b123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 89.91,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 89.91,
                                          "txval": 999
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1178.82
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BHARTI  AIRTEL LTD."
                                },
                                {
                                  "ctin": "18ABCCA0123P3ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-AV123/CC/23-24/836",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 5188.86,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 28827
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 34016
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SREENIWAS BASUDEO"
                                },
                                {
                                  "ctin": "29ABCCA0123J1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-24915100273536123",
                                      "irn": "abc12yhd37e0a3304c1342c267eb057e8de5b963165116705618b6123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 156012.02,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 866733.45
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1022745.47
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-24915100273783123",
                                      "irn": "abc12yhd3770c25d5b82c35172473e5f45dbe95889a5fa46a0ddbd123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 279824.12,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1554578.43
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1834402.55
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-24915500094577123",
                                      "irn": "abc12yhd37f63ca653f486696649e9f9fc2134c0e0554922ad2c27123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 15254.24,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 84745.76
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 100000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-INDA24008422123",
                                      "irn": "abc12yhd37ca31b6b4b7d7f8da59086bf74020d78ea88e1de864c6123abc6xyz",
                                      "irngendate": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 185305.97,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1029477.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1214783.57
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-KA123-2324-3339371",
                                      "irn": "abc12yhd378b889fece86946aef592e23c7bd8bd9be55e22aff2b4123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 26287.91,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 146044.53
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 172332.44
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-KA123-2324-3358206",
                                      "irn": "abc12yhd377d4b2d8e3b68e9515240369e08ff2d125767190a369c123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3360.3,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 18668.34
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 22028.64
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-KA123-2324-3425979",
                                      "irn": "abc12yhd372dc24d5dc41320faa981a32f43aae7262cb3a196b535123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 115858.27,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 643657.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 759516.02
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD"
                                },
                                {
                                  "ctin": "24ABCCM0123G2ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-2131201040123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 9486.72,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 9486.72,
                                          "txval": 105408
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 124381.44
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-2131201087123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5391.36,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5391.36,
                                          "txval": 59904
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 70686.72
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED"
                                },
                                {
                                  "ctin": "08ABCCH0123D1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-HPPL2324MI123/1649",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 109873.15,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 610406.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 720279.55
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-HPPL2324MI123/1650",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 377205.96,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 2095588.68
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2472794.64
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-HPPL2324MI123/1675",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 103987.8,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 577710
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 681697.8
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-HPPL2324MI123/1676",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 242519.83,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 1347332.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1589852.23
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-HPPL2324MI123/1677",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 3197.88,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 17766
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 20963.88
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-HPPL2324MI123/1682",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 18186.68,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 101037.12
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 119223.8
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-HPPL2324MI123/1750",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 132286,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 734922.24
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 867208.24
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HELIOS PACKAGING PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "32ABCCP0123D2ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-FO123/6010",
                                      "irn": "abc12yhd37b7a316178cc7ffe6f76900b741c082dae765d01a3d3e123abc6xyz",
                                      "irngendate": "22-03-2024",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 281.58,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 281.58,
                                          "txval": 4693
                                        }
                                      ],
                                      "pos": "32",
                                      "rev": "N",
                                      "rsn": "P",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 5256
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL HORIZON"
                                },
                                {
                                  "ctin": "19ABCPD0123B1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-2810123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7080
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIM MARKETING"
                                },
                                {
                                  "ctin": "27ABCCC0123M1Z7",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-1425123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 32400,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 180000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 212400
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-1433123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4500,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 29500
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "COINTAB SOFTWARE PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCFH0123Q1Z1",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-23123-24/4213",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7.15,
                                          "num": 501,
                                          "rt": 5,
                                          "sgst": 7.15,
                                          "txval": 286
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 153.24,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 153.24,
                                          "txval": 2554
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3160
                                    }
                                  ],
                                  "supfildt": "07-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HETAL CORPORATION"
                                },
                                {
                                  "ctin": "09ABCCI0123B1Z0",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-UP1232403BB91592123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 254,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 5082
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5336
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S  INTERGLOBE AVIATION LIMTED"
                                },
                                {
                                  "ctin": "09ABCCR0123E1ZN",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-A91G1100008723123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 9900,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 55000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 64900
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED"
                                },
                                {
                                  "ctin": "21ABCFD0123K1ZO",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-02-2024",
                                      "inum": "INV-2211123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 468,
                                          "num": 1201,
                                          "rt": 12,
                                          "txval": 3900
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4368
                                    }
                                  ],
                                  "supfildt": "20-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "DIGVIJAY INTERNATIONAL"
                                },
                                {
                                  "ctin": "24ABCCI0123G1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-240311TP09956847123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 90,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 90,
                                          "txval": 1000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1180
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-240314TP09964321123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7.47,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7.47,
                                          "txval": 83
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 97.94
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-240314TP09964322123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7.47,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7.47,
                                          "txval": 83
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 97.94
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-240314TP10054050123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1496.74,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1496.74,
                                          "txval": 16630.39
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 19623.87
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-240320TP14397796123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7.47,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7.47,
                                          "txval": 83
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 97.94
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-240322TP14421304123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 22.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 22.5,
                                          "txval": 250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 295
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INDUSIND BANK LTD."
                                },
                                {
                                  "ctin": "27ABCCH0123M1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-HB123/23-24/160",
                                      "irn": "abc12yhd37e93bbc3dcb1344d0502024f315c858a4b3ca32065b40123abc6xyz",
                                      "irngendate": "01-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 166320,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 924000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 1090320
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-HB123/23-24/162",
                                      "irn": "abc12yhd37187eb2460ce5b9834957b8b70b640d3c41af3ef7b44d123abc6xyz",
                                      "irngendate": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 113580,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 631000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 744580
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-HB123/23-24/163",
                                      "irn": "abc12yhd378ff183bc3efbc93aee1f3a9f326282603831234b6f21123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 105030,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 583500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 688530
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-HB123/23-24/164",
                                      "irn": "abc12yhd374650b60455fa53aea7c5530c12a1d0678d114cac1b7c123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 138600,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 770000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 908600
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HB123/23-24/166",
                                      "irn": "abc12yhd3753ee31ad7ddf7543e27c8f3c21669f7cf95b61c55ce2123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 105030,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 583500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 688530
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HB123/23-24/167",
                                      "irn": "abc12yhd37670e92730b3afab7cabebb360e0933377832c1c417bc123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 113580,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 631000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 744580
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HB123/23-24/168",
                                      "irn": "abc12yhd37bb3659d29bc01bb8f778e79c445457e61f576d11e2ad123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 105336,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 585200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 690536
                                    }
                                  ],
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOOLI BRANDS MULTI TRADING PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "06ABCFY0123A2ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-MOON123/BI-2324/263",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 40236.84,
                                          "num": 156676,
                                          "rt": 18,
                                          "txval": 223538
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 0
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-MOON123/BI-2324/271",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 49755.78,
                                          "num": 156684,
                                          "rt": 18,
                                          "txval": 276421
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 0
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-MOON123/BI-2324/336",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 43710.84,
                                          "num": 156746,
                                          "rt": 18,
                                          "txval": 242838
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 0
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-MOON123/BI-2324/346",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 28191.06,
                                          "num": 156754,
                                          "rt": 18,
                                          "txval": 156617
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 0
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Moonstone Ventures LLP"
                                },
                                {
                                  "ctin": "27ABCFS0123H1ZC",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-SA001112123/23-24",
                                      "irn": "abc12yhd376e2a69789d124d64bd0d5f9c56b6a7e00eda39da502e123abc6xyz",
                                      "irngendate": "27-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 26058.24,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 144768
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 170826
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SUHAN AEROSOL"
                                },
                                {
                                  "ctin": "08ABCCI0123B1Z2",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-RJ1232403AS93457123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 188,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3763
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3951
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "24ABCCH0123H1ZK",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-HCP123/23-24/3133",
                                      "irn": "abc12yhd37437aa673fc6f28286f52b2d803cf6de51e6f90371904123abc6xyz",
                                      "irngendate": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 419.9,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 419.9,
                                          "txval": 4665.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 5505
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-HCP123/23-24/3134",
                                      "irn": "abc12yhd377d39de161db24a01a27c0bdf0a9d5f6c1cc1a0c8a936123abc6xyz",
                                      "irngendate": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 12903.66,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 12903.66,
                                          "txval": 143374
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 169181
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3140",
                                      "irn": "abc12yhd37c1969b682a5507f12eb4863a8affc75ce743a8aef4c7123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 37785.59,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 37785.59,
                                          "txval": 419839.84
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 495411
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3141",
                                      "irn": "abc12yhd37c9072d6d810826df1a46ce804b517287ac869853e9eb123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 472.75,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 472.75,
                                          "txval": 5252.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 6198
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3142",
                                      "irn": "abc12yhd37983b877557f2b89913af0040412d650428bf4f085862123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1644.75,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1644.75,
                                          "txval": 18275.04
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 21565
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3150",
                                      "irn": "abc12yhd3754e0223574f076958238586785a3f60580179f057aed123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 16944.23,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 16944.23,
                                          "txval": 188269.27
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 222158
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3151",
                                      "irn": "abc12yhd37447c922b28015fe4c7526f1d797be9434220d52f3f52123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6183.88,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 6183.88,
                                          "txval": 68709.76
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 81078
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-HCP123/23-24/3156",
                                      "irn": "abc12yhd37e6002b3395ec7f5f132a11d47ae9aaae61d871e25fa7123abc6xyz",
                                      "irngendate": "06-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4012.39,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4012.39,
                                          "txval": 44582.12
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 52607
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-HCP123/23-24/3157",
                                      "irn": "abc12yhd378f0b78603d1315612d49704b12ca38ff58ab945f81e3123abc6xyz",
                                      "irngendate": "06-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 28488.86,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 28488.86,
                                          "txval": 316542.94
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 373521
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-HCP123/23-24/3161",
                                      "irn": "abc12yhd379ff55898f605de18731a56f097be8a1bc9167f880970123abc6xyz",
                                      "irngendate": "06-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 25649.27,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 25649.27,
                                          "txval": 284991.84
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 336290
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-HCP123/23-24/3162",
                                      "irn": "abc12yhd379711521aea05d2aaf5396a7f84abdf6a80ff5cd6211c123abc6xyz",
                                      "irngendate": "06-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 849.53,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 849.53,
                                          "txval": 9439.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 11138
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-HCP123/23-24/3167",
                                      "irn": "abc12yhd370eee5c8f16b392a5dcf727f2e5254047c387bece2d92123abc6xyz",
                                      "irngendate": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2908,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2908,
                                          "txval": 32311.14
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 38127
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-HCP123/23-24/3168",
                                      "irn": "abc12yhd37d71cd3c4f3405a47927f95b270ec05993172045ce061123abc6xyz",
                                      "irngendate": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13924.04,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13924.04,
                                          "txval": 154711.62
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 182560
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3169",
                                      "irn": "abc12yhd37eadee26670b26424268323509c4f1b05e682d6e48552123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1132.38,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1132.38,
                                          "txval": 12582
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14847
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3170",
                                      "irn": "abc12yhd37baa371c8dcb3b0729ab1c0251169f3d8872e734ae1a5123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 21556.73,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 21556.73,
                                          "txval": 239519.13
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 282633
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3171",
                                      "irn": "abc12yhd37a77bf693407ee38a7c11994e9d7a994be81debdd21a9123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5512.22,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5512.22,
                                          "txval": 61246.85
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 72271
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3173",
                                      "irn": "abc12yhd37a0d50d853ac59c5c20b07155e2880558e27c21587292123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 19368.2,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 19368.2,
                                          "txval": 215202.3
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 253939
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3174",
                                      "irn": "abc12yhd3703d4e2f72aca9177fd84ab19f99f6289795824fcb942123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 176.49,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 176.49,
                                          "txval": 1960.98
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2314
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3175",
                                      "irn": "abc12yhd373e170cff3fb63163815f1aad60480df1ea0b333abff6123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 24.7,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 24.7,
                                          "txval": 274.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 324
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3176",
                                      "irn": "abc12yhd37d97d575a0905a3137346f1a1fb750a9d3d946561c536123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1330.06,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1330.06,
                                          "txval": 14778.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 17439
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3177",
                                      "irn": "abc12yhd372186f273f7be9647104062605e1b58f4e95f1ccf43bf123abc6xyz",
                                      "irngendate": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5.47,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5.47,
                                          "txval": 60.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 72
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3180",
                                      "irn": "abc12yhd3759a318f45a15a9942f0b0dd78f4de2f13e9dbb9e5631123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1013.42,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1013.42,
                                          "txval": 11260.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 13287
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3181",
                                      "irn": "abc12yhd3768db82af1074a6baafd83e215e003bcdc3e36ace0143123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4283.87,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4283.87,
                                          "txval": 47598.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 56166
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3182",
                                      "irn": "abc12yhd3766fb5aae7a2b09fe1e8558e14b581bab7f14eacc4954123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2944.99,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2944.99,
                                          "txval": 32722.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 38612
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3183",
                                      "irn": "abc12yhd37fe39728684e28dc007cf14875f78852203653d6bd331123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 21460.4,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 21460.4,
                                          "txval": 238448.7
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 281370
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3190",
                                      "irn": "abc12yhd3723affbe08177d80d6651eea353760c3a478b3a104782123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6291,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 6291,
                                          "txval": 69900
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 82482
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3191",
                                      "irn": "abc12yhd37fc3bb762e811b341a9fa859b2d8f3d6490107d5c8315123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13724.8,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13724.8,
                                          "txval": 152497.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 179947
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-HCP123/23-24/3193",
                                      "irn": "abc12yhd373e1e6ef34946d9ffe8e69f50a3eebdf57b8abcbdb8f9123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 29243.33,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 29243.33,
                                          "txval": 324925.86
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 383413
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-HCP123/23-24/3194",
                                      "irn": "abc12yhd37e55673ba957739d11a41d1d8a6d693b6923dc6887486123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 219.71,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 219.71,
                                          "txval": 2441.18
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2881
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-HCP123/23-24/3195",
                                      "irn": "abc12yhd372e68a2a4b0a3b0c0d2cece6a7db7cd1b2cb2149664a9123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 16997.95,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 16997.95,
                                          "txval": 188866.17
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 222862
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-HCP123/23-24/3196",
                                      "irn": "abc12yhd3703ae65075adcb9438cbabaeb688dd7d8a901e0368e72123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4058.48,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4058.48,
                                          "txval": 45094.21
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 53211
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-HCP123/23-24/3201",
                                      "irn": "abc12yhd37312263265f47a4ecca929c28460ae3281e28bf321db8123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 16169.71,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 16169.71,
                                          "txval": 179663.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 212003
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-HCP123/23-24/3202",
                                      "irn": "abc12yhd37b7cac00ddb21ddd1d54b72ce6f094087f9b721e39565123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 817.96,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 817.96,
                                          "txval": 9088.41
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 10724
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-HCP123/23-24/3208",
                                      "irn": "abc12yhd375a41a5f6697269a01c06701a1f7ecc8ef0b461b329ab123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 10776.1,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 10776.1,
                                          "txval": 119734.44
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 141287
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-HCP123/23-24/3209",
                                      "irn": "abc12yhd37b5218c90d96f0b96eff519430e08f4532e35bfffed63123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7530.08,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7530.08,
                                          "txval": 83667.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 98728
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-HCP123/23-24/3211",
                                      "irn": "abc12yhd3786c3e03c88987a0d898504e8d75f5af7ac2f69436126123abc6xyz",
                                      "irngendate": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 873.18,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 873.18,
                                          "txval": 9702
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 11448
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-HCP123/23-24/3212",
                                      "irn": "abc12yhd377384270408ea7fe76424024f57d68d3d8f39d295b6ee123abc6xyz",
                                      "irngendate": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 24007.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 24007.5,
                                          "txval": 266750.12
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 314765
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-HCP123/23-24/3221",
                                      "irn": "abc12yhd37a816cf737e4255241a00a1d1d72ec73ef4f461af2881123abc6xyz",
                                      "irngendate": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4781.16,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4781.16,
                                          "txval": 53124
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 62686
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-HCP123/23-24/3222",
                                      "irn": "abc12yhd374b12dfc2affeb7d0fee47279672e22834de72e4a795d123abc6xyz",
                                      "irngendate": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 9036.09,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 9036.09,
                                          "txval": 100401
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 118473
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-HCP123/23-24/3234",
                                      "irn": "abc12yhd37628609448c61d2d6905f7950bf2fb2ffa65be3b293d2123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5661.9,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5661.9,
                                          "txval": 62910
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 74234
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-HCP123/23-24/3235",
                                      "irn": "abc12yhd37c8f356ef8505f295e81bcdb1b057cbeab1dd3e486826123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 663.98,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 663.98,
                                          "txval": 7377.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 8705
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-HCP123/23-24/3236",
                                      "irn": "abc12yhd37fc09989776ff7298de390bc1eba8d48dc73eefc983b9123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 15.55,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 15.55,
                                          "txval": 172.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 204
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-HCP123/23-24/3237",
                                      "irn": "abc12yhd37f8042668f1a5c2a6d7b716a421eabed91c04ed821fd4123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 9248.57,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 9248.57,
                                          "txval": 102761.94
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 121259
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-HCP123/23-24/3243",
                                      "irn": "abc12yhd37a8ca3d5b3f6a37ca50cca640643bc98b03eca79aa0a0123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 23092.44,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 23092.44,
                                          "txval": 256582.78
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 302768
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-HCP123/23-24/3244",
                                      "irn": "abc12yhd37a8fea56390bda7b1ef168103154ce11c66b7af191450123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5408.64,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5408.64,
                                          "txval": 60096
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 70913
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-HCP123/23-24/3245",
                                      "irn": "abc12yhd37c7cb1f0a85b12daad3d3756e764e1646851b156f5d24123abc6xyz",
                                      "irngendate": "15-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2373.24,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2373.24,
                                          "txval": 26369.33
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 31116
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-HCP123/23-24/3250",
                                      "irn": "abc12yhd375607e3334df0463977c4c172a0985cd5c11594c8f639123abc6xyz",
                                      "irngendate": "16-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 14528.17,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 14528.17,
                                          "txval": 161424.09
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 190480
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-HCP123/23-24/3252",
                                      "irn": "abc12yhd37cbc98ada0ea86a52382d9aa7ceacdd9821ad3f1d5632123abc6xyz",
                                      "irngendate": "16-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 27694.49,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 27694.49,
                                          "txval": 307716.57
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 363106
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-HCP123/23-24/3260",
                                      "irn": "abc12yhd371f6d44dd1a71a27688bf144be64cb757f260cc539a69123abc6xyz",
                                      "irngendate": "16-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 16741.34,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 16741.34,
                                          "txval": 186014.79
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 219497
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3266",
                                      "irn": "abc12yhd3746016d0eb1fa03f53349edf58235b569c7d8535838e9123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2701.15,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2701.15,
                                          "txval": 30012.75
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 35415
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3267",
                                      "irn": "abc12yhd3788b0beac6f87f1b3383a59a2180a7a55e65c9029781b123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 15008.75,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 15008.75,
                                          "txval": 166763.91
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 196781
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3268",
                                      "irn": "abc12yhd37d2d0b01fcc8dc34bc8be65cd1cc6c4b9c8d062e2b927123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1874.84,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1874.84,
                                          "txval": 20831.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 24581
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3269",
                                      "irn": "abc12yhd37cbce85e61b0745e3ffe1e26baca3230109d891dd1614123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 270.43,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 270.43,
                                          "txval": 3004.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 3546
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3273",
                                      "irn": "abc12yhd37c7c6193c741b61c847a023a90ea39f3fdf080a5bb541123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 10865.02,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 10865.02,
                                          "txval": 120722.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 142452
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-HCP123/23-24/3279",
                                      "irn": "abc12yhd373b127c4ec3a574ed265d725e5bb47ac712506d12cdc4123abc6xyz",
                                      "irngendate": "19-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1559.52,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1559.52,
                                          "txval": 17328
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 20447
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-HCP123/23-24/3284",
                                      "irn": "abc12yhd37fe4150141f19ff207131d68392fa90dd268d9d92af49123abc6xyz",
                                      "irngendate": "20-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1111.41,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1111.41,
                                          "txval": 12349
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14572
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-HCP123/23-24/3285",
                                      "irn": "abc12yhd37f04d14545799b4b055e2925cfa1e57175dcb5405d661123abc6xyz",
                                      "irngendate": "20-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 17843.13,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 17843.13,
                                          "txval": 198256.86
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 233943
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-HCP123/23-24/3291",
                                      "irn": "abc12yhd3730d48f97fb691e906b941e540122ae69175819591703123abc6xyz",
                                      "irngendate": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 15403.96,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 15403.96,
                                          "txval": 171155.04
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 201963
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-HCP123/23-24/3299",
                                      "irn": "abc12yhd378d8f9af52ad4d65496ed49c0da25228d79150cf36ceb123abc6xyz",
                                      "irngendate": "22-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 913.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 913.5,
                                          "txval": 10150
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 11977
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-HCP123/23-24/3300",
                                      "irn": "abc12yhd37ccc749d81b8529d2a5c6e458e5257756db926b47bd46123abc6xyz",
                                      "irngendate": "22-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 11895.93,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 11895.93,
                                          "txval": 132177.01
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 155969
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-HCP123/23-24/3301",
                                      "irn": "abc12yhd3773d5e861de35fd0876a826a3acdabf851a7dd36c54a8123abc6xyz",
                                      "irngendate": "22-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3704.4,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3704.4,
                                          "txval": 41160
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 48569
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-HCP123/23-24/3305",
                                      "irn": "abc12yhd37fe07c7ee67687bee7ea7f141c885dd0d3668785f68f6123abc6xyz",
                                      "irngendate": "23-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 14028.48,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 14028.48,
                                          "txval": 155871.94
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 183929
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-HCP123/23-24/3306",
                                      "irn": "abc12yhd37506ef5d9b419955f23965158fd8e7fe450e3f4be8e88123abc6xyz",
                                      "irngendate": "23-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 32.72,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 32.72,
                                          "txval": 363.58
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 429
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "24-03-2024",
                                      "inum": "INV-HCP123/23-24/3319",
                                      "irn": "abc12yhd37877a8f13e4827488071dbf5c9de8a921aeb484fe3309123abc6xyz",
                                      "irngendate": "24-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 10725.87,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 10725.87,
                                          "txval": 119176.33
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 140628
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-HCP123/23-24/3327",
                                      "irn": "abc12yhd373e15b438c4a83160e8a5c2136f5824b38a370de902aa123abc6xyz",
                                      "irngendate": "28-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1000.36,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1000.36,
                                          "txval": 11115.16
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 13116
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-HCP123/23-24/3328",
                                      "irn": "abc12yhd37452b1e2020980e2ee21a66a469d47c532f8e14b0c388123abc6xyz",
                                      "irngendate": "28-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 11824.44,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 11824.44,
                                          "txval": 131382.72
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 155032
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HCP WELLNESS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCC0123E1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-AMD2123-1056318",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 250.86,
                                          "igst": 0,
                                          "num": 726,
                                          "rt": 18,
                                          "sgst": 250.86,
                                          "txval": 2787.28
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3289
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CLICKTECH RETAIL PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCI0123B1Z2",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-MH1232403EG89123123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 143,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2857
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3000
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-MH1232403EH12621123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 346,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 6914
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7260
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-MH1232403EH73006123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 10,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 190
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 200
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-MH1232403EH92360123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 154,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3088
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3242
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-MH1232403EI43390123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 124,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2481
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2605
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-MH1232403EI91048123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 276,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 5516
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5792
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-MH1232403EJ37610123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 356,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 7118
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7474
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "06ABCCS0123L1Z0",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-CRT123/2324/6531",
                                      "irn": "abc12yhd3724e885490bda465c3335ee9ae661d55b2e716030c3ca123abc6xyz",
                                      "irngendate": "19-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 19979.51,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 110997.25
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 130976.76
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-LAB123/2324/6411",
                                      "irn": "abc12yhd371a29be512cde9ce3d672e743127827adfee75def540c123abc6xyz",
                                      "irngendate": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3704.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 20580
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 24284.4
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-LAB123/2324/6689",
                                      "irn": "abc12yhd37a14c144f0da005e34a254006dd04515e00cef5b90b9e123abc6xyz",
                                      "irngendate": "26-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7654.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42525
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 50179.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-LAB123/2324/6805",
                                      "irn": "abc12yhd373df8bccf4afbc2190138b70e107ea048d402d929a905123abc6xyz",
                                      "irngendate": "30-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 8266.86,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 45927
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 54193.86
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SAI PACKAGING COMPANY"
                                },
                                {
                                  "ctin": "21ABCCM0123E1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-FM1598BIL0005631123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 360,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 360,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 6720
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-FM1598BIL0005632123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 337.5,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 337.5,
                                          "txval": 5625
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 6300
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S MAYFAIR HOTELS & RESORTS LTD."
                                },
                                {
                                  "ctin": "24ABCCB0123F1Z2",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-02-2024",
                                      "inum": "INV-1905123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 55956.3,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 55956.3,
                                          "txval": 2238252
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2820198
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-02-2024",
                                      "inum": "INV-1906123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2000,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 2000,
                                          "txval": 80000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 88200
                                    }
                                  ],
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "BEST VOYAGE PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCA0123A1ZP",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-GST123/21997/2324",
                                      "irn": "abc12yhd37d4b4cb5458892a0c81148e4e8de052c36709ee81431c123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 32745.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 181920
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 214666
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-GST123/22819/2324",
                                      "irn": "abc12yhd37a1fe3a3fc4044dffb7afb6c25c916524e717677f6726123abc6xyz",
                                      "irngendate": "28-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 306.72,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1704
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2011
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ANTRAWEB TECHNOLOGIES PVT LTD"
                                },
                                {
                                  "ctin": "08ABCPK0123J1ZA",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-188123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 24780,
                                          "num": 1,
                                          "rt": 12,
                                          "txval": 206500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 231280
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "YES CARGO LOGISTICS"
                                },
                                {
                                  "ctin": "36ABCFD0123D1ZE",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-3305123/2324",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-3916123/2324",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DEV DISTRIBUTIONS LLP"
                                },
                                {
                                  "ctin": "02ABCPK0123B1Z6",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-4471123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 756,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 4200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4956
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TARUN KALRA  BROTHERS"
                                },
                                {
                                  "ctin": "27ABCFB0123J1ZR",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-01-2024",
                                      "inum": "INV-DISP123/558",
                                      "irn": "abc12yhd37fadac582b1488a5f852cfe9fdb23bbd39b183d55c17a123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4500,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 29500
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-01-2024",
                                      "inum": "INV-DISP123/559",
                                      "irn": "abc12yhd37242026810d2dc7216dc47ad0f8135e875a270d9de9e4123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4500,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 29500
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-01-2024",
                                      "inum": "INV-DISP123/603",
                                      "irn": "abc12yhd371d21db79d169f040ac3ee649ba3fb839451f0e24016c123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4500,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 29500
                                    }
                                  ],
                                  "supfildt": "25-03-2024",
                                  "supprd": "012024",
                                  "trdnm": "BEAUTY CENTRE"
                                },
                                {
                                  "ctin": "03ABCFI0123E1ZM",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-4992123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7080
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "IQBAL SINGH KHUSHAL SINGH"
                                },
                                {
                                  "ctin": "09ABCCA0123B1ZM",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-2023123-24/120",
                                      "irn": "abc12yhd37e0debd364831f3e92812526c24b18d3155dcffe60082123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 43560,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 242000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 285560
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ADZ2LEAD MEDIA PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCJ0123N1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-C24E232400083086123",
                                      "irn": "abc12yhd371f8908ad1b50c9ba65e4b2e12e93f9a704d23fb41187123abc6xyz",
                                      "irngendate": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 54.03,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 54.03,
                                          "txval": 600.3
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 708.36
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "JIO PLATFORMS LIMITED"
                                },
                                {
                                  "ctin": "32ABCCR0123R1Z0",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-R201338223123-00641",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 106.53,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 106.53,
                                          "txval": 1775.59
                                        }
                                      ],
                                      "pos": "32",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1988.65
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TREEBO HOTELS"
                                },
                                {
                                  "ctin": "29ABCCK0123H1ZU",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-02-2024",
                                      "inum": "INV-KTL123/2023-24/580",
                                      "irn": "abc12yhd37bb3723de9ac1098abf9480c73929e106124065ccfc9d123abc6xyz",
                                      "irngendate": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4500,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 29500
                                    }
                                  ],
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "Kofluence Tech Private Limited"
                                },
                                {
                                  "ctin": "36ABCCG0123L1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-4939927617123",
                                      "irn": "abc12yhd372518537d3edc19d4d5bd0e3ae7a2d514f6b4077a8ec9123abc6xyz",
                                      "irngendate": "01-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 54723.06,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 304016.98
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 358740.04
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Google India Digital Services Private Limited"
                                },
                                {
                                  "ctin": "24ABCPD0123G1Z3",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-506123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6308.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 6308.1,
                                          "txval": 70090
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 82706
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-507123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1062,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1062,
                                          "txval": 11800
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13924
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-516123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3460.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3460.5,
                                          "txval": 38450
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 45371
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-517123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2973.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2973.6,
                                          "txval": 33040
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 38987
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "inum": "INV-519123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5370.39,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5370.39,
                                          "txval": 59671
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 70412
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "inum": "INV-520123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1350,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1350,
                                          "txval": 15000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 17700
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-533123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7605,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7605,
                                          "txval": 84500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 99710
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-536123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3672,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3672,
                                          "txval": 40800
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 48144
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-537123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3844.98,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3844.98,
                                          "txval": 42722
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50412
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-539123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5949,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5949,
                                          "txval": 66100
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 77998
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-540123-23/24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1417.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1417.5,
                                          "txval": 15750
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 18585
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PERFECT PACKAGING"
                                },
                                {
                                  "ctin": "08ABCFH0123Q1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-01-2024",
                                      "inum": "INV-5193123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 162,
                                          "num": 1,
                                          "rt": 12,
                                          "txval": 1350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1512
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-02-2024",
                                      "inum": "INV-5449123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 162,
                                          "num": 1,
                                          "rt": 12,
                                          "txval": 1350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1512
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-5456123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 162,
                                          "num": 1,
                                          "rt": 12,
                                          "txval": 1350
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1512
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-01-2024",
                                      "inum": "INV-685123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 25.5,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 510
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 536
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-02-2024",
                                      "inum": "INV-804123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 26.5,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 530
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 557
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-02-2024",
                                      "inum": "INV-805123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 24.15,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 483
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 507
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL CRYSTAL"
                                },
                                {
                                  "ctin": "09ABCPM0123N1ZP",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-GST123/318/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 25782.3,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 143235
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 169017
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-GST123/334/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 943.2,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 5240
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6183
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-GST123/341/23-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 6635.52,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 36864
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 43500
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S GOODNESS OF NATURE"
                                },
                                {
                                  "ctin": "09ABCFK0123H1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-NOI2324B07990123",
                                      "irn": "abc12yhd37eca5bede900ce191e65b3cf28d35d23c9f96ba43239f123abc6xyz",
                                      "irngendate": "16-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 41287,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 229371
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 229371
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KHAITAN & CO LLP"
                                },
                                {
                                  "ctin": "24ABCPS0123H1Z0",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-01-2024",
                                      "inum": "INV-MWi123-0330",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5668.65,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5668.65,
                                          "txval": 62985
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 74322
                                    }
                                  ],
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MAGIK WINGS"
                                },
                                {
                                  "ctin": "29ABCPV0123M1ZS",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-SDE123-01366",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 3240,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 18000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 21240
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SRI DURGA ENTERPRISES"
                                },
                                {
                                  "ctin": "09ABCPA0123C1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-4123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 810,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 4500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5310
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S HONEY TRADERS"
                                },
                                {
                                  "ctin": "23ABCPD0123J1Z9",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-23123-24/07",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 10056.6,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 55870
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 65927
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Raghunath Associates"
                                },
                                {
                                  "ctin": "24ABCFI0123Q1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-IT123/23-24/5522",
                                      "irn": "abc12yhd37b3dd9af000152081c2ee496a7606302616d453859a7e123abc6xyz",
                                      "irngendate": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 351,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 351,
                                          "txval": 3900
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 4602
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-03-2024",
                                      "inum": "INV-IT123/23-24/5635",
                                      "irn": "abc12yhd3708291a2cfd1bdb4e89f0718f7d947fb49206fece311d123abc6xyz",
                                      "irngendate": "14-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 526.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 526.5,
                                          "txval": 5850
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 6903
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-IT123/23-24/5838",
                                      "irn": "abc12yhd374a2714e255e33eabf6e7011b920c316b903995aa671a123abc6xyz",
                                      "irngendate": "27-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3880.8,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3880.8,
                                          "txval": 43120
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 50882
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-IT123/23-24/5900",
                                      "irn": "abc12yhd378f6e131963fdee71044f2629dc3b8bdf633fb6f0f174123abc6xyz",
                                      "irngendate": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1108.8,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1108.8,
                                          "txval": 12320
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 14538
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "IMAGE TECH"
                                },
                                {
                                  "ctin": "05ABCFS0123F1Z2",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-433123",
                                      "irn": "abc12yhd37fa02625eab9f35ee6bcd35e73219598d6fddeb3c2ef7123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 56391.55,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 313286.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 369678
                                    }
                                  ],
                                  "supfildt": "04-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S SHREE BALAJI HERBO LABS"
                                },
                                {
                                  "ctin": "27ABCCP0123D1ZQ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-INV123-2324-7361",
                                      "irn": "abc12yhd370cf68c1199171fe05f738ba4abeb9a26713c2a4f5bf3123abc6xyz",
                                      "irngendate": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 57600,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 320000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 377600
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "POCKET ACES PICTURES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCPM0123Q1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-RC123/2023-24/076",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 13950,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 13950,
                                          "txval": 155000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 182900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-RC123/2023-24/077",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 3148.38,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 3148.38,
                                          "txval": 34982
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 41279
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "8 SENSE"
                                },
                                {
                                  "ctin": "27ABCPP0123R1ZS",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-ZED123-051",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 60024,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 0,
                                          "txval": 500200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 560224
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-ZED123-052",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 8784,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 0,
                                          "txval": 73200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 81984
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "E COMM"
                                },
                                {
                                  "ctin": "09ABCPA0123E1Z4",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-01-2024",
                                      "inum": "INV-1196123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 5616,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 31200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 36816
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-1208123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 4492.8,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 24960
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 29453
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-02-2024",
                                      "inum": "INV-1214123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 7188.48,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 39936
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 47124
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-1230123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 11456.64,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 63648
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 75105
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S TAJ BRUSH INDUSTRIES"
                                },
                                {
                                  "ctin": "07ABCFE0123F1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-1DS123/23-24/424",
                                      "irn": "abc12yhd370a54e79f245a35328f1a7860cfe04631bccf99926ed1123abc6xyz",
                                      "irngendate": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 18000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 100000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 118000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "EGROWTH TECHNOLOGIES LLP"
                                },
                                {
                                  "ctin": "09ABCPB0123E1Z0",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-GST123/23-24/1066",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5900
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S BHATIA & SONS"
                                },
                                {
                                  "ctin": "07ABCFR0123J1ZN",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-RLH123/23-24/2586",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1080,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 6000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7080
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RLH ENTERPRISES"
                                },
                                {
                                  "ctin": "27ABCFB0123J1ZH",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-02-2024",
                                      "inum": "INV-23123-24/064",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 6048,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 33600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 39648
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-02-2024",
                                      "inum": "INV-23123-24/065",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 3024,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 16800
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 19824
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-02-2024",
                                      "inum": "INV-23123-24/067",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 6048,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 33600
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 39648
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-02-2024",
                                      "inum": "INV-23123-24/068",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 6307.2,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 35040
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 41347.2
                                    }
                                  ],
                                  "supfildt": "08-04-2024",
                                  "supprd": "022024",
                                  "trdnm": "BRITO PLAST"
                                },
                                {
                                  "ctin": "09ABCCA0123K1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-902123/24501277",
                                      "irn": "abc12yhd37764abca0cc1fb11c466308fd45e478b8eec28a832873123abc6xyz",
                                      "irngendate": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 7106.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 39480
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 46586
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AG POLY PACKS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "21ABCCR0123R1Z3",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-R161885523123-00298",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 94.44,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 94.44,
                                          "txval": 1574.06
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1762.94
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Ruptub Solutions Private Limited"
                                },
                                {
                                  "ctin": "24ABCCD0123R1ZZ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-23242401107814123",
                                      "irn": "abc12yhd377859cb70a64234277d3d81858873d9a53e9169d570e8123abc6xyz",
                                      "irngendate": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 10890,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 10890,
                                          "txval": 121000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 142780
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-23242401108061123",
                                      "irn": "abc12yhd37044f22962f10f5c6c4c9cf953896bfbd607e82aa8d05123abc6xyz",
                                      "irngendate": "28-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 42,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 42,
                                          "txval": 459
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 543
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VR Surat Private Limited"
                                },
                                {
                                  "ctin": "29ABCCA0123P1ZJ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-IBLR240300127340123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 108.52,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2170.48
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2279
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIX CONNECT PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "03ABCPK0123B1ZI",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-01-2024",
                                      "inum": "INV-GO1865123/2023-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 666,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3700
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4366
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-02-2024",
                                      "inum": "INV-GO2025123/2023-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 540,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3540
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "inum": "INV-GO2115123/2023-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 540,
                                          "num": 1801,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3540
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "J.V. ENTERPRISES"
                                },
                                {
                                  "ctin": "27ABCCN0123P1ZP",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-272412BP03AAF888123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 606,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 12121
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 13435
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-272412BP03AAR625123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 48,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 952
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED"
                                },
                                {
                                  "ctin": "06ABCFT0123N1ZF",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-DNS123/23-24/06",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4860,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 27000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 31860
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-TPP123/23-24/3005",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 58375.36,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 324307.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 382683
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-TPP123/23-24/3006",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 77718.06,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 431767
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 509485
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "inum": "INV-TPP123/23-24/3007",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 57771.11,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 320950.65
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 378722
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TPP123/23-24/3028",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 23990.08,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 133278.24
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 157268
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TPP123/23-24/3029",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 41241.05,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 229116.96
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 270358
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TPP123/23-24/3030",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 49286.14,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 273811.9
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 323098
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TPP123/23-24/3031",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 87566.07,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 486478.16
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 574044
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TPP123/23-24/3035",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 302513.76,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1680632
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1983146
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TPP123/23-24/3037",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 919.04,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 5105.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6025
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-TPP123/23-24/3042",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 68806.92,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 382260.64
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 451068
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-TPP123/23-24/3043",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 83734.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 465190
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 548924
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-TPP123/23-24/3044",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 124344.41,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 690802.28
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 815147
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-TPP123/23-24/3054",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 45691.74,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 253843
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 299535
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-TPP123/23-24/3055",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 5968.66,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 33159.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 39128
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-TPP123/23-24/3056",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 330.67,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1837.08
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2168
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "inum": "INV-TPP123/23-24/3057",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 122835.73,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 682420.72
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 805256
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-TPP123/23-24/3064",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 78365.56,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 435364.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 513730
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-TPP123/23-24/3065",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 8074.21,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 44856.72
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 52931
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-TPP123/23-24/3066",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 6186.02,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 34366.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 40553
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-TPP123/23-24/3075",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 55908.72,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 310604.01
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 366513
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "inum": "INV-TPP123/23-24/3076",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 20644.99,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 114694.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 135339
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-TPP123/23-24/3089",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7704.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 42802.24
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 50507
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-TPP123/23-24/3090",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 65005.63,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 361142.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 426148
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "inum": "INV-TPP123/23-24/3091",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 470.28,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2612.64
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3083
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-TPP123/23-24/3098",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 142053.13,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 789184.03
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 931237
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-TPP123/23-24/3099",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 146010.24,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 811168
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 957178
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-TPP123/23-24/3100",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 33534.12,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 186300.64
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 219835
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-TPP123/23-24/3101",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 57312.09,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 318400.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 377213
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-TPP123/23-24/3109",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 123478.53,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 685991.84
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 809470
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-TPP123/23-24/3110",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 142184.28,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 789912.64
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 932097
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-03-2024",
                                      "inum": "INV-TPP123/23-24/3130",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 57582.09,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 319900.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 377483
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "inum": "INV-TPP123/23-24/3136",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 160535.95,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 891866.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1052402
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-TPP123/23-24/3146",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 68476.45,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 380424.76
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 448901
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-TPP123/23-24/3147",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 5585.25,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 31029.12
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 36614
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-TPP123/23-24/3148",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 938.82,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 5215.68
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 6155
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-TPP123/23-24/3150",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 323887.51,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1799375.04
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2123263
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-TPP123/23-24/3157",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 54224.86,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 301249.24
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 355474
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-TPP123/23-24/3158",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 101555.83,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 564199.04
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 665755
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-TPP123/23-24/3159",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 34766.28,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 193146
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 227912
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-TPP123/23-24/3179",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 151871.63,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 843731.26
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 995603
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-TPP123/23-24/3180",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 8517.43,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 47319.04
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 55836
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "inum": "INV-TPP123/23-24/3181",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4867.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 27040
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 31907
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-TPP123/23-24/3187",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 60212.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 334516
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 394729
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-TPP123/23-24/3192",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 15950.3,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 88612.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 104563
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-TPP123/23-24/3193",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3756.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 20870
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 24627
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-TPP123/23-24/3194",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2869.51,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 15941.72
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 18811
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-TPP123/23-24/3195",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 8922.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 49567.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 58489
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-TPP123/23-24/3196",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 10216.37,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 56757.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 66974
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-TPP123/23-24/3198",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 102509.05,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 569494.72
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 672004
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-TPP123/23-24/3199",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 37165.97,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 206477.6
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 243644
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-TPP123/23-24/3200",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 304477.42,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1691541.21
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 1996019
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-TPP123/23-24/3204",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 66338.64,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 368548
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 434887
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-TPP123/23-24/3205",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 383412.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2130070
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2513483
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-TPP123/23-24/3207",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 822763.79,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4570910
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5393674
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-TPP123/23-24/3208",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 122814,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 682300
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 805114
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "inum": "INV-TPP123/23-24/3209",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 325314.01,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1807300
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2132614
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-TPP123/23-24/3211",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 19996.99,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 111094.4
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 131091
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-TPP123/23-24/3212",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 58475.72,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 324865.12
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 383341
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-TPP123/23-24/3213",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 113693.62,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 631631.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 745325
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "inum": "INV-TPP123/23-24/3214",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 409.1,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2272.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2682
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-TPP123/23-24/3224",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 71933.9,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 399632.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 471567
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-TPP123/23-24/3231",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2960.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 16447.2
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 19408
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-TPP123/23-24/3232",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 14354.38,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 79746.56
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 94101
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "THE PACK PARTNERS"
                                },
                                {
                                  "ctin": "09ABCCR0123P1ZL",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-02-2024",
                                      "inum": "INV-RR123-5965",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 126.75,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 126.75,
                                          "txval": 2112.5
                                        }
                                      ],
                                      "pos": "09",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 2366
                                    }
                                  ],
                                  "supfildt": "15-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "M/S  RADICAL PALACE"
                                },
                                {
                                  "ctin": "09ABCFH0123C1ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-30123/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 18000,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 100000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 118000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HIGHINTOWN MEDIA"
                                },
                                {
                                  "ctin": "24ABCHC0123N1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-GST123/82/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7714.13,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 7714.13,
                                          "txval": 85712.5
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 101141
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-03-2024",
                                      "inum": "INV-GST123/85/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 12270.38,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 12270.38,
                                          "txval": 136337.5
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 744,
                                          "num": 2,
                                          "rt": 5,
                                          "sgst": 744,
                                          "txval": 29760
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 192126
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-GST123/90/2023-24",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6827.63,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 6827.63,
                                          "txval": 75862.5
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 3849.75,
                                          "num": 2,
                                          "rt": 5,
                                          "sgst": 3849.75,
                                          "txval": 153990
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 251207
                                    }
                                  ],
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ACCURATE PRINTERS"
                                },
                                {
                                  "ctin": "07ABCPA0123P2Z4",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-JSR123/23-24/62",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 52920,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 294000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 346920
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "JSR SOLUTIONS"
                                },
                                {
                                  "ctin": "24ABCCS0123J3ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-FM3197BIL0006520123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 536.91,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 536.91,
                                          "txval": 8948.43
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 10022
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "inum": "INV-FM3197BIL0006521123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 7.93,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 7.93,
                                          "txval": 317.14
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 333
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMBROSIA"
                                },
                                {
                                  "ctin": "24ABCCP0123M1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "inum": "INV-TI123/2024/03/2781",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 5211,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 5211,
                                          "txval": 57900
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 68322
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "26-03-2024",
                                      "inum": "INV-TI123/2024/03/2995",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 6107.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 6107.4,
                                          "txval": 67860
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 80074.8
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PRINT VISION PVT LTD."
                                },
                                {
                                  "ctin": "27ABCPB0123A1ZV",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "inum": "INV-OI123/23-24/0383",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 16610.4,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 92280
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 108890.4
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VERSION NEXT & OJAS INDUSTRIES"
                                },
                                {
                                  "ctin": "32ABCCL0123H1ZB",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-1019956029123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 32400,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 180000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 212400
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-1060077334123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 32400,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 180000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 212400
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-1060077848123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 32400,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 180000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 212400
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LULU INTERNATIONAL SHOPPING MALLS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "09ABCCI0123A1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-IT123/A/1229",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 7299,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 40550
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 47849
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "inum": "INV-IT123/A/1230",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 11529,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 64050
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 75579
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-IT123/A/1416",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 7785,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 43250
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 51035
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-IT123/A/1417",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 12978,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 72100
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 85078
                                    }
                                  ],
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INNTHINK TECHNOLOGIES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "05ABCPM0123F3ZQ",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-02-2024",
                                      "inum": "INV-BRS20235133123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2.5,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 2.5,
                                          "txval": 100
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 105
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-02-2024",
                                      "inum": "INV-BRS20235149123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0.75,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0.75,
                                          "txval": 30
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 31.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-02-2024",
                                      "inum": "INV-BRS20235151123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1.25,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 1.25,
                                          "txval": 50
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 52.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-02-2024",
                                      "inum": "INV-FO20233771123",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 142.04,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 142.04,
                                          "txval": 2367.4
                                        }
                                      ],
                                      "pos": "05",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 2651.48
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL LEMON PARK"
                                },
                                {
                                  "ctin": "10ABCCJ0123L3ZH",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "24-01-2024",
                                      "inum": "INV-1826123/23-24",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 114,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 114,
                                          "txval": 1900
                                        }
                                      ],
                                      "pos": "10",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 2128
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-02-2024",
                                      "inum": "INV-SR123/000201/23-24",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 201.6,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 201.6,
                                          "txval": 3360
                                        }
                                      ],
                                      "pos": "10",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 3763.2
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "19-03-2024",
                                      "inum": "INV-SR123/000433/23-24",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 108,
                                          "num": 1201,
                                          "rt": 12,
                                          "sgst": 108,
                                          "txval": 1800
                                        }
                                      ],
                                      "pos": "10",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 2016
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL SRIYASH REGENCY"
                                },
                                {
                                  "ctin": "05ABCCR0123J1ZK",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-IN20230500005550123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 116.42,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 646.8
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 763.22
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED"
                                },
                                {
                                  "ctin": "32ABCFG0123J1ZK",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-QSYX123-155448",
                                      "irn": "abc12yhd378d4b36676c1b8d10b1c6ef103c5008c28c9212d7ef0e123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 365.94,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2033.05
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 2398.99
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "GREENS INDUSTRIES"
                                },
                                {
                                  "ctin": "02ABCPP0123E1ZD",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-01-2024",
                                      "inum": "INV-A001088123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 306,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 1700
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2006
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-02-2024",
                                      "inum": "INV-A001308123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 756,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 4200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4956
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-A001411123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 756,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 4200
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 4956
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-A001421123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 810,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 4500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5310
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OM ENTERPRISES PROP. SH. OM PARKASH"
                                },
                                {
                                  "ctin": "09ABCPG0123N2ZS",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-BD000540123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-BD000541123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-BD000547123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-BD000548123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-BD000549123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 5900
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "APEX TRADING FIRM"
                                },
                                {
                                  "ctin": "21ABCCC0123R1ZN",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "inum": "INV-6316123/23-24",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 98.04,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 98.04,
                                          "txval": 1634
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1830.08
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "17-03-2024",
                                      "inum": "INV-6373123/23-24",
                                      "itcavl": "N",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 98.04,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 12,
                                          "sgst": 98.04,
                                          "txval": 1634
                                        }
                                      ],
                                      "pos": "21",
                                      "rev": "N",
                                      "rsn": "P",
                                      "typ": "R",
                                      "val": 1830.08
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CHAKADOLA ESTATES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "07ABCPV0123Q1ZT",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "inum": "INV-12347123",
                                      "irn": "abc12yhd3778ae971cfafda0b47f7e5e9f43c3f87397b4571ecec8123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 5310,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 29500
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "typ": "R",
                                      "val": 34810
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "R K TRADERS"
                                },
                                {
                                  "ctin": "03ABCFA0123H1Z6",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "inum": "INV-R55123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 540,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 3000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 3540
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "inum": "INV-R63123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 1206,
                                          "num": 1,
                                          "rt": 18,
                                          "txval": 6700
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 7906
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AK ENTERPRISES"
                                },
                                {
                                  "ctin": "05ABCPK0123E1ZI",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-SK23010721123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-SK23010722123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-SK23010723123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "inum": "INV-SK23010724123",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1800,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 11800
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S S K ENTERPRISES"
                                },
                                {
                                  "ctin": "19ABCHR0123M1ZN",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "inum": "INV-GST123/DIS/031",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1620,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 9000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 10620
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "inum": "INV-GST123/DIS/032",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1620,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 9000
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 10620
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DILIP INTERNATIONAL"
                                },
                                {
                                  "ctin": "29ABCCR0123M2ZY",
                                  "inv": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "inum": "INV-KAIN2023123-77601",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 360348.48,
                                          "num": 183996,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2001936
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2362284.48
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-KAIN2023123-78381",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 3438725.04,
                                          "num": 184830,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 19104028
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 22542753.04
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-KAIN2023123-78382",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 2690628.12,
                                          "num": 184831,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 14947934
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 17638562.12
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "inum": "INV-KAIN2023123-78383",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 363857.4,
                                          "num": 184832,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2021430
                                        }
                                      ],
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "typ": "R",
                                      "val": 2385287.4
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED"
                                }
                              ],
                              "cdnr": [
                                {
                                  "ctin": "07ABCCI0123B1Z4",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 205,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4106
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO16231123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4311
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 193,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3868
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO16252123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4061
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 193,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3868
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO17783123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4061
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 205,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4106
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO22117123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4311
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 193,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3868
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 61,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 339
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO22436123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4461
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 219,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4386
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 61,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 339
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO23681123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5005
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 205,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4106
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO23770123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4311
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 61,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 339
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO27386123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 400
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 219,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4386
                                        }
                                      ],
                                      "ntnum": "NTDL2232403AO33604123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4605
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Interglobe Aviation Limited"
                                },
                                {
                                  "ctin": "27ABCPL0123L2Z0",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "20-04-2023",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 42.71,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 237.29
                                        }
                                      ],
                                      "ntnum": "NTAMD2123-5719",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 280
                                    }
                                  ],
                                  "supfildt": "18-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "CRESCENT INC"
                                },
                                {
                                  "ctin": "24ABCCI0123B1Z8",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 78,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 78,
                                          "txval": 3112
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE20943123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3268
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 189,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 189,
                                          "txval": 7552
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21109123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 7930
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 145,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 145,
                                          "txval": 5793
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 38,
                                          "igst": 0,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 38,
                                          "txval": 424
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21142123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6583
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 144,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 144,
                                          "txval": 5776
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21187123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6064
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 134.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 134.5,
                                          "txval": 5372
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21335123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5641
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 78,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 78,
                                          "txval": 3112
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21420123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3268
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 187.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 187.5,
                                          "txval": 7505
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21433123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 7880
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 99,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 99,
                                          "txval": 3955
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21537123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4153
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 86,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 86,
                                          "txval": 3438
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21629123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3610
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 265.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 265.5,
                                          "txval": 10618
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 38,
                                          "igst": 0,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 38,
                                          "txval": 424
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21809123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 11649
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 113.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 113.5,
                                          "txval": 4545
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 30.5,
                                          "igst": 0,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 30.5,
                                          "txval": 339
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE21849123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5172
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 198,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 198,
                                          "txval": 7910
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE22022123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 8306
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 78,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 78,
                                          "txval": 3112
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE22200123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3268
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 86,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 86,
                                          "txval": 3438
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE22888123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3610
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 86,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 86,
                                          "txval": 3438
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE23738123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3610
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 74,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 74,
                                          "txval": 2960
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE25475123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3108
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 386.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 386.5,
                                          "txval": 15447
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 30.5,
                                          "igst": 0,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 30.5,
                                          "txval": 339
                                        }
                                      ],
                                      "ntnum": "NTGJ2232403AE38677123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 16620
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "32ABCCI0123B1ZB",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 285,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 5694
                                        }
                                      ],
                                      "ntnum": "NTKL2232403AC90252123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5979
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "29ABCCA0123J1ZE",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "irn": "abc12yhd37a438a596d035ff21def135543ef9f0fbe803c645be12123abc6xyz",
                                      "irngendate": "02-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 16755.31,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 93086.13
                                        }
                                      ],
                                      "ntnum": "NTKA123-C-24-1588329",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 109841.44
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "irn": "abc12yhd37dac2f879802a21e737b29eb96a7b55d63aada1aa6a92123abc6xyz",
                                      "irngendate": "02-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1531.13,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 8506.79
                                        }
                                      ],
                                      "ntnum": "NTKA123-C-24-1655481",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 10037.92
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD"
                                },
                                {
                                  "ctin": "24ABCPL0123J1ZB",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "16-03-2024",
                                      "irn": "abc12yhd372e47561e5d6563de6e2cbe3da830588131c6cba390b7123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 504,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 504,
                                          "txval": 5600
                                        }
                                      ],
                                      "ntnum": "NTCN17123/23-24",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6608
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "K MANOHAR THE BAG MART"
                                },
                                {
                                  "ctin": "36ABCCR0123M3Z2",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1517.1,
                                          "num": 1665,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 8428.3
                                        }
                                      ],
                                      "ntnum": "NTTSCN2023123-7685",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 9945.4
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 272.73,
                                          "num": 1666,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1515.2
                                        }
                                      ],
                                      "ntnum": "NTTSCN2023123-7686",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 1787.93
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "07ABCCV0123Q1ZK",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 18264.6,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 101470
                                        }
                                      ],
                                      "ntnum": "NT194123/2023-24",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 119735
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 4860,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 27000
                                        }
                                      ],
                                      "ntnum": "NT195123/2023-24",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 31860
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 11700,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 65000
                                        }
                                      ],
                                      "ntnum": "NT196123/2023-24",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 76700
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "30-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 954.36,
                                          "num": 2,
                                          "rt": 5,
                                          "txval": 19087.12
                                        },
                                        {
                                          "cess": 0,
                                          "igst": 118228.73,
                                          "num": 3,
                                          "rt": 18,
                                          "txval": 656826.02
                                        }
                                      ],
                                      "ntnum": "NT205123/2023-24",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 795096
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VELVET GROOMING PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "09ABCCI0123B1Z0",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 212,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4240
                                        }
                                      ],
                                      "ntnum": "NTUP2232403AD77885123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4452
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S  INTERGLOBE AVIATION LIMTED"
                                },
                                {
                                  "ctin": "24ABCCT0123Q1Z2",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 11246.54,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 11246.54,
                                          "txval": 124961.57
                                        }
                                      ],
                                      "ntnum": "NTGU23C00000006771123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 147454.65
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA AIG GENERAL INSURANCE COMPANY LIMITED"
                                },
                                {
                                  "ctin": "27ABCCH0123M1Z9",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 723.6,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 4020
                                        }
                                      ],
                                      "ntnum": "NT10123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4743.6
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "igst": 13093.74,
                                          "num": 1800,
                                          "rt": 18,
                                          "txval": 72743
                                        }
                                      ],
                                      "ntnum": "NT9123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 85836.74
                                    }
                                  ],
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOOLI BRANDS MULTI TRADING PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCR0123E1ZP",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 82.55,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 458.58
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0401123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 541.13
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 76.35,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 424.14
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0402123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 500.49
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 69.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 385.16
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0403123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 454.48
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 68.93,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 383.01
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0404123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 451.94
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 68.31,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 379.49
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0405123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 447.8
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 37.93,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 210.69
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0406123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 248.62
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 17.16,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 95.36
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0407123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 112.52
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7.21,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 40.06
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0408123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 47.27
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 24
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0409123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 28.32
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 24
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0410123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 28.32
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 24
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0411123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 28.32
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 24
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0412123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 28.32
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 16
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0413123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 18.88
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7.54,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 41.88
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0414123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 49.42
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 36.42,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 202.33
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0415123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 238.75
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 93.76,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 520.87
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0416123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 614.63
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 50.54,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 280.74
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0417123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 331.28
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 36.95,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 205.27
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0418123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 242.22
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 95.77,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 532.09
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0419123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 627.86
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 44.9,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 249.46
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0420123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 294.36
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 146.27,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 812.65
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0421123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 958.92
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 35.01,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 194.49
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0422123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 229.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 57.57,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 319.84
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0423123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 377.41
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 71.77,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 398.74
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0424123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 470.51
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 27.68,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 153.77
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0425123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 181.45
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 127.03,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 705.72
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0426123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 832.75
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 116.67,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 648.16
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0427123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 764.83
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 54.33,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 301.84
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0428123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 356.17
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 60.62,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 336.81
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0429123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 397.43
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 79.29,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 440.5
                                        }
                                      ],
                                      "ntnum": "NTRC27H76L5SD0430123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 519.79
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 20
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0125123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 23.6
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0126123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 29.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 12.96,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 72
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0127123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 84.96
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.32,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 24
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0128123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 28.32
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 6.3,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 35
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0129123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 41.3
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7.92,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 44
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0130123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 51.92
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 40
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0131123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 47.2
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0132123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 29.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0133123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 29.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2.88,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 16
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0134123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 18.88
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4.5,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0135123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 29.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 6.48,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 36
                                        }
                                      ],
                                      "ntnum": "NTRD27H76L5SD0136123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 42.48
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED"
                                },
                                {
                                  "ctin": "27ABCCF0123R2Z8",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 156.47,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 869.28
                                        }
                                      ],
                                      "ntnum": "NT202327ENC0046390123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 1025.75
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 892.19,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 4956.63
                                        }
                                      ],
                                      "ntnum": "NT202327END0169910123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 5848.82
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FUTURE GENERALI INDIA INSURANCE COMPANY LIMITED"
                                },
                                {
                                  "ctin": "29ABCCS0123P1Z8",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 256.55,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 5131
                                        }
                                      ],
                                      "ntnum": "NT292AEDNQB0324002123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6154.55
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 256.55,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 5131
                                        }
                                      ],
                                      "ntnum": "NT292AEDNQB0324003123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 6154.55
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 135.7,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 2714
                                        }
                                      ],
                                      "ntnum": "NT292AEDNQB0324004123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 2849.7
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCCH0123H1ZK",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 832.5,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 832.5,
                                          "txval": 9250
                                        }
                                      ],
                                      "ntnum": "NT127123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 10915
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 515.55,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 515.55,
                                          "txval": 5728.32
                                        }
                                      ],
                                      "ntnum": "NT128123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6759
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HCP WELLNESS PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "03ABCCI0123B1ZC",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 374,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 7485
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 122,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 678
                                        }
                                      ],
                                      "ntnum": "NTPB2232403AC11668123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 8659
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBAL AVATION LTD."
                                },
                                {
                                  "ctin": "24ABCCL0123N1ZE",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 44.01,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 44.01,
                                          "txval": 489
                                        }
                                      ],
                                      "ntnum": "NT204202852902006123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 577.02
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 64.44,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 64.44,
                                          "txval": 716
                                        }
                                      ],
                                      "ntnum": "NT204202852902008123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 844.88
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED"
                                },
                                {
                                  "ctin": "33ABCCN0123P2ZV",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 135.43,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2708.57
                                        }
                                      ],
                                      "ntnum": "NT332422BP03AAA138123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 2844
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "07-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 9,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3014
                                        }
                                      ],
                                      "ntnum": "NT332432BP03AAA141123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3608
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED"
                                },
                                {
                                  "ctin": "33ABCCT0123F1ZB",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 177,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3540
                                        }
                                      ],
                                      "ntnum": "NTC330000000197941123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3717
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA Airlines Limited"
                                },
                                {
                                  "ctin": "07ABCCR0123G1ZL",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "22-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 155.61,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 864.5
                                        }
                                      ],
                                      "ntnum": "NTCN2023123-24/032",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 1020
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 6438.29,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 35768.28
                                        }
                                      ],
                                      "ntnum": "NTCN2023123-24/035",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 43707
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 49.13,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 272.95
                                        }
                                      ],
                                      "ntnum": "NTCN2023123-24/036",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 322
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "R I AYURVEDA RESEARCH LABS (A UNIT OF RAM LAL INDER LAL PVT. LTD.)"
                                },
                                {
                                  "ctin": "27ABCCI0123B1Z2",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 180,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3590
                                        }
                                      ],
                                      "ntnum": "NTMH2232403AO26147123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3770
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 165,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3309
                                        }
                                      ],
                                      "ntnum": "NTMH2232403AO29135123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3474
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 124,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2481
                                        }
                                      ],
                                      "ntnum": "NTMH2232403AO39615123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 2605
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "27ABCFK0123P1Z2",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00422123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00423123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00424123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00425123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00426123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00427123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00428123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00429123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00430123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00431123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 900,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 5000
                                        }
                                      ],
                                      "ntnum": "NTCN00432123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5900
                                    }
                                  ],
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KK COSMETICS MALL LLP"
                                },
                                {
                                  "ctin": "19ABCFS0123G1ZN",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-02-2024",
                                      "irn": "abc12yhd37f9956f0f12bd7b4dc2725beb58fd1eadeaeff5498ca8123abc6xyz",
                                      "irngendate": "13-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2700,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 15000
                                        }
                                      ],
                                      "ntnum": "NTCN00234123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 17700
                                    }
                                  ],
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SIDDHI VINAYAK"
                                },
                                {
                                  "ctin": "29ABCCD0123Q1ZS",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "irn": "abc12yhd3720b1d76eceac180ebfa846c49fa4fe98be05067253ab123abc6xyz",
                                      "irngendate": "10-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 3482.39,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 19346.61
                                        }
                                      ],
                                      "ntnum": "NTCRED123/CN23/3320",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 22829
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "irn": "abc12yhd3735673cf58bc5e7cebd60dfc390557631ced19339a48b123abc6xyz",
                                      "irngendate": "25-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 995.49,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 5530.51
                                        }
                                      ],
                                      "ntnum": "NTCRED123/CN23/3591",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6526
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "25-03-2024",
                                      "irn": "abc12yhd3741d0c8f2f76e035eea9df49da9834a84e05c74b359f6123abc6xyz",
                                      "irngendate": "25-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 157129.63,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 872942.37
                                        }
                                      ],
                                      "ntnum": "NTCRED123/CN23/3748",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 1030072
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DREAMPLUG TECHNOLOGIES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "37ABCCI0123B1Z1",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 672,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 13448
                                        }
                                      ],
                                      "ntnum": "NTAD2232403AB97885123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 14120
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "24ABCCS0123P1ZI",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 124.95,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 124.95,
                                          "txval": 4998
                                        }
                                      ],
                                      "ntnum": "NT242B3V32P0324002123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5247.9
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 54.8,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 54.8,
                                          "txval": 2192
                                        }
                                      ],
                                      "ntnum": "NT242B3V32P0324003123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 2301.6
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 139.33,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 139.33,
                                          "txval": 5573
                                        }
                                      ],
                                      "ntnum": "NT242P7E7TZ0324002123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6382.66
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 139.25,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 139.25,
                                          "txval": 5570
                                        }
                                      ],
                                      "ntnum": "NT242P7E7TZ0324003123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 6379.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 42.9,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 42.9,
                                          "txval": 1716
                                        }
                                      ],
                                      "ntnum": "NT242Q8HY3T0324004123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 1801.8
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 214.3,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 214.3,
                                          "txval": 8572
                                        }
                                      ],
                                      "ntnum": "NT242Q8HY3T0324005123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 9000.6
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 91.65,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 91.65,
                                          "txval": 3666
                                        }
                                      ],
                                      "ntnum": "NT242Q8HY3T0324006123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 3849.3
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4.75,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 4.75,
                                          "txval": 190
                                        }
                                      ],
                                      "ntnum": "NT243CY86YA0324002123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 199.5
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "03-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 161.15,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 161.15,
                                          "txval": 6446
                                        }
                                      ],
                                      "ntnum": "NT243CY86YA0324003123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 7830.3
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 73.8,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 73.8,
                                          "txval": 2952
                                        }
                                      ],
                                      "ntnum": "NT243E5PHHM0324002123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 3099.6
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 135.05,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 135.05,
                                          "txval": 5402
                                        }
                                      ],
                                      "ntnum": "NT243E5PHHM0324003123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6203.1
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "24ABCPD0123G1Z3",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "21-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 4797,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 4797,
                                          "txval": 53300
                                        }
                                      ],
                                      "ntnum": "NTGJ123/CN01",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 62894
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PERFECT PACKAGING"
                                },
                                {
                                  "ctin": "08ABCCR0123F1ZG",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 186,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 3720
                                        }
                                      ],
                                      "ntnum": "NT30824123/0000013699",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3906
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPICEJET LIMITED"
                                },
                                {
                                  "ctin": "26ABCCR0123B1ZM",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "27-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 16428.42,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 91269
                                        }
                                      ],
                                      "ntnum": "NT302123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 107697
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "29-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 5760,
                                          "num": 1801,
                                          "rt": 18,
                                          "txval": 32000
                                        }
                                      ],
                                      "ntnum": "NT311123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 37760
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RADCOM PACKAGING PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "27ABCCM0123G1Z7",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1003.73,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 5576.28
                                        }
                                      ],
                                      "ntnum": "NTDD0270003239123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 6580.01
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 1352.44,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 7513.56
                                        }
                                      ],
                                      "ntnum": "NTDD0270003240123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 8866
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 20821.58,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 115675.44
                                        }
                                      ],
                                      "ntnum": "NTDD0270003241123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 136497.02
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 197725.27,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 1098473.72
                                        }
                                      ],
                                      "ntnum": "NTDD0270003274123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 1296198.99
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 393.26,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 2184.78
                                        }
                                      ],
                                      "ntnum": "NTDD0270003275123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 2578.04
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 12.81,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 71.17
                                        }
                                      ],
                                      "ntnum": "NTDD0270003276123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 83.98
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 89.24,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 495.78
                                        }
                                      ],
                                      "ntnum": "NTDD0270003277123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 585.02
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 6.26,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 34.78
                                        }
                                      ],
                                      "ntnum": "NTDD0270003278123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 41.04
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "irn": "abc12yhd37bcdf980bcfdf07cc8fa21b7adf498911467119ace41e123abc6xyz",
                                      "irngendate": "04-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2901.6,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 0.01
                                        }
                                      ],
                                      "ntnum": "NTVU0270001754123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 2901.61
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED"
                                },
                                {
                                  "ctin": "24ABCCT0123F6Z5",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "06-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 14,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 14,
                                          "txval": 560
                                        }
                                      ],
                                      "ntnum": "NTD240000000093302123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 588
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LTD"
                                },
                                {
                                  "ctin": "03ABCPP0123A1Z2",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 2882.75,
                                          "num": 2,
                                          "rt": 18,
                                          "txval": 16015.25
                                        }
                                      ],
                                      "ntnum": "NT71123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 18898
                                    }
                                  ],
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PB 10 TRADERS"
                                },
                                {
                                  "ctin": "24ABCPS0123A2Z8",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 2883.05,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 2883.05,
                                          "txval": 32033.88
                                        }
                                      ],
                                      "ntnum": "NT20123/23-24",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 37799.98
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MG VIP LOUNGE"
                                },
                                {
                                  "ctin": "27ABCCI0123J1ZE",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 16590.66,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 92170.34
                                        }
                                      ],
                                      "ntnum": "NTCN123-P/23-24/4702",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 108761
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ITHINK LOGISTIC QUICK SERVICES PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "07ABCPC0123L1Z9",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "irn": "abc12yhd371e2f40770025c1314a2899572159b25999d100e77ce9123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 0,
                                          "sgst": 0,
                                          "txval": 10000
                                        }
                                      ],
                                      "ntnum": "NT96868123/OPP",
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 13040
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-10-2023",
                                      "irn": "abc12yhd3790e44e0b1158d67b9f5ae47049affcf299c26aa429c5123abc6xyz",
                                      "irngendate": "11-01-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 0,
                                          "sgst": 0,
                                          "txval": 36500
                                        }
                                      ],
                                      "ntnum": "NT96869123/PROS",
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 38915
                                    }
                                  ],
                                  "supfildt": "12-03-2024",
                                  "supprd": "102023",
                                  "trdnm": "Rahul Chaudhry & Partners"
                                },
                                {
                                  "ctin": "19ABCCI0123B1ZZ",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 76,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 424
                                        }
                                      ],
                                      "ntnum": "NTWB2232403AF84931123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 500
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTER GLOBE AVIATION LTD."
                                },
                                {
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "irn": "abc12yhd37bf905487a16118f5a8abae633de54b7f9ee7573bbe11123abc6xyz",
                                      "irngendate": "30-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 72000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 400000
                                        }
                                      ],
                                      "ntnum": "NTMUM2324C02158123",
                                      "pos": "24",
                                      "rev": "Y",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 400000
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KHAITAN AND CO"
                                },
                                {
                                  "ctin": "06ABCFT0123N1ZF",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 62953.2,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 349740
                                        }
                                      ],
                                      "ntnum": "NTCNS123/23-24/170",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 412693
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 12557.54,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 69764.1
                                        }
                                      ],
                                      "ntnum": "NTCNS123/23-24/171",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 82322
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "10-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 4625.96,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 25699.8
                                        }
                                      ],
                                      "ntnum": "NTCNS123/23-24/172",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 30326
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "13-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 28.8,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 160
                                        }
                                      ],
                                      "ntnum": "NTCNS123/23-24/173",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 189
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 57312.09,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 318400.5
                                        }
                                      ],
                                      "ntnum": "NTCNS123/23-24/176",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 375713
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "THE PACK PARTNERS"
                                },
                                {
                                  "ctin": "20ABCCI0123B1ZG",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 238,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 4758
                                        }
                                      ],
                                      "ntnum": "NTJS2232403AA98558123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 4996
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 271,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 5420
                                        }
                                      ],
                                      "ntnum": "NTJS2232403AA99125123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5691
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED"
                                },
                                {
                                  "ctin": "36ABCCI0123B1Z3",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "02-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 261,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 5223
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 76,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 424
                                        }
                                      ],
                                      "ntnum": "NTTS2232403AF84076123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 5984
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTER GLOBE AVIATION LIMITED INDIGO"
                                },
                                {
                                  "ctin": "30ABCCS0123P1ZP",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 9.4,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 188
                                        }
                                      ],
                                      "ntnum": "NT303M3U5KF0324002123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 197.4
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "01-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "igst": 590.2,
                                          "num": 1,
                                          "rt": 5,
                                          "txval": 11804
                                        }
                                      ],
                                      "ntnum": "NT303M3U5KF0324003123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 14802.2
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "29ABCCF0123K1ZD",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2087.61,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 11597.85
                                        }
                                      ],
                                      "ntnum": "NTFKCKA25000105935123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 13685.45
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 2432.92,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 13516.23
                                        }
                                      ],
                                      "ntnum": "NTFKCKA25000106159123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 15949.02
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 30.57,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 169.85
                                        }
                                      ],
                                      "ntnum": "NTFKDKA25000011993123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 200.42
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "28-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 103265.64,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 573698
                                        }
                                      ],
                                      "ntnum": "NTFKNADC24123/0000433",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 676964
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED"
                                },
                                {
                                  "ctin": "07ABCCT0123F1Z6",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 98,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 1960
                                        }
                                      ],
                                      "ntnum": "NTD070000001374068123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 2058
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "04-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 25,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 500
                                        }
                                      ],
                                      "ntnum": "NTD070000001374069123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 525
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LIMITED"
                                },
                                {
                                  "ctin": "24ABCCA0123J1ZO",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "31-03-2024",
                                      "irn": "abc12yhd37332d2a0967053b65a099b12c43aac018c79806f5f089123abc6xyz",
                                      "irngendate": "02-04-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 1066.94,
                                          "igst": 0,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 1066.94,
                                          "txval": 11855.84
                                        }
                                      ],
                                      "ntnum": "NTGJ123-C-24-44647",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 13989.72
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD"
                                },
                                {
                                  "ctin": "27ABCPN0123F1ZQ",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "18-03-2024",
                                      "irn": "abc12yhd37d976b99a433ae21128dee0718ca75375e011fe987bc7123abc6xyz",
                                      "irngendate": "18-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 594000,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 3300000
                                        }
                                      ],
                                      "ntnum": "NT6123/2023-24",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 3894000
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HRITHIK ROSHAN"
                                },
                                {
                                  "ctin": "06ABCCM0123R1ZZ",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "12-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 7.17,
                                          "num": 4342,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 39.83
                                        }
                                      ],
                                      "ntnum": "NTM06AI24C00470301123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 47
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "14-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 0.15,
                                          "num": 4523,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 0.85
                                        }
                                      ],
                                      "ntnum": "NTM06AI24C00473455123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 1
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "15-02-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 0.15,
                                          "num": 4600,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 0.85
                                        }
                                      ],
                                      "ntnum": "NTM06AI24C00474889123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 1
                                    }
                                  ],
                                  "supfildt": "16-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "MAKE MY TRIP (INDIA) PVT. LTD."
                                },
                                {
                                  "ctin": "07ABCPV0123Q1ZT",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "irn": "abc12yhd37448c3d76ff736f71839c363c1fa9e6626054d7702387123abc6xyz",
                                      "irngendate": "11-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cgst": 0,
                                          "igst": 6660,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 37000
                                        }
                                      ],
                                      "ntnum": "NT838123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "srctyp": "e-Invoice",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 43660
                                    }
                                  ],
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "R K TRADERS"
                                },
                                {
                                  "ctin": "27ABCCT0123F1Z4",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "09-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 128,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 2560
                                        }
                                      ],
                                      "ntnum": "NTC270000001231294123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 2688
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "05-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 58,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 1160
                                        }
                                      ],
                                      "ntnum": "NTD270000000992491123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "D",
                                      "val": 1218
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LIMITED"
                                },
                                {
                                  "ctin": "30ABCCI0123B1ZF",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 962,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 19240
                                        },
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 122,
                                          "num": 2,
                                          "rt": 18,
                                          "sgst": 0,
                                          "txval": 678
                                        }
                                      ],
                                      "ntnum": "NTGA2232403AC72483123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 21002
                                    },
                                    {
                                      "diffprcnt": 1,
                                      "dt": "08-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 0,
                                          "igst": 701,
                                          "num": 1,
                                          "rt": 5,
                                          "sgst": 0,
                                          "txval": 13997
                                        }
                                      ],
                                      "ntnum": "NTGA2232403AC72646123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 14698
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE  AVIATION LIMITED"
                                },
                                {
                                  "ctin": "24ABCCB0123L1ZY",
                                  "nt": [
                                    {
                                      "diffprcnt": 1,
                                      "dt": "23-03-2024",
                                      "itcavl": "Y",
                                      "items": [
                                        {
                                          "cess": 0,
                                          "cgst": 39.89,
                                          "num": 1,
                                          "rt": 18,
                                          "sgst": 39.89,
                                          "txval": 443.22
                                        }
                                      ],
                                      "ntnum": "NT24324C000360123",
                                      "pos": "24",
                                      "rev": "N",
                                      "rsn": "",
                                      "suptyp": "R",
                                      "typ": "C",
                                      "val": 523
                                    }
                                  ],
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BLUE DART EXPRESS LIMITED"
                                }
                              ]
                            },
                            "gstin": "29AAACQ3770E000",
                            "rtnprd": "032024",
                            "version": "1.0"
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "93276802-1bb4-4cfa-967a-a2b4464e60d8"
                    }
                  },
                  "200 Success with file count pagination": {
                    "summary": "200 Success with file count pagination",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "chksum": "52970907a4edc78a81e178a07d7f5ecde54cea88e6fb9c0ee85896c5474d1ef2",
                          "data": {
                            "cpsumm": {
                              "b2b": [
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "01ABCPN7123Q1ZT",
                                  "igst": 1080,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Satvik Enterprises",
                                  "ttldocs": 1,
                                  "txval": 6000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "02ABCPR9123P1ZO",
                                  "igst": 252,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "THAKUR ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 1400
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "02ABCPK7123B1Z6",
                                  "igst": 756,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TARUN KALRA  BROTHERS",
                                  "ttldocs": 1,
                                  "txval": 4200
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "02ABCPP3123E1ZD",
                                  "igst": 2628,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OM ENTERPRISES PROP. SH. OM PARKASH",
                                  "ttldocs": 4,
                                  "txval": 14600
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCFI6123E1ZM",
                                  "igst": 1080,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "IQBAL SINGH KHUSHAL SINGH",
                                  "ttldocs": 1,
                                  "txval": 6000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCCI2123B1ZC",
                                  "igst": 450,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBAL AVATION LTD.",
                                  "ttldocs": 1,
                                  "txval": 9013
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCCT8123F5ZA",
                                  "igst": 475,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "ttldocs": 1,
                                  "txval": 9500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCFA8123H1Z6",
                                  "igst": 1746,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AK ENTERPRISES",
                                  "ttldocs": 2,
                                  "txval": 9700
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCPM5123A1ZT",
                                  "igst": 11025,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MADAAN ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 220500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCPK6123B1ZI",
                                  "igst": 1746,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "J.V. ENTERPRISES",
                                  "ttldocs": 3,
                                  "txval": 9700
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCPK8123M1Z5",
                                  "igst": 1332,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RAJ AGENCIES",
                                  "ttldocs": 1,
                                  "txval": 7400
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "04ABCPA0123Q1ZD",
                                  "igst": 6336,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RK TRADERS",
                                  "ttldocs": 3,
                                  "txval": 35200
                                },
                                {
                                  "cess": 0,
                                  "cgst": 343.38,
                                  "ctin": "05ABCCB7123A1ZV",
                                  "igst": 0,
                                  "sgst": 343.38,
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "M/S NEW ROK HOTELS PVT. LTD.",
                                  "ttldocs": 4,
                                  "txval": 6175
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "05ABCCR1123J1ZK",
                                  "igst": 116.42,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "ttldocs": 1,
                                  "txval": 646.8
                                },
                                {
                                  "cess": 0,
                                  "cgst": 366.25,
                                  "ctin": "05ABCFH2123A1ZU",
                                  "igst": 0,
                                  "sgst": 366.25,
                                  "supfildt": "23-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "HOTEL PARAS GRAND",
                                  "ttldocs": 3,
                                  "txval": 6250
                                },
                                {
                                  "cess": 0,
                                  "cgst": 146.54,
                                  "ctin": "05ABCPM3123F3ZQ",
                                  "igst": 0,
                                  "sgst": 146.54,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL LEMON PARK",
                                  "ttldocs": 4,
                                  "txval": 2547.4
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "05ABCFS4123F1Z2",
                                  "igst": 56391.55,
                                  "sgst": 0,
                                  "supfildt": "04-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S SHREE BALAJI HERBO LABS",
                                  "ttldocs": 1,
                                  "txval": 313286.4
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "05ABCPK5123E1ZI",
                                  "igst": 7200,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S S K ENTERPRISES",
                                  "ttldocs": 4,
                                  "txval": 40000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCI0123R1ZH",
                                  "igst": 28800,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INGENIOUS APPLIANCES & PACKAGING PVT LTD",
                                  "ttldocs": 1,
                                  "txval": 160000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCZ9123M1ZF",
                                  "igst": 27698.6,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Beardo",
                                  "ttldocs": 5,
                                  "txval": 154629.54
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCF5123G1ZZ",
                                  "igst": 596533.22,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FACEBOOK INDIA ONLINE SERVICES PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3314073.48
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCR1123E1ZT",
                                  "igst": 1980,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LTD.",
                                  "ttldocs": 1,
                                  "txval": 11000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCS7123L1Z0",
                                  "igst": 39605.27,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SAI PACKAGING COMPANY",
                                  "ttldocs": 4,
                                  "txval": 220029.25
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCT1123M1Z3",
                                  "igst": 777.81,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Times Internet Ltd.",
                                  "ttldocs": 1,
                                  "txval": 4321.16
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCU4123K1ZB",
                                  "igst": 30174.44,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "UNICOMMERCE ESOLUTIONS LIMITED",
                                  "ttldocs": 2,
                                  "txval": 167635.8
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCF5123Q1Z8",
                                  "igst": 14400,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLAMINGO DIGITAL PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 80000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCG0123D1Z8",
                                  "igst": 310259.21,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "ttldocs": 1,
                                  "txval": 1723662.26
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCFY8123A2ZB",
                                  "igst": 161894.52,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Moonstone Ventures LLP",
                                  "ttldocs": 4,
                                  "txval": 899414
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCH5123B1ZY",
                                  "igst": 10801.58,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Hippo Innovations Private Limited",
                                  "ttldocs": 2,
                                  "txval": 60008.82
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCM5123R1ZZ",
                                  "igst": 1053.36,
                                  "sgst": 0,
                                  "supfildt": "16-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "MAKE MY TRIP (INDIA) PVT. LTD.",
                                  "ttldocs": 88,
                                  "txval": 5851.64
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCD8123G2ZM",
                                  "igst": 787.86,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DATALOGY DIGITAL PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 4377
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCF0123Q1ZC",
                                  "igst": 29615.39,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FILLY MEDIA SOLUTIONS PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 164529.95
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCI2123H1Z2",
                                  "igst": 5401.87,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ICUBESWIRE TECHNOLOGIES PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 30010.37
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCS4123H1ZC",
                                  "igst": 94456.35,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SAFEXPRESS PRIVATE LTD.",
                                  "ttldocs": 10,
                                  "txval": 524757.51
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCV0123B1ZK",
                                  "igst": 3312.38,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "vCommission Media Private Limited",
                                  "ttldocs": 1,
                                  "txval": 18402.11
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCG9123E1ZF",
                                  "igst": 24450.48,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BLINK COMMERCE PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 135836
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCP1123P1Z9",
                                  "igst": 10345.25,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Pouring Pounds India Private Limited",
                                  "ttldocs": 4,
                                  "txval": 57473.62
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCR1123J1ZI",
                                  "igst": 147.23,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "ttldocs": 1,
                                  "txval": 817.95
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCR6123N1ZK",
                                  "igst": 235597.03,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Ryder Propack Private limited",
                                  "ttldocs": 6,
                                  "txval": 1308872.25
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCA9123H1ZE",
                                  "igst": 19105.44,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ADMITAD MEDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 106141.33
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCM5123J1Z6",
                                  "igst": 28800,
                                  "sgst": 0,
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "Mensa Brand Technologies Private Limited",
                                  "ttldocs": 1,
                                  "txval": 160000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCFT9123N1ZF",
                                  "igst": 5564241.95,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "THE PACK PARTNERS",
                                  "ttldocs": 64,
                                  "txval": 30912455.3
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCA5123L1ZA",
                                  "igst": 53100,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "APOLLO HEALTHCO LIMITED",
                                  "ttldocs": 1,
                                  "txval": 295000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCS8123R1ZU",
                                  "igst": 215549.82,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SUPERWELL COMTRADE PRIVATE LIMITED",
                                  "ttldocs": 4,
                                  "txval": 1197499
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCPD0123C1ZL",
                                  "igst": 900,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DHINGRA ASSOCIATES",
                                  "ttldocs": 1,
                                  "txval": 5000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCPG8123E2ZS",
                                  "igst": 41172.71,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BO INTERNATIONAL",
                                  "ttldocs": 1,
                                  "txval": 228737.25
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCR7123G1ZL",
                                  "igst": 101564.01,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "R I AYURVEDA RESEARCH LABS (A UNIT OF RAM LAL INDER LAL PVT. LTD.)",
                                  "ttldocs": 2,
                                  "txval": 564244.5
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCI2123B1Z4",
                                  "igst": 3273,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Interglobe Aviation Limited",
                                  "ttldocs": 15,
                                  "txval": 64618
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCR1123E1ZR",
                                  "igst": 7920,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Reliance Retail Limited",
                                  "ttldocs": 1,
                                  "txval": 44000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCI4123L1ZA",
                                  "igst": 87910.39,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CODOGNOTTO LOGISTICS INDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 488391.08
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCV5123Q1ZK",
                                  "igst": 43644.6,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VELVET GROOMING PRIVATE LIMITED",
                                  "ttldocs": 4,
                                  "txval": 242470
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCFE0123F1ZV",
                                  "igst": 18000,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "EGROWTH TECHNOLOGIES LLP",
                                  "ttldocs": 1,
                                  "txval": 100000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCG9123C1ZB",
                                  "igst": 15465.6,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "GOEXCELSIOR PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 85920
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCR1123A1Z9",
                                  "igst": 7056,
                                  "sgst": 0,
                                  "supfildt": "01-04-2024",
                                  "supprd": "012024",
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "ttldocs": 2,
                                  "txval": 39200
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCR1123A1Z9",
                                  "igst": 8568,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "022024",
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "ttldocs": 4,
                                  "txval": 47600
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCR1123A1Z9",
                                  "igst": 12978,
                                  "sgst": 0,
                                  "supfildt": "12-03-2024",
                                  "supprd": "102023",
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "ttldocs": 9,
                                  "txval": 72100
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCR1123A1Z9",
                                  "igst": 216,
                                  "sgst": 0,
                                  "supfildt": "29-03-2024",
                                  "supprd": "122023",
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "ttldocs": 1,
                                  "txval": 1200
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCA1123Q1ZM",
                                  "igst": 155430,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMITOJE INDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 863500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCFR0123J1ZN",
                                  "igst": 1080,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RLH ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 6000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCS9123P1ZE",
                                  "igst": 236.35,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 4727
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCFS7123N1ZX",
                                  "igst": 12434.04,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SYSCOM PACKAGING COMPANY",
                                  "ttldocs": 2,
                                  "txval": 69078
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPV3123Q1ZT",
                                  "igst": 5310,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "R K TRADERS",
                                  "ttldocs": 1,
                                  "txval": 29500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPN7123G1ZC",
                                  "igst": 15480,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "UNITED ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 86000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPC9123L1Z9",
                                  "igst": 0,
                                  "sgst": 0,
                                  "supfildt": "02-04-2024",
                                  "supprd": "012024",
                                  "trdnm": "Rahul Chaudhry & Partners",
                                  "ttldocs": 1,
                                  "txval": 16000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPK8123J1ZX",
                                  "igst": 6196.5,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HIPPO HITECH DIGITAL PRINT SOLUTIONS",
                                  "ttldocs": 1,
                                  "txval": 34425
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPJ5123J1Z4",
                                  "igst": 3298.14,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ICONIC DIGITAL MARKETING",
                                  "ttldocs": 2,
                                  "txval": 18323
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPA5123P2Z4",
                                  "igst": 52920,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "JSR SOLUTIONS",
                                  "ttldocs": 1,
                                  "txval": 294000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPA7123P1Z8",
                                  "igst": 815.95,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "NAKSH ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 4533.05
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "08ABCCI2123B1Z2",
                                  "igst": 188,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3763
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "08ABCCH5123D1ZU",
                                  "igst": 987257.3,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HELIOS PACKAGING PRIVATE LIMITED",
                                  "ttldocs": 7,
                                  "txval": 5484762.84
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "08ABCFH6123Q1ZF",
                                  "igst": 562.15,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL CRYSTAL",
                                  "ttldocs": 6,
                                  "txval": 5573
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "08ABCPK7123J1ZA",
                                  "igst": 24780,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "YES CARGO LOGISTICS",
                                  "ttldocs": 1,
                                  "txval": 206500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "08ABCPD4123M1ZL",
                                  "igst": 27090,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BHAVYA ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 150500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCO4123A1Z3",
                                  "igst": 714.89,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S ONE 97 COMMUNICATION LTD",
                                  "ttldocs": 11,
                                  "txval": 3971.6
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCZ9123M1Z9",
                                  "igst": 649.98,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ZED LIFESTYLE PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3611
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCI2123B1Z0",
                                  "igst": 254,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S  INTERGLOBE AVIATION LIMTED",
                                  "ttldocs": 1,
                                  "txval": 5082
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCR1123E1ZN",
                                  "igst": 9900,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "ttldocs": 1,
                                  "txval": 55000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCV6123H1ZW",
                                  "igst": 196928.42,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S VEDIC COSMECEUTICALS PRIVATE LIMITED",
                                  "ttldocs": 7,
                                  "txval": 1094046.75
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCP7123K1ZV",
                                  "igst": 1641.39,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S PINE LABS PVT LTD",
                                  "ttldocs": 4,
                                  "txval": 9118.81
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCI7123A1ZT",
                                  "igst": 39591,
                                  "sgst": 0,
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INNTHINK TECHNOLOGIES PRIVATE LIMITED",
                                  "ttldocs": 4,
                                  "txval": 219950
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCL0123N1ZW",
                                  "igst": 12372.12,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S LULU INDIA SHOPPING MALL PRIVATE LIMITED",
                                  "ttldocs": 3,
                                  "txval": 68734
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCA9123K1ZD",
                                  "igst": 7106.4,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AG POLY PACKS PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 39480
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCC7123A1ZV",
                                  "igst": 4305.6,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CLOUDSTUFF TECHNOLOGY PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 23920
                                },
                                {
                                  "cess": 0,
                                  "cgst": 126.75,
                                  "ctin": "09ABCCR1123P1ZL",
                                  "igst": 0,
                                  "sgst": 126.75,
                                  "supfildt": "15-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "M/S  RADICAL PALACE",
                                  "ttldocs": 1,
                                  "txval": 2112.5
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCFK5123H1ZZ",
                                  "igst": 41287,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KHAITAN & CO LLP",
                                  "ttldocs": 1,
                                  "txval": 229371
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCR1123J1ZC",
                                  "igst": 17209.33,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "ttldocs": 3,
                                  "txval": 95607.25
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCR3123F1Z6",
                                  "igst": 648000,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RISE APPLIANCES PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3600000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCA3123B1ZM",
                                  "igst": 43560,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ADZ2LEAD MEDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 242000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCFH4123C1ZY",
                                  "igst": 18000,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HIGHINTOWN MEDIA",
                                  "ttldocs": 1,
                                  "txval": 100000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCFH9123R1Z8",
                                  "igst": 12322.44,
                                  "sgst": 0,
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "M/s HEALTIFYING INDIA",
                                  "ttldocs": 1,
                                  "txval": 68458
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCFH9123R1Z8",
                                  "igst": 13125.06,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/s HEALTIFYING INDIA",
                                  "ttldocs": 1,
                                  "txval": 72917
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPT2123M1ZA",
                                  "igst": 1606.26,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MAHI ENTERPRISES",
                                  "ttldocs": 2,
                                  "txval": 8923.72
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPA8123E1Z4",
                                  "igst": 28753.92,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S TAJ BRUSH INDUSTRIES",
                                  "ttldocs": 4,
                                  "txval": 159744
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPB5123E1Z0",
                                  "igst": 900,
                                  "sgst": 0,
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "M/S BHATIA & SONS",
                                  "ttldocs": 1,
                                  "txval": 5000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPB5123E1Z0",
                                  "igst": 900,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S BHATIA & SONS",
                                  "ttldocs": 1,
                                  "txval": 5000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPA5123C1ZL",
                                  "igst": 810,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S HONEY TRADERS",
                                  "ttldocs": 1,
                                  "txval": 4500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPG4123N2ZS",
                                  "igst": 6300,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "APEX TRADING FIRM",
                                  "ttldocs": 5,
                                  "txval": 35000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPK4123N1ZE",
                                  "igst": 4260.51,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S G. S. ENTERPRISES",
                                  "ttldocs": 2,
                                  "txval": 23669.52
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPM6123N1ZP",
                                  "igst": 33361.02,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S GOODNESS OF NATURE",
                                  "ttldocs": 3,
                                  "txval": 185339
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPS0123E1ZQ",
                                  "igst": 5706.56,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ANALYTICS CLOUD",
                                  "ttldocs": 1,
                                  "txval": 31703.1
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCPS7123E1ZU",
                                  "igst": 6120,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S  LAKSHYA AGENCIES",
                                  "ttldocs": 4,
                                  "txval": 34000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 423.6,
                                  "ctin": "10ABCCJ7123L3ZH",
                                  "igst": 0,
                                  "sgst": 423.6,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL SRIYASH REGENCY",
                                  "ttldocs": 3,
                                  "txval": 7060
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "18ABCCA7123P3ZE",
                                  "igst": 5188.86,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SREENIWAS BASUDEO",
                                  "ttldocs": 1,
                                  "txval": 28827
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "18ABCCS8123M1ZQ",
                                  "igst": 2522.34,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SATI OIL UDYOG LTD",
                                  "ttldocs": 1,
                                  "txval": 14013
                                },
                                {
                                  "cess": 0,
                                  "cgst": 367.11,
                                  "ctin": "18ABCHS3123P1ZF",
                                  "igst": 0,
                                  "sgst": 367.11,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ADITYA RESIDENCY",
                                  "ttldocs": 4,
                                  "txval": 6118.44
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCCZ9123M1Z8",
                                  "igst": 31049.89,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BEARDO",
                                  "ttldocs": 5,
                                  "txval": 172662.08
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCCI2123B1ZZ",
                                  "igst": 138,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTER GLOBE AVIATION LTD.",
                                  "ttldocs": 2,
                                  "txval": 2762
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCHR3123M1ZN",
                                  "igst": 3240,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DILIP INTERNATIONAL",
                                  "ttldocs": 2,
                                  "txval": 18000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCCR1123J1ZB",
                                  "igst": 57717.77,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "ttldocs": 2,
                                  "txval": 320653.85
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCPC0123F1ZO",
                                  "igst": 1170,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "YASHI ENTERPRISE",
                                  "ttldocs": 1,
                                  "txval": 6500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCFS8123G1ZN",
                                  "igst": 5760,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SIDDHI VINAYAK",
                                  "ttldocs": 3,
                                  "txval": 32000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCPD2123D1Z8",
                                  "igst": 3240,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "K.B.ENTERPRISE",
                                  "ttldocs": 4,
                                  "txval": 18000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCPD7123K1ZA",
                                  "igst": 4770,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "NUTIX ENTERPRISE",
                                  "ttldocs": 2,
                                  "txval": 26500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCPD4123B1ZD",
                                  "igst": 1080,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIM MARKETING",
                                  "ttldocs": 1,
                                  "txval": 6000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCPS3123Q1Z8",
                                  "igst": 2430,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LOKENATH MARKETING",
                                  "ttldocs": 1,
                                  "txval": 13500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "20ABCCI2123B1ZG",
                                  "igst": 1169,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 3,
                                  "txval": 23384
                                },
                                {
                                  "cess": 0,
                                  "cgst": 94.62,
                                  "ctin": "20ABCCR3123R1Z5",
                                  "igst": 0,
                                  "sgst": 94.62,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Ruptub Solutions Private Limited",
                                  "ttldocs": 1,
                                  "txval": 1577.02
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "20ABCFO6123P1Z0",
                                  "igst": 8124.01,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OCTAADS MEDIA",
                                  "ttldocs": 1,
                                  "txval": 45133.4
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "20ABCCR1123J1ZS",
                                  "igst": 104.19,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "ttldocs": 1,
                                  "txval": 578.85
                                },
                                {
                                  "cess": 0,
                                  "cgst": 193.21,
                                  "ctin": "20ABCFS8123H1ZF",
                                  "igst": 0,
                                  "sgst": 193.21,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SURAMA HOSPITALITY",
                                  "ttldocs": 2,
                                  "txval": 2992.32
                                },
                                {
                                  "cess": 0,
                                  "cgst": 338.82,
                                  "ctin": "20ABCPS5123L1Z3",
                                  "igst": 0,
                                  "sgst": 338.82,
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "HOTEL THE CASTLE",
                                  "ttldocs": 5,
                                  "txval": 5997.06
                                },
                                {
                                  "cess": 0,
                                  "cgst": 196.08,
                                  "ctin": "21ABCCC7123R1ZN",
                                  "igst": 0,
                                  "sgst": 196.08,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CHAKADOLA ESTATES PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 3268
                                },
                                {
                                  "cess": 0,
                                  "cgst": 697.5,
                                  "ctin": "21ABCCM6123E1ZL",
                                  "igst": 0,
                                  "sgst": 697.5,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S MAYFAIR HOTELS & RESORTS LTD.",
                                  "ttldocs": 2,
                                  "txval": 11625
                                },
                                {
                                  "cess": 0,
                                  "cgst": 94.44,
                                  "ctin": "21ABCCR3123R1Z3",
                                  "igst": 0,
                                  "sgst": 94.44,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Ruptub Solutions Private Limited",
                                  "ttldocs": 1,
                                  "txval": 1574.06
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "21ABCFD2123K1ZO",
                                  "igst": 468,
                                  "sgst": 0,
                                  "supfildt": "20-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "DIGVIJAY INTERNATIONAL",
                                  "ttldocs": 1,
                                  "txval": 3900
                                },
                                {
                                  "cess": 0,
                                  "cgst": 177.8,
                                  "ctin": "21ABCFJ2123H1ZB",
                                  "igst": 0,
                                  "sgst": 177.8,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "JN SHARMA",
                                  "ttldocs": 4,
                                  "txval": 3214.5
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "21ABCFA6123L2Z6",
                                  "igst": 214.69,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ASP GROUP",
                                  "ttldocs": 1,
                                  "txval": 1789.1
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "21ABCPP5123C1ZB",
                                  "igst": 13131.36,
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FASHLAB RETAILZ",
                                  "ttldocs": 1,
                                  "txval": 72952
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "22ABCPL4123Q1ZE",
                                  "igst": 4320,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LAXMI TRADING",
                                  "ttldocs": 1,
                                  "txval": 24000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "23ABCCI2123B1ZA",
                                  "igst": 622,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 1,
                                  "txval": 12412
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "23ABCPK0123P1Z1",
                                  "igst": 900,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Khandelwal Agency",
                                  "ttldocs": 1,
                                  "txval": 5000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "23ABCPD3123J1Z9",
                                  "igst": 9535.32,
                                  "sgst": 0,
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "Raghunath Associates",
                                  "ttldocs": 1,
                                  "txval": 52974
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "23ABCPD3123J1Z9",
                                  "igst": 10056.6,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Raghunath Associates",
                                  "ttldocs": 1,
                                  "txval": 55870
                                },
                                {
                                  "cess": 0,
                                  "cgst": 84856.06,
                                  "ctin": "24ABCCB0123L1ZY",
                                  "igst": 0,
                                  "sgst": 84856.06,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BLUE DART EXPRESS LIMITED",
                                  "ttldocs": 6,
                                  "txval": 942845.09
                                },
                                {
                                  "cess": 0,
                                  "cgst": 89.91,
                                  "ctin": "24ABCCB2123G1ZT",
                                  "igst": 0,
                                  "sgst": 89.91,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "ttldocs": 1,
                                  "txval": 999
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1631.65,
                                  "ctin": "24ABCCI1123G1Z9",
                                  "igst": 0,
                                  "sgst": 1631.65,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INDUSIND BANK LTD.",
                                  "ttldocs": 6,
                                  "txval": 18129.39
                                },
                                {
                                  "cess": 0,
                                  "cgst": 176.68,
                                  "ctin": "24ABCCI4123F1Z2",
                                  "igst": 0,
                                  "sgst": 176.68,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LORDS ISHWAR HOTELS LIMITED",
                                  "ttldocs": 2,
                                  "txval": 3425.91
                                },
                                {
                                  "cess": 0,
                                  "cgst": 3176.93,
                                  "ctin": "24ABCCK4123J1ZQ",
                                  "igst": 0,
                                  "sgst": 3176.88,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KOTAK MAHINDRA BANK LTD.",
                                  "ttldocs": 21,
                                  "txval": 35298.97
                                },
                                {
                                  "cess": 0,
                                  "cgst": 3842.64,
                                  "ctin": "24ABCCL2123Q1Z8",
                                  "igst": 0,
                                  "sgst": 3842.64,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LETRA GRAPHIX PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 42696
                                },
                                {
                                  "cess": 0,
                                  "cgst": 14878.08,
                                  "ctin": "24ABCCM7123G2ZC",
                                  "igst": 0,
                                  "sgst": 14878.08,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED",
                                  "ttldocs": 2,
                                  "txval": 165312
                                },
                                {
                                  "cess": 0,
                                  "cgst": 5233.05,
                                  "ctin": "24ABCCP9123M1ZV",
                                  "igst": 0,
                                  "sgst": 5233.05,
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "PRINT VISION PVT LTD.",
                                  "ttldocs": 2,
                                  "txval": 58145
                                },
                                {
                                  "cess": 0,
                                  "cgst": 11318.4,
                                  "ctin": "24ABCCP9123M1ZV",
                                  "igst": 0,
                                  "sgst": 11318.4,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PRINT VISION PVT LTD.",
                                  "ttldocs": 2,
                                  "txval": 125760
                                },
                                {
                                  "cess": 0,
                                  "cgst": 24736.5,
                                  "ctin": "24ABCCU2123H1ZQ",
                                  "igst": 0,
                                  "sgst": 24736.5,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "UNICK FIX A FORM AND PRINTERS LIMITED",
                                  "ttldocs": 11,
                                  "txval": 274850
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1762.02,
                                  "ctin": "24ABCLS1123E1Z9",
                                  "igst": 0,
                                  "sgst": 1762.02,
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "SHREE EMPIRE STATE SHOP OFFICES & PREMISES CO OP  HSG SOC LIMITED",
                                  "ttldocs": 4,
                                  "txval": 19578
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1123.51,
                                  "ctin": "24ABCCC2123N1ZU",
                                  "igst": 0,
                                  "sgst": 1123.51,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CESC LIMITED",
                                  "ttldocs": 2,
                                  "txval": 12483.3
                                },
                                {
                                  "cess": 0,
                                  "cgst": 3513.5,
                                  "ctin": "24ABCCI2123B1Z8",
                                  "igst": 0,
                                  "sgst": 3513.5,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 29,
                                  "txval": 138834
                                },
                                {
                                  "cess": 0,
                                  "cgst": 394.71,
                                  "ctin": "24ABCCI6123G1ZP",
                                  "igst": 0,
                                  "sgst": 394.71,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Reliance Jio Infocomm  Limited",
                                  "ttldocs": 2,
                                  "txval": 4385.7
                                },
                                {
                                  "cess": 0,
                                  "cgst": 196.47,
                                  "ctin": "24ABCCL5123N1ZE",
                                  "igst": 0,
                                  "sgst": 196.47,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "ttldocs": 2,
                                  "txval": 2183
                                },
                                {
                                  "cess": 0,
                                  "cgst": 11246.54,
                                  "ctin": "24ABCCT3123Q1Z2",
                                  "igst": 0,
                                  "sgst": 11246.54,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA AIG GENERAL INSURANCE COMPANY LIMITED",
                                  "ttldocs": 1,
                                  "txval": 124961.57
                                },
                                {
                                  "cess": 0,
                                  "cgst": 160.39,
                                  "ctin": "24ABCFH5123Q1Z1",
                                  "igst": 0,
                                  "sgst": 160.39,
                                  "supfildt": "07-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HETAL CORPORATION",
                                  "ttldocs": 1,
                                  "txval": 2840
                                },
                                {
                                  "cess": 0,
                                  "cgst": 10932,
                                  "ctin": "24ABCCD5123R1ZZ",
                                  "igst": 0,
                                  "sgst": 10932,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VR Surat Private Limited",
                                  "ttldocs": 2,
                                  "txval": 121459
                                },
                                {
                                  "cess": 0,
                                  "cgst": 170.33,
                                  "ctin": "24ABCCF0123K1ZN",
                                  "igst": 0,
                                  "sgst": 170.33,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 1892.52
                                },
                                {
                                  "cess": 0,
                                  "cgst": 559,
                                  "ctin": "24ABCCN6123P1ZV",
                                  "igst": 0,
                                  "sgst": 559,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED",
                                  "ttldocs": 1,
                                  "txval": 22350
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1620.97,
                                  "ctin": "24ABCCO2123E1Z3",
                                  "igst": 0,
                                  "sgst": 1620.97,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OZONETEL COMMUNICATIONS PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 18010.8
                                },
                                {
                                  "cess": 0,
                                  "cgst": 544.84,
                                  "ctin": "24ABCCS9123J3ZY",
                                  "igst": 0,
                                  "sgst": 544.84,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMBROSIA",
                                  "ttldocs": 2,
                                  "txval": 9265.57
                                },
                                {
                                  "cess": 0,
                                  "cgst": 5902.06,
                                  "ctin": "24ABCFK0123D3ZN",
                                  "igst": 0,
                                  "sgst": 5902.06,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KAY KAY OVERSEAS CORPORATION",
                                  "ttldocs": 1,
                                  "txval": 65578.44
                                },
                                {
                                  "cess": 0,
                                  "cgst": 31405.89,
                                  "ctin": "24ABCHC5123N1ZB",
                                  "igst": 0,
                                  "sgst": 31405.89,
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ACCURATE PRINTERS",
                                  "ttldocs": 3,
                                  "txval": 481662.5
                                },
                                {
                                  "cess": 0,
                                  "cgst": 3439.21,
                                  "ctin": "24ABCCO2123N1Z8",
                                  "igst": 0,
                                  "sgst": 3439.21,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OCTAVOS ENTERPRISE SOLUTIONS PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 38213.52
                                },
                                {
                                  "cess": 0,
                                  "cgst": 54.03,
                                  "ctin": "24ABCCJ6123N1ZU",
                                  "igst": 0,
                                  "sgst": 54.03,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "JIO PLATFORMS LIMITED",
                                  "ttldocs": 1,
                                  "txval": 600.3
                                },
                                {
                                  "cess": 0,
                                  "cgst": 254,
                                  "ctin": "24ABCCT8123F6Z5",
                                  "igst": 0,
                                  "sgst": 254,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "ttldocs": 2,
                                  "txval": 10160
                                },
                                {
                                  "cess": 0,
                                  "cgst": 57956.3,
                                  "ctin": "24ABCCB0123F1Z2",
                                  "igst": 0,
                                  "sgst": 57956.3,
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "BEST VOYAGE PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 2318252
                                },
                                {
                                  "cess": 0,
                                  "cgst": 601715.06,
                                  "ctin": "24ABCCH7123H1ZK",
                                  "igst": 0,
                                  "sgst": 601715.06,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HCP WELLNESS PRIVATE LIMITED",
                                  "ttldocs": 66,
                                  "txval": 6685722.62
                                },
                                {
                                  "cess": 0,
                                  "cgst": 2823.15,
                                  "ctin": "24ABCCT2123C1ZZ",
                                  "igst": 0,
                                  "sgst": 2823.15,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TORQUE COMMERCIAL VEHICLES PRIVATE LTD",
                                  "ttldocs": 2,
                                  "txval": 25111.79
                                },
                                {
                                  "cess": 0,
                                  "cgst": 226200.78,
                                  "ctin": "24ABCCR4123K1ZR",
                                  "igst": 0,
                                  "sgst": 226200.78,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RPM LOGISTICS PRIVATE LIMITED",
                                  "ttldocs": 13,
                                  "txval": 2513342
                                },
                                {
                                  "cess": 0,
                                  "cgst": 5867.1,
                                  "ctin": "24ABCFI6123Q1ZT",
                                  "igst": 0,
                                  "sgst": 5867.1,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "IMAGE TECH",
                                  "ttldocs": 4,
                                  "txval": 65190
                                },
                                {
                                  "cess": 0,
                                  "cgst": 13270.32,
                                  "ctin": "24ABCFJ6123A1ZG",
                                  "igst": 0,
                                  "sgst": 13270.32,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "JAIN SOAP",
                                  "ttldocs": 2,
                                  "txval": 147448
                                },
                                {
                                  "cess": 0,
                                  "cgst": 25487.26,
                                  "ctin": "24ABCCA3123J1ZO",
                                  "igst": 0,
                                  "sgst": 25487.26,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "ttldocs": 1,
                                  "txval": 283193.66
                                },
                                {
                                  "cess": 0,
                                  "cgst": 250.86,
                                  "ctin": "24ABCCC9123E1ZD",
                                  "igst": 0,
                                  "sgst": 250.86,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CLICKTECH RETAIL PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 2787.28
                                },
                                {
                                  "cess": 0,
                                  "cgst": 45542.87,
                                  "ctin": "24ABCFC0123D1ZZ",
                                  "igst": 0,
                                  "sgst": 45542.87,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CALISTTA HEALTHCARE",
                                  "ttldocs": 16,
                                  "txval": 506031.8
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1501.41,
                                  "ctin": "24ABCCS2123L1ZO",
                                  "igst": 0,
                                  "sgst": 1501.41,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SHIVA SATYA HOTELS PVT.LTD",
                                  "ttldocs": 5,
                                  "txval": 24849
                                },
                                {
                                  "cess": 0,
                                  "cgst": 936,
                                  "ctin": "24ABCFH7123D1ZF",
                                  "igst": 0,
                                  "sgst": 936,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HRI CREATION LLP",
                                  "ttldocs": 1,
                                  "txval": 10400
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1050.57,
                                  "ctin": "24ABCFH9123Q1ZL",
                                  "igst": 0,
                                  "sgst": 1050.57,
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "HP E-TECH",
                                  "ttldocs": 1,
                                  "txval": 11673
                                },
                                {
                                  "cess": 0,
                                  "cgst": 6795,
                                  "ctin": "24ABCFP3123D2ZG",
                                  "igst": 0,
                                  "sgst": 6795,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "P A PAREKH AND CO",
                                  "ttldocs": 3,
                                  "txval": 75500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 26615.03,
                                  "ctin": "24ABCFA0123E1ZY",
                                  "igst": 0,
                                  "sgst": 26615.03,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AEGIS PACKAGING",
                                  "ttldocs": 7,
                                  "txval": 295722.5
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1377,
                                  "ctin": "24ABCFB1123A1ZW",
                                  "igst": 0,
                                  "sgst": 1377,
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "BEST VOYAGE DOMESTIC LLP",
                                  "ttldocs": 9,
                                  "txval": 15300
                                },
                                {
                                  "cess": 0,
                                  "cgst": 7517.81,
                                  "ctin": "24ABCCS2123B1ZA",
                                  "igst": 0,
                                  "sgst": 7517.81,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VIVA PACK PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 83531.25
                                },
                                {
                                  "cess": 0,
                                  "cgst": 2970,
                                  "ctin": "24ABCFA9123E1ZR",
                                  "igst": 0,
                                  "sgst": 2970,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMBA MULTIPRINT",
                                  "ttldocs": 1,
                                  "txval": 33000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 9576,
                                  "ctin": "24ABCPL9123J1ZB",
                                  "igst": 0,
                                  "sgst": 9576,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "K MANOHAR THE BAG MART",
                                  "ttldocs": 1,
                                  "txval": 106400
                                },
                                {
                                  "cess": 0,
                                  "cgst": 198.15,
                                  "ctin": "24ABCCS9123P1ZI",
                                  "igst": 0,
                                  "sgst": 198.15,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 7926
                                },
                                {
                                  "cess": 0,
                                  "cgst": 23535,
                                  "ctin": "24ABCFS6123A1ZM",
                                  "igst": 0,
                                  "sgst": 23535,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SANKALP IN",
                                  "ttldocs": 1,
                                  "txval": 261500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 201.6,
                                  "ctin": "24ABCFS8123M1ZI",
                                  "igst": 0,
                                  "sgst": 201.6,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SHREE  MAHAVEER  STATIONERY MART",
                                  "ttldocs": 1,
                                  "txval": 3140
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1800,
                                  "ctin": "24ABCPP5123J1ZB",
                                  "igst": 0,
                                  "sgst": 1800,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Velvet Cosmetics",
                                  "ttldocs": 2,
                                  "txval": 20000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 43013.07,
                                  "ctin": "24ABCPD7123G1Z3",
                                  "igst": 0,
                                  "sgst": 43013.07,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PERFECT PACKAGING",
                                  "ttldocs": 11,
                                  "txval": 477923
                                },
                                {
                                  "cess": 0,
                                  "cgst": 6750,
                                  "ctin": "24ABCPV2123F1ZB",
                                  "igst": 0,
                                  "sgst": 6750,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "The Drum Circle",
                                  "ttldocs": 1,
                                  "txval": 75000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 5836.05,
                                  "ctin": "24ABCPC3123E1ZL",
                                  "igst": 0,
                                  "sgst": 5836.05,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SONEE CREATION",
                                  "ttldocs": 2,
                                  "txval": 64845
                                },
                                {
                                  "cess": 0,
                                  "cgst": 3095.19,
                                  "ctin": "24ABCPP2123G1ZI",
                                  "igst": 0,
                                  "sgst": 3095.19,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARUTI CORPORATION",
                                  "ttldocs": 1,
                                  "txval": 34391
                                },
                                {
                                  "cess": 0,
                                  "cgst": 2371.25,
                                  "ctin": "24ABCPB1123D1ZX",
                                  "igst": 0,
                                  "sgst": 2371.25,
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ORION INC.",
                                  "ttldocs": 2,
                                  "txval": 94850
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1080,
                                  "ctin": "24ABCPB6123C1Z8",
                                  "igst": 0,
                                  "sgst": 1080,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MEHAR EVENT",
                                  "ttldocs": 1,
                                  "txval": 12000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 2340,
                                  "ctin": "24ABCPB5123H1ZD",
                                  "igst": 0,
                                  "sgst": 2340,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SHAKTI ENTERPRISE",
                                  "ttldocs": 2,
                                  "txval": 26000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 27961.03,
                                  "ctin": "24ABCPS2123A2Z8",
                                  "igst": 0,
                                  "sgst": 27961.03,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MG VIP LOUNGE",
                                  "ttldocs": 2,
                                  "txval": 310678.04
                                },
                                {
                                  "cess": 0,
                                  "cgst": 17098.38,
                                  "ctin": "24ABCPM9123Q1ZB",
                                  "igst": 0,
                                  "sgst": 17098.38,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "8 SENSE",
                                  "ttldocs": 2,
                                  "txval": 189982
                                },
                                {
                                  "cess": 0,
                                  "cgst": 3033,
                                  "ctin": "24ABCPS3123G1ZW",
                                  "igst": 0,
                                  "sgst": 3033,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ADARSH ENTERPRISE",
                                  "ttldocs": 2,
                                  "txval": 33700
                                },
                                {
                                  "cess": 0,
                                  "cgst": 9450,
                                  "ctin": "24ABCPV3123J1ZT",
                                  "igst": 0,
                                  "sgst": 9450,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PRIME PACKMART",
                                  "ttldocs": 1,
                                  "txval": 105000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1620,
                                  "ctin": "24ABCPP0123D1ZS",
                                  "igst": 0,
                                  "sgst": 1620,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RIYANSH ENTERPRISE",
                                  "ttldocs": 1,
                                  "txval": 18000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 5668.65,
                                  "ctin": "24ABCPS0123H1Z0",
                                  "igst": 0,
                                  "sgst": 5668.65,
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MAGIK WINGS",
                                  "ttldocs": 1,
                                  "txval": 62985
                                },
                                {
                                  "cess": 0,
                                  "cgst": 942.93,
                                  "ctin": "24ABCPP8123D1Z7",
                                  "igst": 0,
                                  "sgst": 942.93,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Think Printz Solutions",
                                  "ttldocs": 5,
                                  "txval": 10477
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "26ABCCR9123B1ZM",
                                  "igst": 100922.06,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RADCOM PACKAGING PRIVATE LIMITED",
                                  "ttldocs": 3,
                                  "txval": 560678.08
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCA9123A1ZP",
                                  "igst": 33052.32,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ANTRAWEB TECHNOLOGIES PVT LTD",
                                  "ttldocs": 2,
                                  "txval": 183624
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCM7123G1Z7",
                                  "igst": 1028231.58,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED",
                                  "ttldocs": 58,
                                  "txval": 5712397.42
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCW7123P1ZH",
                                  "igst": 71302.68,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "WELLNESS FOREVER MEDICARE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 396126
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCZ9123M1ZB",
                                  "igst": 18890.71,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Zed Lifestyle Private Limited",
                                  "ttldocs": 3,
                                  "txval": 104948.39
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFB2123J1ZH",
                                  "igst": 21427.2,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "022024",
                                  "trdnm": "BRITO PLAST",
                                  "ttldocs": 4,
                                  "txval": 119040
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCI2123B1Z2",
                                  "igst": 1409,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 7,
                                  "txval": 28164
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCL5123N1Z8",
                                  "igst": 68400,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "ttldocs": 1,
                                  "txval": 380000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCL7123P1ZR",
                                  "igst": 5940,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LETTERSHOP INDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 33000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCO1123H1ZM",
                                  "igst": 21512.7,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OCEAN GATE CONTAINER TERMINALS PVT LTD",
                                  "ttldocs": 1,
                                  "txval": 119515
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCO1123G1ZZ",
                                  "igst": 32400,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "OML ENTERTAINMENT PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 180000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCR1123E1ZP",
                                  "igst": 6780.74,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "ttldocs": 30,
                                  "txval": 37669.06
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPB5123P1ZH",
                                  "igst": 2700,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BEAUTY PALACE",
                                  "ttldocs": 1,
                                  "txval": 15000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPN2123F1ZQ",
                                  "igst": 594000,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HRITHIK ROSHAN",
                                  "ttldocs": 1,
                                  "txval": 3300000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCN6123P1ZP",
                                  "igst": 654,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED",
                                  "ttldocs": 2,
                                  "txval": 13073
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "igst": 409475.88,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KAY KAY OVERSEAS CORPORATION",
                                  "ttldocs": 1,
                                  "txval": 2274866
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFB3123J1ZR",
                                  "igst": 13500,
                                  "sgst": 0,
                                  "supfildt": "25-03-2024",
                                  "supprd": "012024",
                                  "trdnm": "BEAUTY CENTRE",
                                  "ttldocs": 3,
                                  "txval": 75000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFW2123G1ZC",
                                  "igst": 7920,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "WHITE BOX",
                                  "ttldocs": 1,
                                  "txval": 44000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPS2123L1ZC",
                                  "igst": 50.45,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "T.K. ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 280.26
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCT8123F1Z4",
                                  "igst": 844,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "ttldocs": 4,
                                  "txval": 16880
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCV5123G1Z5",
                                  "igst": 40640.84,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VIHAAN WEB SOLUTIONS PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 225782.47
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "igst": 135000,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KHAITAN AND CO",
                                  "ttldocs": 2,
                                  "txval": 750000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCC1123M1Z7",
                                  "igst": 36900,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "COINTAB SOFTWARE PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 205000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCH5123M1Z9",
                                  "igst": 847476,
                                  "sgst": 0,
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOOLI BRANDS MULTI TRADING PRIVATE LIMITED",
                                  "ttldocs": 7,
                                  "txval": 4708200
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCI1123J1ZE",
                                  "igst": 553022.15,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ITHINK LOGISTIC QUICK SERVICES PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3072345.27
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCC7123L1ZY",
                                  "igst": 50349.6,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CITIUS BPO (INDIA) PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 279720
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCP5123D1ZQ",
                                  "igst": 57600,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "POCKET ACES PICTURES PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 320000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCR2123A1ZP",
                                  "igst": 144000,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RVCJ DIGITAL MEDIA PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 800000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFL1123H1ZZ",
                                  "igst": 11052,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LIFESTYLE CARE",
                                  "ttldocs": 1,
                                  "txval": 61400
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCM2123P1ZV",
                                  "igst": 3389.63,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MOBLIGENT MEDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 18831
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFC0123B1ZZ",
                                  "igst": 42640.12,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "CLARA INTERNATIONAL LLP",
                                  "ttldocs": 2,
                                  "txval": 236889.6
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFS6123P1Z0",
                                  "igst": 1080,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SAMRUDDHI ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 6000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCS2123M1Z5",
                                  "igst": 0.39,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "EASEBUZZ PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 2.15
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFB8123J1ZT",
                                  "igst": 1260,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BEAUTY GLOW",
                                  "ttldocs": 1,
                                  "txval": 7000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPS7123E1ZK",
                                  "igst": 17425.8,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ROSHAN PACKAGING INDUSTRIES",
                                  "ttldocs": 1,
                                  "txval": 96810
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCS9123P1ZC",
                                  "igst": 776.35,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 3,
                                  "txval": 15527
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFS2123H1ZC",
                                  "igst": 26058.24,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SUHAN AEROSOL",
                                  "ttldocs": 1,
                                  "txval": 144768
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPY7123N2ZJ",
                                  "igst": 36633.25,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ANSH ENTERPRISES",
                                  "ttldocs": 12,
                                  "txval": 620408
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPP6123Q1Z4",
                                  "igst": 66132.02,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TECHNO ENTERPRISE",
                                  "ttldocs": 2,
                                  "txval": 367400
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPB4123A1ZV",
                                  "igst": 16610.4,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VERSION NEXT & OJAS INDUSTRIES",
                                  "ttldocs": 1,
                                  "txval": 92280
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPM9123A1ZX",
                                  "igst": 12600,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Akanksha Mota & Co",
                                  "ttldocs": 1,
                                  "txval": 70000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPG7123Q1ZZ",
                                  "igst": 1350,
                                  "sgst": 0,
                                  "supfildt": "19-03-2024",
                                  "supprd": "012024",
                                  "trdnm": "A A Garg & co",
                                  "ttldocs": 1,
                                  "txval": 7500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPG7123Q1ZZ",
                                  "igst": 1350,
                                  "sgst": 0,
                                  "supfildt": "03-04-2024",
                                  "supprd": "022024",
                                  "trdnm": "A A Garg & co",
                                  "ttldocs": 1,
                                  "txval": 7500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPS7123F1Z5",
                                  "igst": 57232.08,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RIGHT WRITING ENTERPRISES / HEET EXPORTS",
                                  "ttldocs": 1,
                                  "txval": 317956
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPK3123B1ZW",
                                  "igst": 1800,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BEAUTY BAZAAR",
                                  "ttldocs": 1,
                                  "txval": 10000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPM1123L1Z8",
                                  "igst": 1800,
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SUNNY ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 10000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPM7123K1ZX",
                                  "igst": 50155.2,
                                  "sgst": 0,
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DEV ENTERPRISE",
                                  "ttldocs": 1,
                                  "txval": 278640
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPP2123R1ZS",
                                  "igst": 68808,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "E COMM",
                                  "ttldocs": 2,
                                  "txval": 573400
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPB2123L1ZA",
                                  "igst": 255332.7,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Finesse Records",
                                  "ttldocs": 5,
                                  "txval": 1418515
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPK9123P2ZD",
                                  "igst": 10800,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S IP CRIME VIGILANCE",
                                  "ttldocs": 1,
                                  "txval": 60000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPS7123C1Z3",
                                  "igst": 2520,
                                  "sgst": 0,
                                  "supfildt": "20-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "R R Beauty World Thane",
                                  "ttldocs": 1,
                                  "txval": 14000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCQ3123A2ZI",
                                  "igst": 48559.91,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MYNTRA JABONG INDIA PRIVATE LIMITED",
                                  "ttldocs": 7,
                                  "txval": 269777.26
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCZ9123M1Z7",
                                  "igst": 27684.45,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Beardo",
                                  "ttldocs": 5,
                                  "txval": 154039.14
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCL0123H1ZY",
                                  "igst": 9000,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LULU INTERNATIONAL SHOPPING MALLS PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 50000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCF0123K1ZD",
                                  "igst": 4761207.99,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "ttldocs": 8,
                                  "txval": 26451155.55
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCV9123F1ZY",
                                  "igst": 817.74,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VALUELEAF SERVICES INDIA PVT LTD",
                                  "ttldocs": 1,
                                  "txval": 4543
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCF9123P1Z1",
                                  "igst": 2086.2,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLASHMONK PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 11590
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCN7123J1ZM",
                                  "igst": 3879.18,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Nxtify Technologies Private Limited",
                                  "ttldocs": 1,
                                  "txval": 21551
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCR0123M2ZY",
                                  "igst": 6853559.04,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "ttldocs": 4,
                                  "txval": 38075328
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCB7123D1ZQ",
                                  "igst": 54000,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Swiggy",
                                  "ttldocs": 1,
                                  "txval": 300000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCD6123Q1ZS",
                                  "igst": 347905.84,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DREAMPLUG TECHNOLOGIES PRIVATE LIMITED",
                                  "ttldocs": 12,
                                  "txval": 1932810.16
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCR4123J1ZU",
                                  "igst": 10212.9,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RAZORPAY SOFTWARE PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 56738.35
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCA3123J1ZE",
                                  "igst": 781902.83,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "ttldocs": 7,
                                  "txval": 4343905.86
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCK0123H1ZU",
                                  "igst": 4500,
                                  "sgst": 0,
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "Kofluence Tech Private Limited",
                                  "ttldocs": 1,
                                  "txval": 25000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCV3123N1ZW",
                                  "igst": 9.15,
                                  "sgst": 0,
                                  "supfildt": "26-03-2024",
                                  "supprd": "012024",
                                  "trdnm": "VOLOPAY INDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 50.85
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCV3123N1ZW",
                                  "igst": 18.3,
                                  "sgst": 0,
                                  "supfildt": "26-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "VOLOPAY INDIA PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 101.69
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCA4123P1ZJ",
                                  "igst": 108.52,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIX CONNECT PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 2170.48
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCPV5123M1ZS",
                                  "igst": 3240,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SRI DURGA ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 18000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCFS2123A1ZO",
                                  "igst": 5184,
                                  "sgst": 0,
                                  "supfildt": "02-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "STERLING BOX & PACKS",
                                  "ttldocs": 1,
                                  "txval": 28800
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCPC5123H1Z2",
                                  "igst": 14400,
                                  "sgst": 0,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Suresh Marketing",
                                  "ttldocs": 2,
                                  "txval": 80000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCPM1123J1Z6",
                                  "igst": 5670,
                                  "sgst": 0,
                                  "supfildt": "24-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "MEENA SALES",
                                  "ttldocs": 1,
                                  "txval": 31500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "30ABCCI2123B1ZF",
                                  "igst": 2463,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE  AVIATION LIMITED",
                                  "ttldocs": 3,
                                  "txval": 47512
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "32ABCCA1123B1ZP",
                                  "igst": 155,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ALLIANCE AIR AVIATION LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3100
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "32ABCCI2123B1ZB",
                                  "igst": 400,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 1,
                                  "txval": 7989
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "32ABCCL0123H1ZB",
                                  "igst": 97200,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "LULU INTERNATIONAL SHOPPING MALLS PRIVATE LIMITED",
                                  "ttldocs": 3,
                                  "txval": 540000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 281.58,
                                  "ctin": "32ABCCP0123D2ZC",
                                  "igst": 0,
                                  "sgst": 281.58,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL HORIZON",
                                  "ttldocs": 1,
                                  "txval": 4693
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "32ABCCR1123E1ZY",
                                  "igst": 10800,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "ttldocs": 1,
                                  "txval": 60000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "32ABCFO2123G1ZJ",
                                  "igst": 585.45,
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Orchid suits cochin",
                                  "ttldocs": 1,
                                  "txval": 4878.72
                                },
                                {
                                  "cess": 0,
                                  "cgst": 106.53,
                                  "ctin": "32ABCCR3123R1Z0",
                                  "igst": 0,
                                  "sgst": 106.53,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TREEBO HOTELS",
                                  "ttldocs": 1,
                                  "txval": 1775.59
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "32ABCFG4123J1ZK",
                                  "igst": 365.94,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "GREENS INDUSTRIES",
                                  "ttldocs": 1,
                                  "txval": 2033.05
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCM7123G1ZE",
                                  "igst": 234547.1,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED",
                                  "ttldocs": 3,
                                  "txval": 1303039.44
                                },
                                {
                                  "cess": 0,
                                  "cgst": 286.15,
                                  "ctin": "33ABCCP2123P1Z4",
                                  "igst": 0,
                                  "sgst": 286.15,
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "PRIDE HOTELS LIMITED",
                                  "ttldocs": 1,
                                  "txval": 4769.1
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCA5123G1ZA",
                                  "igst": 2754,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ALLSEC TECHNOLOGIES LTD",
                                  "ttldocs": 1,
                                  "txval": 15300
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCN6123P2ZV",
                                  "igst": 175,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3490
                                },
                                {
                                  "cess": 0,
                                  "cgst": 235.47,
                                  "ctin": "33ABCCU6123F1ZT",
                                  "igst": 0,
                                  "sgst": 235.47,
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "UPAR HOSPITALITY PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3924.46
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCT8123F1ZB",
                                  "igst": 177,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA Airlines Limited",
                                  "ttldocs": 1,
                                  "txval": 3540
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCT6123J1ZV",
                                  "igst": 2202336.54,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "3 POINT HUMAN CAPITAL PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 12235203
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCP0123Q1ZZ",
                                  "igst": 13115.16,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PAULSONS BEAUTY AND FASHION PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 72862
                                },
                                {
                                  "cess": 0,
                                  "cgst": 480,
                                  "ctin": "33ABCFG3123R1ZP",
                                  "igst": 0,
                                  "sgst": 480,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "GREENS GATE",
                                  "ttldocs": 1,
                                  "txval": 8000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCPH2123N1ZA",
                                  "igst": 2052,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PAPER MAX",
                                  "ttldocs": 1,
                                  "txval": 11400
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCPV2123K1ZS",
                                  "igst": 3060,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SUPER MARKETING",
                                  "ttldocs": 2,
                                  "txval": 17000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCPB4123F1Z5",
                                  "igst": 39368.16,
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RICH VENTURES",
                                  "ttldocs": 4,
                                  "txval": 218712
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCCI2123B1Z3",
                                  "igst": 361,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTER GLOBE AVIATION LIMITED INDIGO",
                                  "ttldocs": 2,
                                  "txval": 6122
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCCG6123L1ZD",
                                  "igst": 54723.06,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Google India Digital Services Private Limited",
                                  "ttldocs": 1,
                                  "txval": 304016.98
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCCR1123J1ZF",
                                  "igst": 6929.82,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "ttldocs": 2,
                                  "txval": 38499
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCCM2123D1ZJ",
                                  "igst": 4500,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MAPLEMONK PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 25000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCFD0123D1ZE",
                                  "igst": 3600,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DEV DISTRIBUTIONS LLP",
                                  "ttldocs": 2,
                                  "txval": 20000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCPS0123D1ZU",
                                  "igst": 53628.3,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PREETIS HOUSE OF PACKAGING",
                                  "ttldocs": 3,
                                  "txval": 297935
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "37ABCCI2123B1Z1",
                                  "igst": 743,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 2,
                                  "txval": 14876
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "37ABCCR1123J1ZD",
                                  "igst": 10474.77,
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "ttldocs": 2,
                                  "txval": 58193.05
                                },
                                {
                                  "cess": 0,
                                  "cgst": 375,
                                  "ctin": "37ABCFH6123A1ZL",
                                  "igst": 0,
                                  "sgst": 375,
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOTEL KALINGA ENTERPRISES",
                                  "ttldocs": 1,
                                  "txval": 6250
                                }
                              ],
                              "cdnr": [
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCT8123F1Z6",
                                  "igst": 123,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "ttldocs": 2,
                                  "txval": 2460
                                },
                                {
                                  "cess": 0,
                                  "cgst": 14,
                                  "ctin": "24ABCCT8123F6Z5",
                                  "igst": 0,
                                  "nttyp": "D",
                                  "sgst": 14,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "ttldocs": 1,
                                  "txval": 560
                                },
                                {
                                  "cess": 0,
                                  "cgst": 621.45,
                                  "ctin": "24ABCCS9123P1ZI",
                                  "igst": 0,
                                  "nttyp": "D",
                                  "sgst": 621.45,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 7,
                                  "txval": 24858
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCM7123G1Z7",
                                  "igst": 2901.6,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED",
                                  "ttldocs": 1,
                                  "txval": 0.01
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCF0123R2Z8",
                                  "igst": 892.19,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FUTURE GENERALI INDIA INSURANCE COMPANY LIMITED",
                                  "ttldocs": 1,
                                  "txval": 4956.63
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCR1123E1ZP",
                                  "igst": 69.66,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "ttldocs": 12,
                                  "txval": 387
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCT8123F1Z4",
                                  "igst": 58,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "ttldocs": 1,
                                  "txval": 1160
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCF0123K1ZD",
                                  "igst": 30.57,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 169.85
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCS9123P1Z8",
                                  "igst": 392.25,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 7845
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "30ABCCS9123P1ZP",
                                  "igst": 9.4,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 188
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCN6123P2ZV",
                                  "igst": 135.43,
                                  "nttyp": "D",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED",
                                  "ttldocs": 1,
                                  "txval": 2708.57
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCCI2123B1ZC",
                                  "igst": 496,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBAL AVATION LTD.",
                                  "ttldocs": 1,
                                  "txval": 8163
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "03ABCPP9123A1Z2",
                                  "igst": 2882.75,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PB 10 TRADERS",
                                  "ttldocs": 1,
                                  "txval": 16015.25
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCCM5123R1ZZ",
                                  "igst": 7.47,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "16-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "MAKE MY TRIP (INDIA) PVT. LTD.",
                                  "ttldocs": 3,
                                  "txval": 41.53
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "06ABCFT9123N1ZF",
                                  "igst": 137477.59,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "THE PACK PARTNERS",
                                  "ttldocs": 5,
                                  "txval": 763764.4
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCR7123G1ZL",
                                  "igst": 6643.03,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "R I AYURVEDA RESEARCH LABS (A UNIT OF RAM LAL INDER LAL PVT. LTD.)",
                                  "ttldocs": 3,
                                  "txval": 36905.73
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCI2123B1Z4",
                                  "igst": 1815,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "Interglobe Aviation Limited",
                                  "ttldocs": 9,
                                  "txval": 33711
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCCV5123Q1ZK",
                                  "igst": 154007.69,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "VELVET GROOMING PRIVATE LIMITED",
                                  "ttldocs": 4,
                                  "txval": 869383.14
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPV3123Q1ZT",
                                  "igst": 6660,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "R K TRADERS",
                                  "ttldocs": 1,
                                  "txval": 37000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "07ABCPC9123L1Z9",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "12-03-2024",
                                  "supprd": "102023",
                                  "trdnm": "Rahul Chaudhry & Partners",
                                  "ttldocs": 2,
                                  "txval": 46500
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "08ABCCR1123F1ZG",
                                  "igst": 186,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SPICEJET LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3720
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "09ABCCI2123B1Z0",
                                  "igst": 212,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "M/S  INTERGLOBE AVIATION LIMTED",
                                  "ttldocs": 1,
                                  "txval": 4240
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCCI2123B1ZZ",
                                  "igst": 76,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTER GLOBE AVIATION LTD.",
                                  "ttldocs": 1,
                                  "txval": 424
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "19ABCFS8123G1ZN",
                                  "igst": 2700,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SIDDHI VINAYAK",
                                  "ttldocs": 1,
                                  "txval": 15000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "20ABCCI2123B1ZG",
                                  "igst": 509,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 2,
                                  "txval": 10178
                                },
                                {
                                  "cess": 0,
                                  "cgst": 39.89,
                                  "ctin": "24ABCCB0123L1ZY",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 39.89,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "BLUE DART EXPRESS LIMITED",
                                  "ttldocs": 1,
                                  "txval": 443.22
                                },
                                {
                                  "cess": 0,
                                  "cgst": 2565.5,
                                  "ctin": "24ABCCI2123B1Z8",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 2565.5,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 17,
                                  "txval": 98609
                                },
                                {
                                  "cess": 0,
                                  "cgst": 108.45,
                                  "ctin": "24ABCCL5123N1ZE",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 108.45,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "ttldocs": 2,
                                  "txval": 1205
                                },
                                {
                                  "cess": 0,
                                  "cgst": 11246.54,
                                  "ctin": "24ABCCT3123Q1Z2",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 11246.54,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA AIG GENERAL INSURANCE COMPANY LIMITED",
                                  "ttldocs": 1,
                                  "txval": 124961.57
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1348.05,
                                  "ctin": "24ABCCH7123H1ZK",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 1348.05,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HCP WELLNESS PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 14978.32
                                },
                                {
                                  "cess": 0,
                                  "cgst": 1066.94,
                                  "ctin": "24ABCCA3123J1ZO",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 1066.94,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "ttldocs": 1,
                                  "txval": 11855.84
                                },
                                {
                                  "cess": 0,
                                  "cgst": 504,
                                  "ctin": "24ABCPL9123J1ZB",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 504,
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "K MANOHAR THE BAG MART",
                                  "ttldocs": 1,
                                  "txval": 5600
                                },
                                {
                                  "cess": 0,
                                  "cgst": 560.48,
                                  "ctin": "24ABCCS9123P1ZI",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 560.48,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 4,
                                  "txval": 22419
                                },
                                {
                                  "cess": 0,
                                  "cgst": 4797,
                                  "ctin": "24ABCPD7123G1Z3",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 4797,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "PERFECT PACKAGING",
                                  "ttldocs": 1,
                                  "txval": 53300
                                },
                                {
                                  "cess": 0,
                                  "cgst": 2883.05,
                                  "ctin": "24ABCPS2123A2Z8",
                                  "igst": 0,
                                  "nttyp": "C",
                                  "sgst": 2883.05,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MG VIP LOUNGE",
                                  "ttldocs": 1,
                                  "txval": 32033.88
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "26ABCCR9123B1ZM",
                                  "igst": 22188.42,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RADCOM PACKAGING PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 123269
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCM7123G1Z7",
                                  "igst": 221404.59,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "MARICO LIMITED",
                                  "ttldocs": 8,
                                  "txval": 1230025.51
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCF0123R2Z8",
                                  "igst": 156.47,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FUTURE GENERALI INDIA INSURANCE COMPANY LIMITED",
                                  "ttldocs": 1,
                                  "txval": 869.28
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCI2123B1Z2",
                                  "igst": 469,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 3,
                                  "txval": 9380
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCR1123E1ZP",
                                  "igst": 1590.04,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "ttldocs": 30,
                                  "txval": 8833.65
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPN2123F1ZQ",
                                  "igst": 594000,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HRITHIK ROSHAN",
                                  "ttldocs": 1,
                                  "txval": 3300000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCT8123F1Z4",
                                  "igst": 128,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "ttldocs": 1,
                                  "txval": 2560
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "igst": 72000,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KHAITAN AND CO",
                                  "ttldocs": 1,
                                  "txval": 400000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCH5123M1Z9",
                                  "igst": 13817.34,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "HOOLI BRANDS MULTI TRADING PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 76763
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCCI1123J1ZE",
                                  "igst": 16590.66,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "ITHINK LOGISTIC QUICK SERVICES PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 92170.34
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCFK8123P1Z2",
                                  "igst": 9900,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "KK COSMETICS MALL LLP",
                                  "ttldocs": 11,
                                  "txval": 55000
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "27ABCPL8123L2Z0",
                                  "igst": 42.71,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "18-03-2024",
                                  "supprd": "022024",
                                  "trdnm": "CRESCENT INC",
                                  "ttldocs": 1,
                                  "txval": 237.29
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCF0123K1ZD",
                                  "igst": 107786.17,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "ttldocs": 3,
                                  "txval": 598812.08
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCD6123Q1ZS",
                                  "igst": 161607.51,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "DREAMPLUG TECHNOLOGIES PRIVATE LIMITED",
                                  "ttldocs": 3,
                                  "txval": 897819.49
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCA3123J1ZE",
                                  "igst": 18286.44,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "ttldocs": 2,
                                  "txval": 101592.92
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "29ABCCS9123P1Z8",
                                  "igst": 256.55,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 5131
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "30ABCCI2123B1ZF",
                                  "igst": 1785,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE  AVIATION LIMITED",
                                  "ttldocs": 2,
                                  "txval": 33915
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "30ABCCS9123P1ZP",
                                  "igst": 590.2,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "ttldocs": 1,
                                  "txval": 11804
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "32ABCCI2123B1ZB",
                                  "igst": 285,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 1,
                                  "txval": 5694
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCN6123P2ZV",
                                  "igst": 9,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "AIR INDIA LIMITED",
                                  "ttldocs": 1,
                                  "txval": 3014
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "33ABCCT8123F1ZB",
                                  "igst": 177,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "TATA SIA Airlines Limited",
                                  "ttldocs": 1,
                                  "txval": 3540
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCCI2123B1Z3",
                                  "igst": 337,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTER GLOBE AVIATION LIMITED INDIGO",
                                  "ttldocs": 1,
                                  "txval": 5647
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "36ABCCR0123M3Z2",
                                  "igst": 1789.83,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "ttldocs": 2,
                                  "txval": 9943.5
                                },
                                {
                                  "cess": 0,
                                  "cgst": 0,
                                  "ctin": "37ABCCI2123B1Z1",
                                  "igst": 672,
                                  "nttyp": "C",
                                  "sgst": 0,
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "ttldocs": 1,
                                  "txval": 13448
                                }
                              ]
                            },
                            "fc": 1,
                            "gendt": "14-04-2024",
                            "gstin": "29AAACQ3770E000",
                            "itcsumm": {
                              "itcavl": {
                                "nonrevsup": {
                                  "b2b": {
                                    "cess": 0,
                                    "cgst": 1416666.19,
                                    "igst": 31041715.89,
                                    "sgst": 1416666.14,
                                    "txval": 191011402.09
                                  },
                                  "cdnr": {
                                    "cess": 0,
                                    "cgst": 635.45,
                                    "igst": 4612.1,
                                    "sgst": 635.45,
                                    "txval": 45293.06
                                  },
                                  "cess": 0,
                                  "cgst": 1417301.64,
                                  "igst": 31046327.99,
                                  "sgst": 1417301.59
                                },
                                "othersup": {
                                  "cdnr": {
                                    "cess": 0,
                                    "cgst": 25119.9,
                                    "igst": 1487541.46,
                                    "sgst": 25119.9,
                                    "txval": 8753420.94
                                  },
                                  "cdnrrev": {
                                    "cess": 0,
                                    "cgst": 0,
                                    "igst": 72000,
                                    "sgst": 0,
                                    "txval": 446500
                                  },
                                  "cess": 0,
                                  "cgst": 25119.9,
                                  "igst": 1559541.46,
                                  "sgst": 25119.9
                                },
                                "revsup": {
                                  "b2b": {
                                    "cess": 0,
                                    "cgst": 0,
                                    "igst": 193840.25,
                                    "sgst": 0,
                                    "txval": 1346436
                                  },
                                  "cess": 0,
                                  "cgst": 0,
                                  "igst": 193840.25,
                                  "sgst": 0
                                }
                              },
                              "itcunavl": {
                                "nonrevsup": {
                                  "b2b": {
                                    "cess": 0,
                                    "cgst": 5330.83,
                                    "igst": 0,
                                    "sgst": 5330.83,
                                    "txval": 89923.45
                                  },
                                  "cess": 0,
                                  "cgst": 5330.83,
                                  "igst": 0,
                                  "sgst": 5330.83
                                }
                              }
                            },
                            "rtnprd": "032024",
                            "version": "1.0"
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "dd56a8b4-8ae1-4110-8abd-2a1145518fa7"
                    }
                  },
                  "RET2B1016 No details available to view": {
                    "summary": "RET2B1016 No details available to view",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET2B1016",
                          "message": "For current tax period, no details are available to view."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6ff8f289-cdb4-454e-8b73-06228e5017ca"
                    }
                  },
                  "RET2B1023 GSTR-2B not available": {
                    "summary": "RET2B1023 GSTR-2B not available",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET2B1023",
                          "message": "GSTR-2B is being generated and should be available by 02/04/2024. Either you do not have any records in GSTR-2B or the generation is still in progress. If you are still not able to access it, please raise a ticket with GST support team."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "d2042dc7-e210-47a3-a3cb-145767179203"
                    }
                  },
                  "200 Success 2": {
                    "summary": "200 Success 2",
                    "value": {
                      "transaction_id": "f3fee28c-1498-41e1-ad39-1c5516881bfe",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "data": {
                            "itcsumm": {
                              "itcavl": {
                                "nonrevsup": {
                                  "sgst": 24415.05,
                                  "b2b": {
                                    "sgst": 24415.05,
                                    "txval": 1483843.96,
                                    "cgst": 24415.05,
                                    "cess": 0,
                                    "igst": 218188.86
                                  },
                                  "cgst": 24415.05,
                                  "cess": 0,
                                  "igst": 218188.86
                                }
                              }
                            },
                            "rtnprd": "112024",
                            "docdata": {
                              "b2b": [
                                {
                                  "inv": [
                                    {
                                      "val": 2000,
                                      "sgst": 152.54,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 1694.92,
                                      "typ": "R",
                                      "cgst": 152.54,
                                      "inum": "PRN-1289",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "29-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "GOURMESSERIE LLP",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AAWFG9936H1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 2600,
                                      "sgst": 198.31,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "irn": "aa77ad30f54d5660be7ebbf4c64c146e150eda6b332622dafb5c72bdc9d4c3c4",
                                      "txval": 2203.39,
                                      "typ": "R",
                                      "cgst": 198.31,
                                      "irngendate": "08-11-2024",
                                      "inum": "IT/24-25/978",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "08-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24",
                                      "srctyp": "E-Invoice"
                                    }
                                  ],
                                  "trdnm": "I TECH STORE",
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AACFI9070L1Z5"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 5665.42,
                                      "sgst": 432.11,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 4801.2,
                                      "typ": "R",
                                      "cgst": 432.11,
                                      "inum": "C24E242500023146",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "05-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "JIO PLATFORMS LIMITED",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AAECJ6878N1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 458.15,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "irn": "82b4218619a08e138e63bdbc883a31715d80af5e02bf902b544828639c944f6d",
                                      "txval": 408.79,
                                      "typ": "R",
                                      "cgst": 0,
                                      "irngendate": "11-11-2024",
                                      "inum": "OI-30587/24-25",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 49.36,
                                      "dt": "16-10-2024",
                                      "imsStatus": "N",
                                      "pos": "24",
                                      "srctyp": "E-Invoice"
                                    }
                                  ],
                                  "trdnm": "ONLY MAT",
                                  "supfildt": "13-11-2024",
                                  "supprd": "102024",
                                  "ctin": "32BEGPM1696R1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 30.49,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 25.84,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "5129155089",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 4.65,
                                      "dt": "30-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "Google Cloud India Private Limited",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "27AAGCG4576J1Z6"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 3390.77,
                                      "sgst": 258.62,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 2873.53,
                                      "typ": "R",
                                      "cgst": 258.62,
                                      "inum": "AMD2-3993079",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "13-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "supfildt": "09-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AAECR0564M1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 81691.31,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 69229.92,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "AIN2425002587878",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 12461.39,
                                      "dt": "02-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    },
                                    {
                                      "val": 233941.82,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 198255.78,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "AIN2425002589127",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 35686.04,
                                      "dt": "02-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    },
                                    {
                                      "val": 179076.12,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 151759.42,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "AIN2425002589265",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 27316.7,
                                      "dt": "02-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    },
                                    {
                                      "val": 25424.53,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 21546.21,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "AIN2425002596389",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 3878.32,
                                      "dt": "02-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    },
                                    {
                                      "val": 1.98,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 1.68,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "AIN2425002815796",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0.3,
                                      "dt": "02-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    },
                                    {
                                      "val": 14.88,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 12.61,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "AIN2425002877822",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 2.27,
                                      "dt": "03-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "AMAZON WEB SERVICES INDIA PRIVATE LIMITED",
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "ctin": "07AAJCA9880A1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 177,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "irn": "90c6352d3136cd3f296a1d80bce1b2fbc5b2a4eceef8ca187674e2dcfe4269e8",
                                      "txval": 150,
                                      "typ": "R",
                                      "cgst": 0,
                                      "irngendate": "19-11-2024",
                                      "inum": "LE/25/1/07976",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 27,
                                      "dt": "19-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24",
                                      "srctyp": "E-Invoice"
                                    }
                                  ],
                                  "trdnm": "Grey Swift Private Limited",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "06AAGCG5872M1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 26741.63,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 22662.4,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "2024-25/DIG01231",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 4079.23,
                                      "dt": "11-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "DIGITAP.AI ENTERPRISE SOLUTIONS PRIVATE LIMITED",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "29AAHCD5090M1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 30975,
                                      "sgst": 2362.5,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 26250,
                                      "typ": "R",
                                      "cgst": 2362.5,
                                      "inum": "R22",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "01-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "HITESHKUMAR DWARKADAS PATEL",
                                  "supfildt": "07-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24ACRPP7935N1ZO"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 30975,
                                      "sgst": 2362.5,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 26250,
                                      "typ": "R",
                                      "cgst": 2362.5,
                                      "inum": "15R",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "01-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "SHRI SAI TEXTILES",
                                  "supfildt": "04-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AIYPP5747M1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 142700,
                                      "sgst": 10883.91,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "irn": "d373832e40491f8c4a02405a3add9cc28a4f762078bd4133f8b083c018bc2efd",
                                      "txval": 120932.18,
                                      "typ": "R",
                                      "cgst": 10883.91,
                                      "irngendate": "05-11-2024",
                                      "inum": "AO2SA2425002517",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "05-11-2024",
                                      "imsStatus": "A",
                                      "pos": "24",
                                      "srctyp": "E-Invoice"
                                    }
                                  ],
                                  "trdnm": "UNICORN INFOSOLUTIONS PRIVATE LIMITED",
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AAACU6278M1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 61950,
                                      "sgst": 4725,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 52500,
                                      "typ": "R",
                                      "cgst": 4725,
                                      "inum": "R-15",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "01-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "PATEL YOGINABEN HITESHKUMAR",
                                  "supfildt": "07-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AQDPP4462E1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 401.02,
                                      "sgst": 30.59,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 339.84,
                                      "typ": "R",
                                      "cgst": 30.59,
                                      "inum": "AMD2-1463535",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "16-10-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "CLICKTECH RETAIL PRIVATE LIMITED",
                                  "supfildt": "11-11-2024",
                                  "supprd": "102024",
                                  "ctin": "24AAJCC9783E1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 857615.03,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 726792.4,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "CF/24-25/62727",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 130822.64,
                                      "dt": "30-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "CASHFREE PAYMENTS INDIA PRIVATE LIMITED",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "29AAICP2912R1ZR"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 2605.44,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 2208,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "5096411148",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 397.44,
                                      "dt": "31-10-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "supfildt": "11-11-2024",
                                  "supprd": "102024",
                                  "ctin": "06AACCG0527D1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 73.63,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 62.4,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "NPBL/24-25/11192",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 11.23,
                                      "dt": "30-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    },
                                    {
                                      "val": 16545.96,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 14022,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "NPBL/24-25/11199",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 2523.96,
                                      "dt": "30-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "NSDL PAYMENTS BANK LIMITED",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "27AAFCN3372G1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 1888,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "irn": "44297107201907e74e42716012e1ec8b25b2b1b62c6942e0c5cb6e1cf9aed90e",
                                      "txval": 1600,
                                      "typ": "R",
                                      "cgst": 0,
                                      "irngendate": "11-11-2024",
                                      "inum": "1024250260344",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 288,
                                      "dt": "02-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24",
                                      "srctyp": "E-Invoice"
                                    }
                                  ],
                                  "trdnm": "ZOHO CORPORATION PRIVATE LIMITED",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "33AAACZ4322M2Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 2518.59,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 2134.4,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "5117213122",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 384.19,
                                      "dt": "30-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "06AACCG0527D1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 394,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 375.24,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "IN-21576",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 18.76,
                                      "dt": "13-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "DM Marketing",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "08BMNPP2457E2ZR"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 8498.12,
                                      "sgst": 648.16,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "irn": "04e156eaa4b42fc37474c23c93c74771dcf79ddf5402b056e186e9e857f7e710",
                                      "txval": 7201.8,
                                      "typ": "R",
                                      "cgst": 648.16,
                                      "irngendate": "05-11-2024",
                                      "inum": "C24E242500143276",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "05-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24",
                                      "srctyp": "E-Invoice"
                                    }
                                  ],
                                  "trdnm": "Reliance Jio Infocomm  Limited",
                                  "supfildt": "11-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AABCI6363G1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 28600,
                                      "sgst": 2181.36,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 24237.29,
                                      "typ": "R",
                                      "cgst": 2181.36,
                                      "inum": "PRN-1050",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "17-10-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    },
                                    {
                                      "val": 2000,
                                      "sgst": 152.54,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 1694.92,
                                      "typ": "R",
                                      "cgst": 152.54,
                                      "inum": "PRN-1094",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "25-10-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "GOURMESSERIE LLP",
                                  "supfildt": "13-11-2024",
                                  "supprd": "102024",
                                  "ctin": "24AAWFG9936H1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 352.82,
                                      "sgst": 26.91,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "irn": "b79c9c9cc5efcabf1d626b23efa56da6dc00e998d5b3bb35ca7e981858c40275",
                                      "txval": 299,
                                      "typ": "R",
                                      "cgst": 26.91,
                                      "irngendate": "27-11-2024",
                                      "inum": "BM2524I007134077",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 0,
                                      "dt": "27-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24",
                                      "srctyp": "E-Invoice"
                                    }
                                  ],
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "ctin": "24AAACB2894G1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 1556.18,
                                      "sgst": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "txval": 1318.8,
                                      "typ": "R",
                                      "cgst": 0,
                                      "inum": "VN1024D11312",
                                      "rsn": "",
                                      "cess": 0,
                                      "igst": 237.38,
                                      "dt": "06-11-2024",
                                      "imsStatus": "N",
                                      "pos": "24"
                                    }
                                  ],
                                  "trdnm": "VAY NETWORK SERVICES PRIVATE LIMITED",
                                  "supfildt": "10-12-2024",
                                  "supprd": "112024",
                                  "ctin": "27AAFCV6085L1ZO"
                                }
                              ]
                            },
                            "gendt": "14-12-2024",
                            "gstin": "24ABKCS2033B1ZV",
                            "version": "1.0",
                            "cpsumm": {
                              "b2b": [
                                {
                                  "sgst": 2362.5,
                                  "ttldocs": 1,
                                  "trdnm": "HITESHKUMAR DWARKADAS PATEL",
                                  "supprd": "112024",
                                  "supfildt": "07-12-2024",
                                  "txval": 26250,
                                  "ctin": "24ACRPP7935N1ZO",
                                  "cgst": 2362.5,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "supprd": "102024",
                                  "supfildt": "11-11-2024",
                                  "txval": 2208,
                                  "ctin": "06AACCG0527D1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 397.44
                                },
                                {
                                  "sgst": 198.31,
                                  "ttldocs": 1,
                                  "trdnm": "I TECH STORE",
                                  "supprd": "112024",
                                  "supfildt": "10-12-2024",
                                  "txval": 2203.39,
                                  "ctin": "24AACFI9070L1Z5",
                                  "cgst": 198.31,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 30.59,
                                  "ttldocs": 1,
                                  "trdnm": "CLICKTECH RETAIL PRIVATE LIMITED",
                                  "supprd": "102024",
                                  "supfildt": "11-11-2024",
                                  "txval": 339.84,
                                  "ctin": "24AAJCC9783E1ZD",
                                  "cgst": 30.59,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "VAY NETWORK SERVICES PRIVATE LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "10-12-2024",
                                  "txval": 1318.8,
                                  "ctin": "27AAFCV6085L1ZO",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 237.38
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "DM Marketing",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 375.24,
                                  "ctin": "08BMNPP2457E2ZR",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 18.76
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "CASHFREE PAYMENTS INDIA PRIVATE LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 726792.4,
                                  "ctin": "29AAICP2912R1ZR",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 130822.64
                                },
                                {
                                  "sgst": 648.16,
                                  "ttldocs": 1,
                                  "trdnm": "Reliance Jio Infocomm  Limited",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 7201.8,
                                  "ctin": "24AABCI6363G1ZP",
                                  "cgst": 648.16,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 152.54,
                                  "ttldocs": 1,
                                  "trdnm": "GOURMESSERIE LLP",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 1694.92,
                                  "ctin": "24AAWFG9936H1ZP",
                                  "cgst": 152.54,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Grey Swift Private Limited",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 150,
                                  "ctin": "06AAGCG5872M1Z3",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 27
                                },
                                {
                                  "sgst": 2362.5,
                                  "ttldocs": 1,
                                  "trdnm": "SHRI SAI TEXTILES",
                                  "supprd": "112024",
                                  "supfildt": "04-12-2024",
                                  "txval": 26250,
                                  "ctin": "24AIYPP5747M1Z8",
                                  "cgst": 2362.5,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ONLY MAT",
                                  "supprd": "102024",
                                  "supfildt": "13-11-2024",
                                  "txval": 408.79,
                                  "ctin": "32BEGPM1696R1ZU",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 49.36
                                },
                                {
                                  "sgst": 432.11,
                                  "ttldocs": 1,
                                  "trdnm": "JIO PLATFORMS LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 4801.2,
                                  "ctin": "24AAECJ6878N1ZU",
                                  "cgst": 432.11,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 4725,
                                  "ttldocs": 1,
                                  "trdnm": "PATEL YOGINABEN HITESHKUMAR",
                                  "supprd": "112024",
                                  "supfildt": "07-12-2024",
                                  "txval": 52500,
                                  "ctin": "24AQDPP4462E1Z0",
                                  "cgst": 4725,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 26.91,
                                  "ttldocs": 1,
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "supprd": "112024",
                                  "supfildt": "10-12-2024",
                                  "txval": 299,
                                  "ctin": "24AAACB2894G1ZT",
                                  "cgst": 26.91,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "DIGITAP.AI ENTERPRISE SOLUTIONS PRIVATE LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 22662.4,
                                  "ctin": "29AAHCD5090M1Z3",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4079.23
                                },
                                {
                                  "sgst": 10883.91,
                                  "ttldocs": 1,
                                  "trdnm": "UNICORN INFOSOLUTIONS PRIVATE LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "10-12-2024",
                                  "txval": 120932.18,
                                  "ctin": "24AAACU6278M1ZV",
                                  "cgst": 10883.91,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Google Cloud India Private Limited",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 25.84,
                                  "ctin": "27AAGCG4576J1Z6",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4.65
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 2134.4,
                                  "ctin": "06AACCG0527D1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 384.19
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 6,
                                  "trdnm": "AMAZON WEB SERVICES INDIA PRIVATE LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "10-12-2024",
                                  "txval": 440805.62,
                                  "ctin": "07AAJCA9880A1ZL",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 79345.02
                                },
                                {
                                  "sgst": 2333.9,
                                  "ttldocs": 2,
                                  "trdnm": "GOURMESSERIE LLP",
                                  "supprd": "102024",
                                  "supfildt": "13-11-2024",
                                  "txval": 25932.21,
                                  "ctin": "24AAWFG9936H1ZP",
                                  "cgst": 2333.9,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ZOHO CORPORATION PRIVATE LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 1600,
                                  "ctin": "33AAACZ4322M2Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 288
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "NSDL PAYMENTS BANK LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "11-12-2024",
                                  "txval": 14084.4,
                                  "ctin": "27AAFCN3372G1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2535.19
                                },
                                {
                                  "sgst": 258.62,
                                  "ttldocs": 1,
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "supprd": "112024",
                                  "supfildt": "09-12-2024",
                                  "txval": 2873.53,
                                  "ctin": "24AAECR0564M1Z9",
                                  "cgst": 258.62,
                                  "cess": 0,
                                  "igst": 0
                                }
                              ]
                            }
                          },
                          "chksum": "e6255f8e01d58128775e20b2405bf4b93f74fc9f737b3f7da1829927f357bb61"
                        }
                      },
                      "timestamp": 1735643392000
                    }
                  },
                  "200 Success page number 1 2": {
                    "summary": "200 Success page number 1 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "data": {
                            "rtnprd": "032024",
                            "docdata": {
                              "b2b": [
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 43463,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/009",
                                      "rsn": "",
                                      "txval": 36832.83,
                                      "cess": 0,
                                      "igst": 6629.91
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 5667,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/010",
                                      "rsn": "",
                                      "txval": 4802.88,
                                      "cess": 0,
                                      "igst": 864.52
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 19590,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/011",
                                      "rsn": "",
                                      "txval": 16601.68,
                                      "cess": 0,
                                      "igst": 2988.3
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 31321,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/013",
                                      "rsn": "",
                                      "txval": 26543.1,
                                      "cess": 0,
                                      "igst": 4777.76
                                    }
                                  ],
                                  "trdnm": "Beardo",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCZ0123M1ZF"
                                }
                              ],
                              "cdnr": [
                                {
                                  "trdnm": "Interglobe Aviation Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4061,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO16252123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "txval": 3868,
                                      "igst": 193,
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4061,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO17783123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "txval": 3868,
                                      "igst": 193,
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 4311,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO22117123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "txval": 4106,
                                      "igst": 205,
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 4461,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO22436123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "txval": 339,
                                      "igst": 61,
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 4311,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO23770123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "txval": 4106,
                                      "igst": 205,
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 400,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO27386123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "txval": 339,
                                      "igst": 61,
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 4605,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO33604123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "txval": 4386,
                                      "igst": 219,
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "07ABCCI0123B1Z4"
                                },
                                {
                                  "trdnm": "CRESCENT INC",
                                  "supfildt": "18-03-2024",
                                  "supprd": "022024",
                                  "nt": [
                                    {
                                      "dt": "20-04-2023",
                                      "val": 280,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTAMD2123-5719",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "txval": 237.29,
                                      "igst": 42.71,
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCPL0123L2Z0"
                                }
                              ]
                            },
                            "gstin": "29AAACQ3770E000",
                            "version": "1.0"
                          },
                          "chksum": "baeb49893b8c483496c0e169c9532521a9f9b104cc612c706b10dd39f051b4e3"
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  },
                  "200 Success (before Oct 2024) 2": {
                    "summary": "200 Success (before Oct 2024) 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "data": {
                            "itcsumm": {
                              "itcavl": {
                                "othersup": {
                                  "sgst": 0,
                                  "cgst": 0,
                                  "cdnr": {
                                    "sgst": 0,
                                    "cgst": 0,
                                    "cess": 0,
                                    "igst": 82786.26
                                  },
                                  "cess": 0,
                                  "igst": 82786.26
                                },
                                "nonrevsup": {
                                  "sgst": 5550.22,
                                  "b2ba": {
                                    "sgst": -9.81,
                                    "cgst": -9.81,
                                    "cess": 0,
                                    "igst": 0
                                  },
                                  "b2b": {
                                    "sgst": 5560.03,
                                    "cgst": 5560.03,
                                    "cess": 0,
                                    "igst": 20756.64
                                  },
                                  "cgst": 5550.22,
                                  "cess": 0,
                                  "igst": 20756.64
                                }
                              }
                            },
                            "rtnprd": "122023",
                            "docdata": {
                              "b2ba": [
                                {
                                  "inv": [
                                    {
                                      "dt": "25-10-2023",
                                      "val": 0.01,
                                      "oinum": "RN1/FAMA-16557",
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "RN1/FAMA-16557",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1418,
                                          "txval": 0.01,
                                          "cgst": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "oidt": "25-10-2023"
                                    }
                                  ],
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "ctin": "24ABCCR0123M1YZ"
                                }
                              ],
                              "b2b": [
                                {
                                  "inv": [
                                    {
                                      "dt": "01-12-2023",
                                      "val": 2301,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "23-24/126",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 175.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1950,
                                          "cgst": 175.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "S N LAPTOP",
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "ctin": "24ABCPD9123Q1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "03-10-2023",
                                      "val": 1497,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "VPDL-331",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 80.2,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1336.62,
                                          "cgst": 80.2,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "DYRROTH",
                                  "supfildt": "09-01-2024",
                                  "supprd": "122023",
                                  "ctin": "24ABCPM7123B2YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "12-12-2023",
                                      "val": 354,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "NPS/1224/0088766",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 300,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 54
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ICICI PRUDENTIAL PENSION FUNDS MANAGEMENT COMPANY LIMITED",
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "ctin": "27ABCCI0123E1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 35400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx813eb4d1cab56c71027d971cbf0eeb1530e14fc31f996cd101d49842",
                                      "typ": "R",
                                      "irngendate": "23-12-2023",
                                      "inum": "FBBL2424B29715",
                                      "rsn": "",
                                      "dt": "22-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 2700,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 30000,
                                          "cgst": 2700,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 4718.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx819f77a9bb8318a7931b1540e8f29052ee672f9525bcb10938d8e3e1",
                                      "typ": "R",
                                      "irngendate": "12-12-2023",
                                      "inum": "HT2424I001454703",
                                      "rsn": "",
                                      "dt": "12-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 359.91,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3999,
                                          "cgst": 359.91,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 4718.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx81b3ceed1dbc3f1129ada8d1032de76a8e5d9232cc7ae75641369580",
                                      "typ": "R",
                                      "irngendate": "18-12-2023",
                                      "inum": "HT2424I001485717",
                                      "rsn": "",
                                      "dt": "18-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 359.91,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3999,
                                          "cgst": 359.91,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "ctin": "24ABCCB2123G1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 3398.4,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx81c9eacb3701114023ed746e0e2c4f38a2a88a525b10467d94b379ee",
                                      "typ": "R",
                                      "irngendate": "11-12-2023",
                                      "inum": "102324229636",
                                      "rsn": "",
                                      "dt": "10-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2880,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 518.4
                                        }
                                      ]
                                    },
                                    {
                                      "val": 2832,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx81b4128b0b6343c13b5dd21b2d3084f08f30d1a0f8389984fd2615b1",
                                      "typ": "R",
                                      "irngendate": "11-12-2023",
                                      "inum": "102324230047",
                                      "rsn": "",
                                      "dt": "11-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2400,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 432
                                        }
                                      ]
                                    },
                                    {
                                      "val": 328.88,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx817ae1cebb53e68135e8d42c53e2d9792b8b7bd543f01ab0da203bc6",
                                      "typ": "R",
                                      "irngendate": "26-12-2023",
                                      "inum": "102324243574",
                                      "rsn": "",
                                      "dt": "25-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 278.71,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 50.17
                                        }
                                      ]
                                    },
                                    {
                                      "val": 292.33,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx81b5bdd11a0876f41ae60132a0caa589b508aedf4dc86a7df8f16b17",
                                      "typ": "R",
                                      "irngendate": "28-12-2023",
                                      "inum": "102324245907",
                                      "rsn": "",
                                      "dt": "27-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 247.74,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 44.59
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ZOHO CORPORATION PRIVATE LIMITED",
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "ctin": "33ABCCZ4123M2YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-12-2023",
                                      "val": 14404.43,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "4883379355",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12207.14,
                                          "cess": 0,
                                          "igst": 2197.29
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-12-2023",
                                      "val": 161.54,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "4884148871",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 136.9,
                                          "cess": 0,
                                          "igst": 24.64
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "ctin": "06ABCCG0123D1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "22-12-2023",
                                      "val": 14160,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "PAN-V/27/424",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2160
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "UTI INFRASTRUCTURE TECHNOLOGY AND SERVICES LIMITED",
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "ctin": "27ABCCU4123C1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "30-10-2023",
                                      "val": 5900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "76",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 450,
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 5000,
                                          "cgst": 450
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-10-2023",
                                      "val": 6195,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "77",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 472.5,
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 5250,
                                          "cgst": 472.5
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "H R LAKHANI & ASSOCIATES",
                                  "supfildt": "13-01-2024",
                                  "supprd": "122023",
                                  "ctin": "24ABCPL3123J1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-12-2023",
                                      "val": 460,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "GIN0003609",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 35.1,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 390,
                                          "cgst": 35.1
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "S.SERVICE",
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "ctin": "24ABCPK3123G1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-12-2023",
                                      "val": 12711.98,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "4XCFPHNO3URQ1223",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 8315.9,
                                          "igst": 1496.86
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-12-2023",
                                      "val": 52865.55,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "GSDKTASVXEXU1223",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 41022.9,
                                          "igst": 7384.13
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RAZORPAY SOFTWARE PRIVATE LIMITED",
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "ctin": "29ABCCR4123J1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-12-2023",
                                      "val": 1887,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "08",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 1600,
                                          "igst": 288
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Diksha Bang & Co",
                                  "supfildt": "08-01-2024",
                                  "supprd": "122023",
                                  "ctin": "36ABCPH8123R1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "19-12-2023",
                                      "val": 25000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "OPV/997000175687",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 21186.44,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3813.56
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Protean eGov Technologies Limited",
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "ctin": "27ABCCN2123N1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 352.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx8104161d2a8006b1cafe7213ccaa4014120722fa5eb2d68854a04af8",
                                      "typ": "R",
                                      "irngendate": "02-12-2023",
                                      "inum": "GJI0611330220210",
                                      "rsn": "",
                                      "dt": "01-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 26.91,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 299,
                                          "cgst": 26.91,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "x1k86ddx81487cf5110f295d37bdc8e4ce316455a9fc480004671ed20811f35c",
                                      "typ": "R",
                                      "irngendate": "01-12-2023",
                                      "inum": "GJI0611330353886",
                                      "rsn": "",
                                      "dt": "01-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 900,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 900,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Vodafone Idea Limited",
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "ctin": "24ABCCB2123P1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "21-12-2023",
                                      "val": 12390,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-000764",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 10500,
                                          "igst": 1890
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RULEZERO TECHNOLOGY SOLUTIONS PRIVATE LIMITED",
                                  "supfildt": "10-01-2024",
                                  "supprd": "122023",
                                  "ctin": "29ABCCR4123K1YZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "10-12-2023",
                                      "val": 2643,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "141519",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2240,
                                          "igst": 403
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RZPX PRIVATE LIMITED",
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "ctin": "29ABCCR4123K1YZ"
                                }
                              ],
                              "cdnr": [
                                {
                                  "trdnm": "AMAZON WEB SERVICES INDIA PRIVATE LIMITED",
                                  "supfildt": "11-01-2024",
                                  "supprd": "122023",
                                  "nt": [
                                    {
                                      "val": 3677.99,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "ACN2324000103340",
                                      "irn": "x1k86ddx81a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51",
                                      "typ": "C",
                                      "irngendate": "13-12-2023",
                                      "rsn": "",
                                      "dt": "13-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3116.94,
                                          "cgst": 0,
                                          "igst": 561.05
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 6300.59,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "ACN2324000103368",
                                      "irn": "x1k86ddx81eb8bbc314c0ef223d54402ebf09a4368735bb3bdc2159994de0543",
                                      "typ": "C",
                                      "irngendate": "13-12-2023",
                                      "rsn": "",
                                      "dt": "13-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5339.48,
                                          "cgst": 0,
                                          "igst": 961.11
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 304052.92,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "ACN2324000103394",
                                      "irn": "x1k86ddx81a2b71831e89eba6742a7035660560559843936076fd0466cb6e2c2",
                                      "typ": "C",
                                      "irngendate": "13-12-2023",
                                      "rsn": "",
                                      "dt": "13-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 257671.97,
                                          "cgst": 0,
                                          "igst": 46380.95
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 113738.41,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "ACN2324000103426",
                                      "irn": "x1k86ddx81fca1a9feeac080875d8fbcb0b2367c00b582c60485119a375ce80f",
                                      "typ": "C",
                                      "irngendate": "13-12-2023",
                                      "rsn": "",
                                      "dt": "13-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 96388.48,
                                          "cgst": 0,
                                          "igst": 17349.93
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 114939.98,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "ACN2324000103435",
                                      "irn": "x1k86ddx81a50837c18b84b9cc52a5c6423b4afa05dcbf1454ef98aa88206d5d",
                                      "typ": "C",
                                      "irngendate": "13-12-2023",
                                      "rsn": "",
                                      "dt": "13-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 97406.76,
                                          "cgst": 0,
                                          "igst": 17533.22
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "07ABCCA9123A1YZ"
                                }
                              ]
                            },
                            "gendt": "14-01-2024",
                            "gstin": "29AAACQ3770E000",
                            "version": "1.0",
                            "cpsumm": {
                              "b2ba": [
                                {
                                  "sgst": -9.81,
                                  "ttldocs": 1,
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "supprd": "122023",
                                  "supfildt": "10-01-2024",
                                  "txval": -108.94,
                                  "ctin": "24ABCCR0123M1YZ",
                                  "cgst": -9.81,
                                  "cess": 0,
                                  "igst": 0
                                }
                              ],
                              "b2b": [
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "supprd": "122023",
                                  "supfildt": "11-01-2024",
                                  "txval": 12344.04,
                                  "ctin": "06ABCCG0123D1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2221.93
                                },
                                {
                                  "sgst": 926.91,
                                  "ttldocs": 2,
                                  "trdnm": "Vodafone Idea Limited",
                                  "supprd": "122023",
                                  "supfildt": "10-01-2024",
                                  "txval": 10299,
                                  "ctin": "24ABCCB2123P1YZ",
                                  "cgst": 926.91,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 3419.82,
                                  "ttldocs": 3,
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "supprd": "122023",
                                  "supfildt": "10-01-2024",
                                  "txval": 37998,
                                  "ctin": "24ABCCB2123G1YZ",
                                  "cgst": 3419.82,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 922.5,
                                  "ttldocs": 2,
                                  "trdnm": "H R LAKHANI & ASSOCIATES",
                                  "supprd": "122023",
                                  "supfildt": "13-01-2024",
                                  "txval": 10250,
                                  "ctin": "24ABCPL3123J1YZ",
                                  "cgst": 922.5,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 175.5,
                                  "ttldocs": 1,
                                  "trdnm": "S N LAPTOP",
                                  "supprd": "122023",
                                  "supfildt": "11-01-2024",
                                  "txval": 1950,
                                  "ctin": "24ABCPD9123Q1YZ",
                                  "cgst": 175.5,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 35.1,
                                  "ttldocs": 1,
                                  "trdnm": "S.SERVICE",
                                  "supprd": "122023",
                                  "supfildt": "10-01-2024",
                                  "txval": 390,
                                  "ctin": "24ABCPK3123G1YZ",
                                  "cgst": 35.1,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 80.2,
                                  "ttldocs": 1,
                                  "trdnm": "DYRROTH",
                                  "supprd": "122023",
                                  "supfildt": "09-01-2024",
                                  "txval": 1336.62,
                                  "ctin": "24ABCPM7123B2YZ",
                                  "cgst": 80.2,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Protean eGov Technologies Limited",
                                  "supprd": "122023",
                                  "supfildt": "11-01-2024",
                                  "txval": 21186.44,
                                  "ctin": "27ABCCN2123N1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3813.56
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "UTI INFRASTRUCTURE TECHNOLOGY AND SERVICES LIMITED",
                                  "supprd": "122023",
                                  "supfildt": "11-01-2024",
                                  "txval": 12000,
                                  "ctin": "27ABCCU4123C1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2160
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ICICI PRUDENTIAL PENSION FUNDS MANAGEMENT COMPANY LIMITED",
                                  "supprd": "122023",
                                  "supfildt": "10-01-2024",
                                  "txval": 300,
                                  "ctin": "27ABCCI0123E1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 54
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "RAZORPAY SOFTWARE PRIVATE LIMITED",
                                  "supprd": "122023",
                                  "supfildt": "11-01-2024",
                                  "txval": 49338.8,
                                  "ctin": "29ABCCR4123J1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 8880.99
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RULEZERO TECHNOLOGY SOLUTIONS PRIVATE LIMITED",
                                  "supprd": "122023",
                                  "supfildt": "10-01-2024",
                                  "txval": 10500,
                                  "ctin": "29ABCCR4123K1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1890
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RZPX PRIVATE LIMITED",
                                  "supprd": "122023",
                                  "supfildt": "11-01-2024",
                                  "txval": 2240,
                                  "ctin": "29ABCCR4123K1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 403
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "ZOHO CORPORATION PRIVATE LIMITED",
                                  "supprd": "122023",
                                  "supfildt": "11-01-2024",
                                  "txval": 5806.45,
                                  "ctin": "33ABCCZ4123M2YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1045.16
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Diksha Bang & Co",
                                  "supprd": "122023",
                                  "supfildt": "08-01-2024",
                                  "txval": 1600,
                                  "ctin": "36ABCPH8123R1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 288
                                }
                              ],
                              "cdnr": [
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 5,
                                  "trdnm": "AMAZON WEB SERVICES INDIA PRIVATE LIMITED",
                                  "supprd": "122023",
                                  "supfildt": "11-01-2024",
                                  "txval": 459923.63,
                                  "ctin": "07ABCCA9123A1YZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 82786.26
                                }
                              ]
                            }
                          },
                          "chksum": "528a2f0cad941d31eeabe535099236aba8762ded3fdee2975a6b987be3b11689"
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  },
                  "200 Success with file count pagination 2": {
                    "summary": "200 Success with file count pagination 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "data": {
                            "itcsumm": {
                              "itcavl": {
                                "revsup": {
                                  "sgst": 0,
                                  "b2b": {
                                    "sgst": 0,
                                    "txval": 1346436,
                                    "cgst": 0,
                                    "cess": 0,
                                    "igst": 193840.25
                                  },
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 193840.25
                                },
                                "othersup": {
                                  "sgst": 25119.9,
                                  "cgst": 25119.9,
                                  "cdnr": {
                                    "sgst": 25119.9,
                                    "txval": 8753420.94,
                                    "cgst": 25119.9,
                                    "cess": 0,
                                    "igst": 1487541.46
                                  },
                                  "cess": 0,
                                  "igst": 1559541.46,
                                  "cdnrrev": {
                                    "sgst": 0,
                                    "txval": 446500,
                                    "cgst": 0,
                                    "cess": 0,
                                    "igst": 72000
                                  }
                                },
                                "nonrevsup": {
                                  "sgst": 1417301.59,
                                  "b2b": {
                                    "sgst": 1416666.14,
                                    "txval": 191011402.09,
                                    "cgst": 1416666.19,
                                    "cess": 0,
                                    "igst": 31041715.89
                                  },
                                  "cgst": 1417301.64,
                                  "cdnr": {
                                    "sgst": 635.45,
                                    "txval": 45293.06,
                                    "cgst": 635.45,
                                    "cess": 0,
                                    "igst": 4612.1
                                  },
                                  "cess": 0,
                                  "igst": 31046327.99
                                }
                              },
                              "itcunavl": {
                                "nonrevsup": {
                                  "sgst": 5330.83,
                                  "b2b": {
                                    "sgst": 5330.83,
                                    "txval": 89923.45,
                                    "cgst": 5330.83,
                                    "cess": 0,
                                    "igst": 0
                                  },
                                  "cgst": 5330.83,
                                  "cess": 0,
                                  "igst": 0
                                }
                              }
                            },
                            "rtnprd": "032024",
                            "gendt": "14-04-2024",
                            "gstin": "29AAACQ3770E000",
                            "version": "1.0",
                            "fc": 1,
                            "cpsumm": {
                              "b2b": [
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Satvik Enterprises",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 6000,
                                  "ctin": "01ABCPN7123Q1ZT",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1080
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "THAKUR ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 1400,
                                  "ctin": "02ABCPR9123P1ZO",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 252
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "TARUN KALRA  BROTHERS",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 4200,
                                  "ctin": "02ABCPK7123B1Z6",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 756
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "OM ENTERPRISES PROP. SH. OM PARKASH",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 14600,
                                  "ctin": "02ABCPP3123E1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2628
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "IQBAL SINGH KHUSHAL SINGH",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 6000,
                                  "ctin": "03ABCFI6123E1ZM",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1080
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "INTERGLOBAL AVATION LTD.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 9013,
                                  "ctin": "03ABCCI2123B1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 450
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 9500,
                                  "ctin": "03ABCCT8123F5ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 475
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "AK ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 9700,
                                  "ctin": "03ABCFA8123H1Z6",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1746
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "MADAAN ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 220500,
                                  "ctin": "03ABCPM5123A1ZT",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 11025
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "J.V. ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 9700,
                                  "ctin": "03ABCPK6123B1ZI",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1746
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RAJ AGENCIES",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 7400,
                                  "ctin": "03ABCPK8123M1Z5",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1332
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "RK TRADERS",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 35200,
                                  "ctin": "04ABCPA0123Q1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6336
                                },
                                {
                                  "sgst": 343.38,
                                  "ttldocs": 4,
                                  "trdnm": "M/S NEW ROK HOTELS PVT. LTD.",
                                  "supprd": "022024",
                                  "supfildt": "13-03-2024",
                                  "txval": 6175,
                                  "ctin": "05ABCCB7123A1ZV",
                                  "cgst": 343.38,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 646.8,
                                  "ctin": "05ABCCR1123J1ZK",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 116.42
                                },
                                {
                                  "sgst": 366.25,
                                  "ttldocs": 3,
                                  "trdnm": "HOTEL PARAS GRAND",
                                  "supprd": "022024",
                                  "supfildt": "23-03-2024",
                                  "txval": 6250,
                                  "ctin": "05ABCFH2123A1ZU",
                                  "cgst": 366.25,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 146.54,
                                  "ttldocs": 4,
                                  "trdnm": "HOTEL LEMON PARK",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 2547.4,
                                  "ctin": "05ABCPM3123F3ZQ",
                                  "cgst": 146.54,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "M/S SHREE BALAJI HERBO LABS",
                                  "supprd": "032024",
                                  "supfildt": "04-04-2024",
                                  "txval": 313286.4,
                                  "ctin": "05ABCFS4123F1Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 56391.55
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "M/S S K ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 40000,
                                  "ctin": "05ABCPK5123E1ZI",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 7200
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "INGENIOUS APPLIANCES & PACKAGING PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 160000,
                                  "ctin": "06ABCCI0123R1ZH",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 28800
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 5,
                                  "trdnm": "Beardo",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 154629.54,
                                  "ctin": "06ABCCZ9123M1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 27698.6
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "FACEBOOK INDIA ONLINE SERVICES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3314073.48,
                                  "ctin": "06ABCCF5123G1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 596533.22
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RELIANCE RETAIL LTD.",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 11000,
                                  "ctin": "06ABCCR1123E1ZT",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1980
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "SAI PACKAGING COMPANY",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 220029.25,
                                  "ctin": "06ABCCS7123L1Z0",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 39605.27
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Times Internet Ltd.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4321.16,
                                  "ctin": "06ABCCT1123M1Z3",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 777.81
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "UNICOMMERCE ESOLUTIONS LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 167635.8,
                                  "ctin": "06ABCCU4123K1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 30174.44
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "FLAMINGO DIGITAL PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 80000,
                                  "ctin": "06ABCCF5123Q1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 14400
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1723662.26,
                                  "ctin": "06ABCCG0123D1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 310259.21
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "Moonstone Ventures LLP",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 899414,
                                  "ctin": "06ABCFY8123A2ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 161894.52
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "Hippo Innovations Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 60008.82,
                                  "ctin": "06ABCCH5123B1ZY",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 10801.58
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 88,
                                  "trdnm": "MAKE MY TRIP (INDIA) PVT. LTD.",
                                  "supprd": "022024",
                                  "supfildt": "16-03-2024",
                                  "txval": 5851.64,
                                  "ctin": "06ABCCM5123R1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1053.36
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "DATALOGY DIGITAL PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4377,
                                  "ctin": "06ABCCD8123G2ZM",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 787.86
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "FILLY MEDIA SOLUTIONS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 164529.95,
                                  "ctin": "06ABCCF0123Q1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 29615.39
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ICUBESWIRE TECHNOLOGIES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 30010.37,
                                  "ctin": "06ABCCI2123H1Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5401.87
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 10,
                                  "trdnm": "SAFEXPRESS PRIVATE LTD.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 524757.51,
                                  "ctin": "06ABCCS4123H1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 94456.35
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "vCommission Media Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 18402.11,
                                  "ctin": "06ABCCV0123B1ZK",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3312.38
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "BLINK COMMERCE PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 135836,
                                  "ctin": "06ABCCG9123E1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 24450.48
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "Pouring Pounds India Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 57473.62,
                                  "ctin": "06ABCCP1123P1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 10345.25
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 817.95,
                                  "ctin": "06ABCCR1123J1ZI",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 147.23
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 6,
                                  "trdnm": "Ryder Propack Private limited",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 1308872.25,
                                  "ctin": "06ABCCR6123N1ZK",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 235597.03
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ADMITAD MEDIA PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 106141.33,
                                  "ctin": "06ABCCA9123H1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 19105.44
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Mensa Brand Technologies Private Limited",
                                  "supprd": "022024",
                                  "supfildt": "13-03-2024",
                                  "txval": 160000,
                                  "ctin": "06ABCCM5123J1Z6",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 28800
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 64,
                                  "trdnm": "THE PACK PARTNERS",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 30912455.3,
                                  "ctin": "06ABCFT9123N1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5564241.95
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "APOLLO HEALTHCO LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 295000,
                                  "ctin": "06ABCCA5123L1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 53100
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "SUPERWELL COMTRADE PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1197499,
                                  "ctin": "06ABCCS8123R1ZU",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 215549.82
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "DHINGRA ASSOCIATES",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 5000,
                                  "ctin": "06ABCPD0123C1ZL",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 900
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "BO INTERNATIONAL",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 228737.25,
                                  "ctin": "06ABCPG8123E2ZS",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 41172.71
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "R I AYURVEDA RESEARCH LABS (A UNIT OF RAM LAL INDER LAL PVT. LTD.)",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 564244.5,
                                  "ctin": "07ABCCR7123G1ZL",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 101564.01
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 15,
                                  "trdnm": "Interglobe Aviation Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 64618,
                                  "ctin": "07ABCCI2123B1Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3273
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Reliance Retail Limited",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 44000,
                                  "ctin": "07ABCCR1123E1ZR",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 7920
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "CODOGNOTTO LOGISTICS INDIA PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 488391.08,
                                  "ctin": "07ABCCI4123L1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 87910.39
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "VELVET GROOMING PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 242470,
                                  "ctin": "07ABCCV5123Q1ZK",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 43644.6
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "EGROWTH TECHNOLOGIES LLP",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 100000,
                                  "ctin": "07ABCFE0123F1ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 18000
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "GOEXCELSIOR PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 85920,
                                  "ctin": "07ABCCG9123C1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 15465.6
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "supprd": "012024",
                                  "supfildt": "01-04-2024",
                                  "txval": 39200,
                                  "ctin": "07ABCCR1123A1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 7056
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "supprd": "022024",
                                  "supfildt": "11-04-2024",
                                  "txval": 47600,
                                  "ctin": "07ABCCR1123A1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 8568
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 9,
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "supprd": "102023",
                                  "supfildt": "12-03-2024",
                                  "txval": 72100,
                                  "ctin": "07ABCCR1123A1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 12978
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "supprd": "122023",
                                  "supfildt": "29-03-2024",
                                  "txval": 1200,
                                  "ctin": "07ABCCR1123A1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 216
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "AMITOJE INDIA PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 863500,
                                  "ctin": "07ABCCA1123Q1ZM",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 155430
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RLH ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 6000,
                                  "ctin": "07ABCFR0123J1ZN",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1080
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4727,
                                  "ctin": "07ABCCS9123P1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 236.35
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "SYSCOM PACKAGING COMPANY",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 69078,
                                  "ctin": "07ABCFS7123N1ZX",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 12434.04
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "R K TRADERS",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 29500,
                                  "ctin": "07ABCPV3123Q1ZT",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5310
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "UNITED ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 86000,
                                  "ctin": "07ABCPN7123G1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 15480
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Rahul Chaudhry & Partners",
                                  "supprd": "012024",
                                  "supfildt": "02-04-2024",
                                  "txval": 16000,
                                  "ctin": "07ABCPC9123L1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "HIPPO HITECH DIGITAL PRINT SOLUTIONS",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 34425,
                                  "ctin": "07ABCPK8123J1ZX",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6196.5
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "ICONIC DIGITAL MARKETING",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 18323,
                                  "ctin": "07ABCPJ5123J1Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3298.14
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "JSR SOLUTIONS",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 294000,
                                  "ctin": "07ABCPA5123P2Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 52920
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "NAKSH ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4533.05,
                                  "ctin": "07ABCPA7123P1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 815.95
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3763,
                                  "ctin": "08ABCCI2123B1Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 188
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 7,
                                  "trdnm": "HELIOS PACKAGING PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 5484762.84,
                                  "ctin": "08ABCCH5123D1ZU",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 987257.3
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 6,
                                  "trdnm": "HOTEL CRYSTAL",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 5573,
                                  "ctin": "08ABCFH6123Q1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 562.15
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "YES CARGO LOGISTICS",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 206500,
                                  "ctin": "08ABCPK7123J1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 24780
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "BHAVYA ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 150500,
                                  "ctin": "08ABCPD4123M1ZL",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 27090
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 11,
                                  "trdnm": "M/S ONE 97 COMMUNICATION LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3971.6,
                                  "ctin": "09ABCCO4123A1Z3",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 714.89
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ZED LIFESTYLE PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3611,
                                  "ctin": "09ABCCZ9123M1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 649.98
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "M/S  INTERGLOBE AVIATION LIMTED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 5082,
                                  "ctin": "09ABCCI2123B1Z0",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 254
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 55000,
                                  "ctin": "09ABCCR1123E1ZN",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 9900
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 7,
                                  "trdnm": "M/S VEDIC COSMECEUTICALS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 1094046.75,
                                  "ctin": "09ABCCV6123H1ZW",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 196928.42
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "M/S PINE LABS PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 9118.81,
                                  "ctin": "09ABCCP7123K1ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1641.39
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "INNTHINK TECHNOLOGIES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "05-04-2024",
                                  "txval": 219950,
                                  "ctin": "09ABCCI7123A1ZT",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 39591
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "M/S LULU INDIA SHOPPING MALL PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 68734,
                                  "ctin": "09ABCCL0123N1ZW",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 12372.12
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "AG POLY PACKS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 39480,
                                  "ctin": "09ABCCA9123K1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 7106.4
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "CLOUDSTUFF TECHNOLOGY PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 23920,
                                  "ctin": "09ABCCC7123A1ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4305.6
                                },
                                {
                                  "sgst": 126.75,
                                  "ttldocs": 1,
                                  "trdnm": "M/S  RADICAL PALACE",
                                  "supprd": "022024",
                                  "supfildt": "15-03-2024",
                                  "txval": 2112.5,
                                  "ctin": "09ABCCR1123P1ZL",
                                  "cgst": 126.75,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "KHAITAN & CO LLP",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 229371,
                                  "ctin": "09ABCFK5123H1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 41287
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 95607.25,
                                  "ctin": "09ABCCR1123J1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 17209.33
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RISE APPLIANCES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3600000,
                                  "ctin": "09ABCCR3123F1Z6",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 648000
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ADZ2LEAD MEDIA PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 242000,
                                  "ctin": "09ABCCA3123B1ZM",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 43560
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "HIGHINTOWN MEDIA",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 100000,
                                  "ctin": "09ABCFH4123C1ZY",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 18000
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "M/s HEALTIFYING INDIA",
                                  "supprd": "022024",
                                  "supfildt": "12-03-2024",
                                  "txval": 68458,
                                  "ctin": "09ABCFH9123R1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 12322.44
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "M/s HEALTIFYING INDIA",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 72917,
                                  "ctin": "09ABCFH9123R1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 13125.06
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "MAHI ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 8923.72,
                                  "ctin": "09ABCPT2123M1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1606.26
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "M/S TAJ BRUSH INDUSTRIES",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 159744,
                                  "ctin": "09ABCPA8123E1Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 28753.92
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "M/S BHATIA & SONS",
                                  "supprd": "022024",
                                  "supfildt": "19-03-2024",
                                  "txval": 5000,
                                  "ctin": "09ABCPB5123E1Z0",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 900
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "M/S BHATIA & SONS",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 5000,
                                  "ctin": "09ABCPB5123E1Z0",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 900
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "M/S HONEY TRADERS",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 4500,
                                  "ctin": "09ABCPA5123C1ZL",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 810
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 5,
                                  "trdnm": "APEX TRADING FIRM",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 35000,
                                  "ctin": "09ABCPG4123N2ZS",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6300
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "M/S G. S. ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 23669.52,
                                  "ctin": "09ABCPK4123N1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4260.51
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "M/S GOODNESS OF NATURE",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 185339,
                                  "ctin": "09ABCPM6123N1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 33361.02
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ANALYTICS CLOUD",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 31703.1,
                                  "ctin": "09ABCPS0123E1ZQ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5706.56
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "M/S  LAKSHYA AGENCIES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 34000,
                                  "ctin": "09ABCPS7123E1ZU",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6120
                                },
                                {
                                  "sgst": 423.6,
                                  "ttldocs": 3,
                                  "trdnm": "HOTEL SRIYASH REGENCY",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 7060,
                                  "ctin": "10ABCCJ7123L3ZH",
                                  "cgst": 423.6,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SREENIWAS BASUDEO",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 28827,
                                  "ctin": "18ABCCA7123P3ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5188.86
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SATI OIL UDYOG LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 14013,
                                  "ctin": "18ABCCS8123M1ZQ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2522.34
                                },
                                {
                                  "sgst": 367.11,
                                  "ttldocs": 4,
                                  "trdnm": "ADITYA RESIDENCY",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 6118.44,
                                  "ctin": "18ABCHS3123P1ZF",
                                  "cgst": 367.11,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 5,
                                  "trdnm": "BEARDO",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 172662.08,
                                  "ctin": "19ABCCZ9123M1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 31049.89
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "INTER GLOBE AVIATION LTD.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2762,
                                  "ctin": "19ABCCI2123B1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 138
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "DILIP INTERNATIONAL",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 18000,
                                  "ctin": "19ABCHR3123M1ZN",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3240
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 320653.85,
                                  "ctin": "19ABCCR1123J1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 57717.77
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "YASHI ENTERPRISE",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 6500,
                                  "ctin": "19ABCPC0123F1ZO",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1170
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "SIDDHI VINAYAK",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 32000,
                                  "ctin": "19ABCFS8123G1ZN",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5760
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "K.B.ENTERPRISE",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 18000,
                                  "ctin": "19ABCPD2123D1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3240
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "NUTIX ENTERPRISE",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 26500,
                                  "ctin": "19ABCPD7123K1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4770
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "AIM MARKETING",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 6000,
                                  "ctin": "19ABCPD4123B1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1080
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "LOKENATH MARKETING",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 13500,
                                  "ctin": "19ABCPS3123Q1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2430
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 23384,
                                  "ctin": "20ABCCI2123B1ZG",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1169
                                },
                                {
                                  "sgst": 94.62,
                                  "ttldocs": 1,
                                  "trdnm": "Ruptub Solutions Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1577.02,
                                  "ctin": "20ABCCR3123R1Z5",
                                  "cgst": 94.62,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "OCTAADS MEDIA",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 45133.4,
                                  "ctin": "20ABCFO6123P1Z0",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 8124.01
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 578.85,
                                  "ctin": "20ABCCR1123J1ZS",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 104.19
                                },
                                {
                                  "sgst": 193.21,
                                  "ttldocs": 2,
                                  "trdnm": "SURAMA HOSPITALITY",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 2992.32,
                                  "ctin": "20ABCFS8123H1ZF",
                                  "cgst": 193.21,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 338.82,
                                  "ttldocs": 5,
                                  "trdnm": "HOTEL THE CASTLE",
                                  "supprd": "022024",
                                  "supfildt": "13-03-2024",
                                  "txval": 5997.06,
                                  "ctin": "20ABCPS5123L1Z3",
                                  "cgst": 338.82,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 196.08,
                                  "ttldocs": 2,
                                  "trdnm": "CHAKADOLA ESTATES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 3268,
                                  "ctin": "21ABCCC7123R1ZN",
                                  "cgst": 196.08,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 697.5,
                                  "ttldocs": 2,
                                  "trdnm": "M/S MAYFAIR HOTELS & RESORTS LTD.",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 11625,
                                  "ctin": "21ABCCM6123E1ZL",
                                  "cgst": 697.5,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 94.44,
                                  "ttldocs": 1,
                                  "trdnm": "Ruptub Solutions Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1574.06,
                                  "ctin": "21ABCCR3123R1Z3",
                                  "cgst": 94.44,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "DIGVIJAY INTERNATIONAL",
                                  "supprd": "022024",
                                  "supfildt": "20-03-2024",
                                  "txval": 3900,
                                  "ctin": "21ABCFD2123K1ZO",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 468
                                },
                                {
                                  "sgst": 177.8,
                                  "ttldocs": 4,
                                  "trdnm": "JN SHARMA",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 3214.5,
                                  "ctin": "21ABCFJ2123H1ZB",
                                  "cgst": 177.8,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ASP GROUP",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1789.1,
                                  "ctin": "21ABCFA6123L2Z6",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 214.69
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "FASHLAB RETAILZ",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 72952,
                                  "ctin": "21ABCPP5123C1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 13131.36
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "LAXMI TRADING",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 24000,
                                  "ctin": "22ABCPL4123Q1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4320
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 12412,
                                  "ctin": "23ABCCI2123B1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 622
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Khandelwal Agency",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 5000,
                                  "ctin": "23ABCPK0123P1Z1",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 900
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Raghunath Associates",
                                  "supprd": "022024",
                                  "supfildt": "19-03-2024",
                                  "txval": 52974,
                                  "ctin": "23ABCPD3123J1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 9535.32
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Raghunath Associates",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 55870,
                                  "ctin": "23ABCPD3123J1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 10056.6
                                },
                                {
                                  "sgst": 84856.06,
                                  "ttldocs": 6,
                                  "trdnm": "BLUE DART EXPRESS LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 942845.09,
                                  "ctin": "24ABCCB0123L1ZY",
                                  "cgst": 84856.06,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 89.91,
                                  "ttldocs": 1,
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 999,
                                  "ctin": "24ABCCB2123G1ZT",
                                  "cgst": 89.91,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1631.65,
                                  "ttldocs": 6,
                                  "trdnm": "INDUSIND BANK LTD.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 18129.39,
                                  "ctin": "24ABCCI1123G1Z9",
                                  "cgst": 1631.65,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 176.68,
                                  "ttldocs": 2,
                                  "trdnm": "LORDS ISHWAR HOTELS LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 3425.91,
                                  "ctin": "24ABCCI4123F1Z2",
                                  "cgst": 176.68,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 3176.88,
                                  "ttldocs": 21,
                                  "trdnm": "KOTAK MAHINDRA BANK LTD.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 35298.97,
                                  "ctin": "24ABCCK4123J1ZQ",
                                  "cgst": 3176.93,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 3842.64,
                                  "ttldocs": 1,
                                  "trdnm": "LETRA GRAPHIX PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 42696,
                                  "ctin": "24ABCCL2123Q1Z8",
                                  "cgst": 3842.64,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 14878.08,
                                  "ttldocs": 2,
                                  "trdnm": "MARICO LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 165312,
                                  "ctin": "24ABCCM7123G2ZC",
                                  "cgst": 14878.08,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 5233.05,
                                  "ttldocs": 2,
                                  "trdnm": "PRINT VISION PVT LTD.",
                                  "supprd": "022024",
                                  "supfildt": "12-03-2024",
                                  "txval": 58145,
                                  "ctin": "24ABCCP9123M1ZV",
                                  "cgst": 5233.05,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 11318.4,
                                  "ttldocs": 2,
                                  "trdnm": "PRINT VISION PVT LTD.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 125760,
                                  "ctin": "24ABCCP9123M1ZV",
                                  "cgst": 11318.4,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 24736.5,
                                  "ttldocs": 11,
                                  "trdnm": "UNICK FIX A FORM AND PRINTERS LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 274850,
                                  "ctin": "24ABCCU2123H1ZQ",
                                  "cgst": 24736.5,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1762.02,
                                  "ttldocs": 4,
                                  "trdnm": "SHREE EMPIRE STATE SHOP OFFICES & PREMISES CO OP  HSG SOC LIMITED",
                                  "supprd": "022024",
                                  "supfildt": "12-03-2024",
                                  "txval": 19578,
                                  "ctin": "24ABCLS1123E1Z9",
                                  "cgst": 1762.02,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1123.51,
                                  "ttldocs": 2,
                                  "trdnm": "CESC LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 12483.3,
                                  "ctin": "24ABCCC2123N1ZU",
                                  "cgst": 1123.51,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 3513.5,
                                  "ttldocs": 29,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 138834,
                                  "ctin": "24ABCCI2123B1Z8",
                                  "cgst": 3513.5,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 394.71,
                                  "ttldocs": 2,
                                  "trdnm": "Reliance Jio Infocomm  Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4385.7,
                                  "ctin": "24ABCCI6123G1ZP",
                                  "cgst": 394.71,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 196.47,
                                  "ttldocs": 2,
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2183,
                                  "ctin": "24ABCCL5123N1ZE",
                                  "cgst": 196.47,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 11246.54,
                                  "ttldocs": 1,
                                  "trdnm": "TATA AIG GENERAL INSURANCE COMPANY LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 124961.57,
                                  "ctin": "24ABCCT3123Q1Z2",
                                  "cgst": 11246.54,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 160.39,
                                  "ttldocs": 1,
                                  "trdnm": "HETAL CORPORATION",
                                  "supprd": "032024",
                                  "supfildt": "07-04-2024",
                                  "txval": 2840,
                                  "ctin": "24ABCFH5123Q1Z1",
                                  "cgst": 160.39,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 10932,
                                  "ttldocs": 2,
                                  "trdnm": "VR Surat Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 121459,
                                  "ctin": "24ABCCD5123R1ZZ",
                                  "cgst": 10932,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 170.33,
                                  "ttldocs": 1,
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 1892.52,
                                  "ctin": "24ABCCF0123K1ZN",
                                  "cgst": 170.33,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 559,
                                  "ttldocs": 1,
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 22350,
                                  "ctin": "24ABCCN6123P1ZV",
                                  "cgst": 559,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1620.97,
                                  "ttldocs": 1,
                                  "trdnm": "OZONETEL COMMUNICATIONS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 18010.8,
                                  "ctin": "24ABCCO2123E1Z3",
                                  "cgst": 1620.97,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 544.84,
                                  "ttldocs": 2,
                                  "trdnm": "AMBROSIA",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 9265.57,
                                  "ctin": "24ABCCS9123J3ZY",
                                  "cgst": 544.84,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 5902.06,
                                  "ttldocs": 1,
                                  "trdnm": "KAY KAY OVERSEAS CORPORATION",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 65578.44,
                                  "ctin": "24ABCFK0123D3ZN",
                                  "cgst": 5902.06,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 31405.89,
                                  "ttldocs": 3,
                                  "trdnm": "ACCURATE PRINTERS",
                                  "supprd": "032024",
                                  "supfildt": "05-04-2024",
                                  "txval": 481662.5,
                                  "ctin": "24ABCHC5123N1ZB",
                                  "cgst": 31405.89,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 3439.21,
                                  "ttldocs": 2,
                                  "trdnm": "OCTAVOS ENTERPRISE SOLUTIONS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 38213.52,
                                  "ctin": "24ABCCO2123N1Z8",
                                  "cgst": 3439.21,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 54.03,
                                  "ttldocs": 1,
                                  "trdnm": "JIO PLATFORMS LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 600.3,
                                  "ctin": "24ABCCJ6123N1ZU",
                                  "cgst": 54.03,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 254,
                                  "ttldocs": 2,
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 10160,
                                  "ctin": "24ABCCT8123F6Z5",
                                  "cgst": 254,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 57956.3,
                                  "ttldocs": 2,
                                  "trdnm": "BEST VOYAGE PRIVATE LIMITED",
                                  "supprd": "022024",
                                  "supfildt": "12-03-2024",
                                  "txval": 2318252,
                                  "ctin": "24ABCCB0123F1Z2",
                                  "cgst": 57956.3,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 601715.06,
                                  "ttldocs": 66,
                                  "trdnm": "HCP WELLNESS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 6685722.62,
                                  "ctin": "24ABCCH7123H1ZK",
                                  "cgst": 601715.06,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 2823.15,
                                  "ttldocs": 2,
                                  "trdnm": "TORQUE COMMERCIAL VEHICLES PRIVATE LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 25111.79,
                                  "ctin": "24ABCCT2123C1ZZ",
                                  "cgst": 2823.15,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 226200.78,
                                  "ttldocs": 13,
                                  "trdnm": "RPM LOGISTICS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 2513342,
                                  "ctin": "24ABCCR4123K1ZR",
                                  "cgst": 226200.78,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 5867.1,
                                  "ttldocs": 4,
                                  "trdnm": "IMAGE TECH",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 65190,
                                  "ctin": "24ABCFI6123Q1ZT",
                                  "cgst": 5867.1,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 13270.32,
                                  "ttldocs": 2,
                                  "trdnm": "JAIN SOAP",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 147448,
                                  "ctin": "24ABCFJ6123A1ZG",
                                  "cgst": 13270.32,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 25487.26,
                                  "ttldocs": 1,
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 283193.66,
                                  "ctin": "24ABCCA3123J1ZO",
                                  "cgst": 25487.26,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 250.86,
                                  "ttldocs": 1,
                                  "trdnm": "CLICKTECH RETAIL PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2787.28,
                                  "ctin": "24ABCCC9123E1ZD",
                                  "cgst": 250.86,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 45542.87,
                                  "ttldocs": 16,
                                  "trdnm": "CALISTTA HEALTHCARE",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 506031.8,
                                  "ctin": "24ABCFC0123D1ZZ",
                                  "cgst": 45542.87,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1501.41,
                                  "ttldocs": 5,
                                  "trdnm": "SHIVA SATYA HOTELS PVT.LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 24849,
                                  "ctin": "24ABCCS2123L1ZO",
                                  "cgst": 1501.41,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 936,
                                  "ttldocs": 1,
                                  "trdnm": "HRI CREATION LLP",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 10400,
                                  "ctin": "24ABCFH7123D1ZF",
                                  "cgst": 936,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1050.57,
                                  "ttldocs": 1,
                                  "trdnm": "HP E-TECH",
                                  "supprd": "022024",
                                  "supfildt": "13-03-2024",
                                  "txval": 11673,
                                  "ctin": "24ABCFH9123Q1ZL",
                                  "cgst": 1050.57,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 6795,
                                  "ttldocs": 3,
                                  "trdnm": "P A PAREKH AND CO",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 75500,
                                  "ctin": "24ABCFP3123D2ZG",
                                  "cgst": 6795,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 26615.03,
                                  "ttldocs": 7,
                                  "trdnm": "AEGIS PACKAGING",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 295722.5,
                                  "ctin": "24ABCFA0123E1ZY",
                                  "cgst": 26615.03,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1377,
                                  "ttldocs": 9,
                                  "trdnm": "BEST VOYAGE DOMESTIC LLP",
                                  "supprd": "022024",
                                  "supfildt": "12-03-2024",
                                  "txval": 15300,
                                  "ctin": "24ABCFB1123A1ZW",
                                  "cgst": 1377,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 7517.81,
                                  "ttldocs": 1,
                                  "trdnm": "VIVA PACK PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 83531.25,
                                  "ctin": "24ABCCS2123B1ZA",
                                  "cgst": 7517.81,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 2970,
                                  "ttldocs": 1,
                                  "trdnm": "AMBA MULTIPRINT",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 33000,
                                  "ctin": "24ABCFA9123E1ZR",
                                  "cgst": 2970,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 9576,
                                  "ttldocs": 1,
                                  "trdnm": "K MANOHAR THE BAG MART",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 106400,
                                  "ctin": "24ABCPL9123J1ZB",
                                  "cgst": 9576,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 198.15,
                                  "ttldocs": 2,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 7926,
                                  "ctin": "24ABCCS9123P1ZI",
                                  "cgst": 198.15,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 23535,
                                  "ttldocs": 1,
                                  "trdnm": "SANKALP IN",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 261500,
                                  "ctin": "24ABCFS6123A1ZM",
                                  "cgst": 23535,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 201.6,
                                  "ttldocs": 1,
                                  "trdnm": "SHREE  MAHAVEER  STATIONERY MART",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 3140,
                                  "ctin": "24ABCFS8123M1ZI",
                                  "cgst": 201.6,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1800,
                                  "ttldocs": 2,
                                  "trdnm": "Velvet Cosmetics",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 20000,
                                  "ctin": "24ABCPP5123J1ZB",
                                  "cgst": 1800,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 43013.07,
                                  "ttldocs": 11,
                                  "trdnm": "PERFECT PACKAGING",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 477923,
                                  "ctin": "24ABCPD7123G1Z3",
                                  "cgst": 43013.07,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 6750,
                                  "ttldocs": 1,
                                  "trdnm": "The Drum Circle",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 75000,
                                  "ctin": "24ABCPV2123F1ZB",
                                  "cgst": 6750,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 5836.05,
                                  "ttldocs": 2,
                                  "trdnm": "SONEE CREATION",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 64845,
                                  "ctin": "24ABCPC3123E1ZL",
                                  "cgst": 5836.05,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 3095.19,
                                  "ttldocs": 1,
                                  "trdnm": "MARUTI CORPORATION",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 34391,
                                  "ctin": "24ABCPP2123G1ZI",
                                  "cgst": 3095.19,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 2371.25,
                                  "ttldocs": 2,
                                  "trdnm": "ORION INC.",
                                  "supprd": "032024",
                                  "supfildt": "06-04-2024",
                                  "txval": 94850,
                                  "ctin": "24ABCPB1123D1ZX",
                                  "cgst": 2371.25,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1080,
                                  "ttldocs": 1,
                                  "trdnm": "MEHAR EVENT",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 12000,
                                  "ctin": "24ABCPB6123C1Z8",
                                  "cgst": 1080,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 2340,
                                  "ttldocs": 2,
                                  "trdnm": "SHAKTI ENTERPRISE",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 26000,
                                  "ctin": "24ABCPB5123H1ZD",
                                  "cgst": 2340,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 27961.03,
                                  "ttldocs": 2,
                                  "trdnm": "MG VIP LOUNGE",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 310678.04,
                                  "ctin": "24ABCPS2123A2Z8",
                                  "cgst": 27961.03,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 17098.38,
                                  "ttldocs": 2,
                                  "trdnm": "8 SENSE",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 189982,
                                  "ctin": "24ABCPM9123Q1ZB",
                                  "cgst": 17098.38,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 3033,
                                  "ttldocs": 2,
                                  "trdnm": "ADARSH ENTERPRISE",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 33700,
                                  "ctin": "24ABCPS3123G1ZW",
                                  "cgst": 3033,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 9450,
                                  "ttldocs": 1,
                                  "trdnm": "PRIME PACKMART",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 105000,
                                  "ctin": "24ABCPV3123J1ZT",
                                  "cgst": 9450,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1620,
                                  "ttldocs": 1,
                                  "trdnm": "RIYANSH ENTERPRISE",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 18000,
                                  "ctin": "24ABCPP0123D1ZS",
                                  "cgst": 1620,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 5668.65,
                                  "ttldocs": 1,
                                  "trdnm": "MAGIK WINGS",
                                  "supprd": "032024",
                                  "supfildt": "06-04-2024",
                                  "txval": 62985,
                                  "ctin": "24ABCPS0123H1Z0",
                                  "cgst": 5668.65,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 942.93,
                                  "ttldocs": 5,
                                  "trdnm": "Think Printz Solutions",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 10477,
                                  "ctin": "24ABCPP8123D1Z7",
                                  "cgst": 942.93,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "RADCOM PACKAGING PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 560678.08,
                                  "ctin": "26ABCCR9123B1ZM",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 100922.06
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "ANTRAWEB TECHNOLOGIES PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 183624,
                                  "ctin": "27ABCCA9123A1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 33052.32
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 58,
                                  "trdnm": "MARICO LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 5712397.42,
                                  "ctin": "27ABCCM7123G1Z7",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1028231.58
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "WELLNESS FOREVER MEDICARE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 396126,
                                  "ctin": "27ABCCW7123P1ZH",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 71302.68
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "Zed Lifestyle Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 104948.39,
                                  "ctin": "27ABCCZ9123M1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 18890.71
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "BRITO PLAST",
                                  "supprd": "022024",
                                  "supfildt": "08-04-2024",
                                  "txval": 119040,
                                  "ctin": "27ABCFB2123J1ZH",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 21427.2
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 7,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 28164,
                                  "ctin": "27ABCCI2123B1Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1409
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 380000,
                                  "ctin": "27ABCCL5123N1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 68400
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "LETTERSHOP INDIA PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 33000,
                                  "ctin": "27ABCCL7123P1ZR",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5940
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "OCEAN GATE CONTAINER TERMINALS PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 119515,
                                  "ctin": "27ABCCO1123H1ZM",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 21512.7
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "OML ENTERTAINMENT PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 180000,
                                  "ctin": "27ABCCO1123G1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 32400
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 30,
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 37669.06,
                                  "ctin": "27ABCCR1123E1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6780.74
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "BEAUTY PALACE",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 15000,
                                  "ctin": "27ABCPB5123P1ZH",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2700
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "HRITHIK ROSHAN",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3300000,
                                  "ctin": "27ABCPN2123F1ZQ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 594000
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 13073,
                                  "ctin": "27ABCCN6123P1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 654
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "KAY KAY OVERSEAS CORPORATION",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2274866,
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 409475.88
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "BEAUTY CENTRE",
                                  "supprd": "012024",
                                  "supfildt": "25-03-2024",
                                  "txval": 75000,
                                  "ctin": "27ABCFB3123J1ZR",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 13500
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "WHITE BOX",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 44000,
                                  "ctin": "27ABCFW2123G1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 7920
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "T.K. ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 280.26,
                                  "ctin": "27ABCPS2123L1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 50.45
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 16880,
                                  "ctin": "27ABCCT8123F1Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 844
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "VIHAAN WEB SOLUTIONS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 225782.47,
                                  "ctin": "27ABCCV5123G1Z5",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 40640.84
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "KHAITAN AND CO",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 750000,
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 135000
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "COINTAB SOFTWARE PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 205000,
                                  "ctin": "27ABCCC1123M1Z7",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 36900
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 7,
                                  "trdnm": "HOOLI BRANDS MULTI TRADING PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "06-04-2024",
                                  "txval": 4708200,
                                  "ctin": "27ABCCH5123M1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 847476
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ITHINK LOGISTIC QUICK SERVICES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3072345.27,
                                  "ctin": "27ABCCI1123J1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 553022.15
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "CITIUS BPO (INDIA) PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 279720,
                                  "ctin": "27ABCCC7123L1ZY",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 50349.6
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "POCKET ACES PICTURES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 320000,
                                  "ctin": "27ABCCP5123D1ZQ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 57600
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "RVCJ DIGITAL MEDIA PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 800000,
                                  "ctin": "27ABCCR2123A1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 144000
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "LIFESTYLE CARE",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 61400,
                                  "ctin": "27ABCFL1123H1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 11052
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "MOBLIGENT MEDIA PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 18831,
                                  "ctin": "27ABCCM2123P1ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3389.63
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "CLARA INTERNATIONAL LLP",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 236889.6,
                                  "ctin": "27ABCFC0123B1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 42640.12
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SAMRUDDHI ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 6000,
                                  "ctin": "27ABCFS6123P1Z0",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1080
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "EASEBUZZ PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2.15,
                                  "ctin": "27ABCCS2123M1Z5",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 0.39
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "BEAUTY GLOW",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 7000,
                                  "ctin": "27ABCFB8123J1ZT",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1260
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ROSHAN PACKAGING INDUSTRIES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 96810,
                                  "ctin": "27ABCPS7123E1ZK",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 17425.8
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 15527,
                                  "ctin": "27ABCCS9123P1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 776.35
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SUHAN AEROSOL",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 144768,
                                  "ctin": "27ABCFS2123H1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 26058.24
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 12,
                                  "trdnm": "ANSH ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 620408,
                                  "ctin": "27ABCPY7123N2ZJ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 36633.25
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "TECHNO ENTERPRISE",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 367400,
                                  "ctin": "27ABCPP6123Q1Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 66132.02
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "VERSION NEXT & OJAS INDUSTRIES",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 92280,
                                  "ctin": "27ABCPB4123A1ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 16610.4
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Akanksha Mota & Co",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 70000,
                                  "ctin": "27ABCPM9123A1ZX",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 12600
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "A A Garg & co",
                                  "supprd": "012024",
                                  "supfildt": "19-03-2024",
                                  "txval": 7500,
                                  "ctin": "27ABCPG7123Q1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1350
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "A A Garg & co",
                                  "supprd": "022024",
                                  "supfildt": "03-04-2024",
                                  "txval": 7500,
                                  "ctin": "27ABCPG7123Q1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1350
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RIGHT WRITING ENTERPRISES / HEET EXPORTS",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 317956,
                                  "ctin": "27ABCPS7123F1Z5",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 57232.08
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "BEAUTY BAZAAR",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 10000,
                                  "ctin": "27ABCPK3123B1ZW",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1800
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SUNNY ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 10000,
                                  "ctin": "27ABCPM1123L1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1800
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "DEV ENTERPRISE",
                                  "supprd": "032024",
                                  "supfildt": "05-04-2024",
                                  "txval": 278640,
                                  "ctin": "27ABCPM7123K1ZX",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 50155.2
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "E COMM",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 573400,
                                  "ctin": "27ABCPP2123R1ZS",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 68808
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 5,
                                  "trdnm": "Finesse Records",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 1418515,
                                  "ctin": "27ABCPB2123L1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 255332.7
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "M/S IP CRIME VIGILANCE",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 60000,
                                  "ctin": "27ABCPK9123P2ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 10800
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "R R Beauty World Thane",
                                  "supprd": "022024",
                                  "supfildt": "20-03-2024",
                                  "txval": 14000,
                                  "ctin": "27ABCPS7123C1Z3",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2520
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 7,
                                  "trdnm": "MYNTRA JABONG INDIA PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 269777.26,
                                  "ctin": "29ABCCQ3123A2ZI",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 48559.91
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 5,
                                  "trdnm": "Beardo",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 154039.14,
                                  "ctin": "29ABCCZ9123M1Z7",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 27684.45
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "LULU INTERNATIONAL SHOPPING MALLS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 50000,
                                  "ctin": "29ABCCL0123H1ZY",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 9000
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 8,
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 26451155.55,
                                  "ctin": "29ABCCF0123K1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4761207.99
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "VALUELEAF SERVICES INDIA PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 4543,
                                  "ctin": "29ABCCV9123F1ZY",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 817.74
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "FLASHMONK PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 11590,
                                  "ctin": "29ABCCF9123P1Z1",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2086.2
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Nxtify Technologies Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 21551,
                                  "ctin": "29ABCCN7123J1ZM",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3879.18
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 38075328,
                                  "ctin": "29ABCCR0123M2ZY",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6853559.04
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Swiggy",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 300000,
                                  "ctin": "29ABCCB7123D1ZQ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 54000
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 12,
                                  "trdnm": "DREAMPLUG TECHNOLOGIES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1932810.16,
                                  "ctin": "29ABCCD6123Q1ZS",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 347905.84
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RAZORPAY SOFTWARE PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 56738.35,
                                  "ctin": "29ABCCR4123J1ZU",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 10212.9
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 7,
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4343905.86,
                                  "ctin": "29ABCCA3123J1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 781902.83
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Kofluence Tech Private Limited",
                                  "supprd": "022024",
                                  "supfildt": "12-03-2024",
                                  "txval": 25000,
                                  "ctin": "29ABCCK0123H1ZU",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4500
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "VOLOPAY INDIA PRIVATE LIMITED",
                                  "supprd": "012024",
                                  "supfildt": "26-03-2024",
                                  "txval": 50.85,
                                  "ctin": "29ABCCV3123N1ZW",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 9.15
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "VOLOPAY INDIA PRIVATE LIMITED",
                                  "supprd": "022024",
                                  "supfildt": "26-03-2024",
                                  "txval": 101.69,
                                  "ctin": "29ABCCV3123N1ZW",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 18.3
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "AIX CONNECT PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2170.48,
                                  "ctin": "29ABCCA4123P1ZJ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 108.52
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "SRI DURGA ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 18000,
                                  "ctin": "29ABCPV5123M1ZS",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3240
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "STERLING BOX & PACKS",
                                  "supprd": "032024",
                                  "supfildt": "02-04-2024",
                                  "txval": 28800,
                                  "ctin": "29ABCFS2123A1ZO",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5184
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "Suresh Marketing",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 80000,
                                  "ctin": "29ABCPC5123H1Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 14400
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "MEENA SALES",
                                  "supprd": "022024",
                                  "supfildt": "24-03-2024",
                                  "txval": 31500,
                                  "ctin": "29ABCPM1123J1Z6",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 5670
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "INTERGLOBE  AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 47512,
                                  "ctin": "30ABCCI2123B1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2463
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ALLIANCE AIR AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3100,
                                  "ctin": "32ABCCA1123B1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 155
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 7989,
                                  "ctin": "32ABCCI2123B1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 400
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "LULU INTERNATIONAL SHOPPING MALLS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 540000,
                                  "ctin": "32ABCCL0123H1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 97200
                                },
                                {
                                  "sgst": 281.58,
                                  "ttldocs": 1,
                                  "trdnm": "HOTEL HORIZON",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4693,
                                  "ctin": "32ABCCP0123D2ZC",
                                  "cgst": 281.58,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 60000,
                                  "ctin": "32ABCCR1123E1ZY",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 10800
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Orchid suits cochin",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 4878.72,
                                  "ctin": "32ABCFO2123G1ZJ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 585.45
                                },
                                {
                                  "sgst": 106.53,
                                  "ttldocs": 1,
                                  "trdnm": "TREEBO HOTELS",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1775.59,
                                  "ctin": "32ABCCR3123R1Z0",
                                  "cgst": 106.53,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "GREENS INDUSTRIES",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2033.05,
                                  "ctin": "32ABCFG4123J1ZK",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 365.94
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "MARICO LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1303039.44,
                                  "ctin": "33ABCCM7123G1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 234547.1
                                },
                                {
                                  "sgst": 286.15,
                                  "ttldocs": 1,
                                  "trdnm": "PRIDE HOTELS LIMITED",
                                  "supprd": "022024",
                                  "supfildt": "13-03-2024",
                                  "txval": 4769.1,
                                  "ctin": "33ABCCP2123P1Z4",
                                  "cgst": 286.15,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "ALLSEC TECHNOLOGIES LTD",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 15300,
                                  "ctin": "33ABCCA5123G1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2754
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3490,
                                  "ctin": "33ABCCN6123P2ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 175
                                },
                                {
                                  "sgst": 235.47,
                                  "ttldocs": 1,
                                  "trdnm": "UPAR HOSPITALITY PRIVATE LIMITED",
                                  "supprd": "022024",
                                  "supfildt": "19-03-2024",
                                  "txval": 3924.46,
                                  "ctin": "33ABCCU6123F1ZT",
                                  "cgst": 235.47,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "TATA SIA Airlines Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3540,
                                  "ctin": "33ABCCT8123F1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 177
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "3 POINT HUMAN CAPITAL PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 12235203,
                                  "ctin": "33ABCCT6123J1ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2202336.54
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "PAULSONS BEAUTY AND FASHION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 72862,
                                  "ctin": "33ABCCP0123Q1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 13115.16
                                },
                                {
                                  "sgst": 480,
                                  "ttldocs": 1,
                                  "trdnm": "GREENS GATE",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 8000,
                                  "ctin": "33ABCFG3123R1ZP",
                                  "cgst": 480,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "PAPER MAX",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 11400,
                                  "ctin": "33ABCPH2123N1ZA",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2052
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "SUPER MARKETING",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 17000,
                                  "ctin": "33ABCPV2123K1ZS",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3060
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 4,
                                  "trdnm": "RICH VENTURES",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 218712,
                                  "ctin": "33ABCPB4123F1Z5",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 39368.16
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "INTER GLOBE AVIATION LIMITED INDIGO",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 6122,
                                  "ctin": "36ABCCI2123B1Z3",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 361
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "Google India Digital Services Private Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 304016.98,
                                  "ctin": "36ABCCG6123L1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 54723.06
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 38499,
                                  "ctin": "36ABCCR1123J1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6929.82
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 1,
                                  "trdnm": "MAPLEMONK PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 25000,
                                  "ctin": "36ABCCM2123D1ZJ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 4500
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "DEV DISTRIBUTIONS LLP",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 20000,
                                  "ctin": "36ABCFD0123D1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 3600
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 3,
                                  "trdnm": "PREETIS HOUSE OF PACKAGING",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 297935,
                                  "ctin": "36ABCPS0123D1ZU",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 53628.3
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 14876,
                                  "ctin": "37ABCCI2123B1Z1",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 743
                                },
                                {
                                  "sgst": 0,
                                  "ttldocs": 2,
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 58193.05,
                                  "ctin": "37ABCCR1123J1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 10474.77
                                },
                                {
                                  "sgst": 375,
                                  "ttldocs": 1,
                                  "trdnm": "HOTEL KALINGA ENTERPRISES",
                                  "supprd": "032024",
                                  "supfildt": "08-04-2024",
                                  "txval": 6250,
                                  "ctin": "37ABCFH6123A1ZL",
                                  "cgst": 375,
                                  "cess": 0,
                                  "igst": 0
                                }
                              ],
                              "cdnr": [
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 2,
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2460,
                                  "ctin": "07ABCCT8123F1Z6",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 123
                                },
                                {
                                  "sgst": 14,
                                  "nttyp": "D",
                                  "ttldocs": 1,
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 560,
                                  "ctin": "24ABCCT8123F6Z5",
                                  "cgst": 14,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 621.45,
                                  "nttyp": "D",
                                  "ttldocs": 7,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 24858,
                                  "ctin": "24ABCCS9123P1ZI",
                                  "cgst": 621.45,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 1,
                                  "trdnm": "MARICO LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 0.01,
                                  "ctin": "27ABCCM7123G1Z7",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2901.6
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 1,
                                  "trdnm": "FUTURE GENERALI INDIA INSURANCE COMPANY LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4956.63,
                                  "ctin": "27ABCCF0123R2Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 892.19
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 12,
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 387,
                                  "ctin": "27ABCCR1123E1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 69.66
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 1,
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1160,
                                  "ctin": "27ABCCT8123F1Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 58
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 1,
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 169.85,
                                  "ctin": "29ABCCF0123K1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 30.57
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 2,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 7845,
                                  "ctin": "29ABCCS9123P1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 392.25
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 1,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 188,
                                  "ctin": "30ABCCS9123P1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 9.4
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "D",
                                  "ttldocs": 1,
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2708.57,
                                  "ctin": "33ABCCN6123P2ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 135.43
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "INTERGLOBAL AVATION LTD.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 8163,
                                  "ctin": "03ABCCI2123B1ZC",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 496
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "PB 10 TRADERS",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 16015.25,
                                  "ctin": "03ABCPP9123A1Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2882.75
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 3,
                                  "trdnm": "MAKE MY TRIP (INDIA) PVT. LTD.",
                                  "supprd": "022024",
                                  "supfildt": "16-03-2024",
                                  "txval": 41.53,
                                  "ctin": "06ABCCM5123R1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 7.47
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 5,
                                  "trdnm": "THE PACK PARTNERS",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 763764.4,
                                  "ctin": "06ABCFT9123N1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 137477.59
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 3,
                                  "trdnm": "R I AYURVEDA RESEARCH LABS (A UNIT OF RAM LAL INDER LAL PVT. LTD.)",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 36905.73,
                                  "ctin": "07ABCCR7123G1ZL",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6643.03
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 9,
                                  "trdnm": "Interglobe Aviation Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 33711,
                                  "ctin": "07ABCCI2123B1Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1815
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 4,
                                  "trdnm": "VELVET GROOMING PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 869383.14,
                                  "ctin": "07ABCCV5123Q1ZK",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 154007.69
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "R K TRADERS",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 37000,
                                  "ctin": "07ABCPV3123Q1ZT",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 6660
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "Rahul Chaudhry & Partners",
                                  "supprd": "102023",
                                  "supfildt": "12-03-2024",
                                  "txval": 46500,
                                  "ctin": "07ABCPC9123L1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "SPICEJET LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3720,
                                  "ctin": "08ABCCR1123F1ZG",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 186
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "M/S  INTERGLOBE AVIATION LIMTED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 4240,
                                  "ctin": "09ABCCI2123B1Z0",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 212
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "INTER GLOBE AVIATION LTD.",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 424,
                                  "ctin": "19ABCCI2123B1ZZ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 76
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "SIDDHI VINAYAK",
                                  "supprd": "032024",
                                  "supfildt": "13-04-2024",
                                  "txval": 15000,
                                  "ctin": "19ABCFS8123G1ZN",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 2700
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 10178,
                                  "ctin": "20ABCCI2123B1ZG",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 509
                                },
                                {
                                  "sgst": 39.89,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "BLUE DART EXPRESS LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 443.22,
                                  "ctin": "24ABCCB0123L1ZY",
                                  "cgst": 39.89,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 2565.5,
                                  "nttyp": "C",
                                  "ttldocs": 17,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 98609,
                                  "ctin": "24ABCCI2123B1Z8",
                                  "cgst": 2565.5,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 108.45,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1205,
                                  "ctin": "24ABCCL5123N1ZE",
                                  "cgst": 108.45,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 11246.54,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "TATA AIG GENERAL INSURANCE COMPANY LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 124961.57,
                                  "ctin": "24ABCCT3123Q1Z2",
                                  "cgst": 11246.54,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1348.05,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "HCP WELLNESS PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 14978.32,
                                  "ctin": "24ABCCH7123H1ZK",
                                  "cgst": 1348.05,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 1066.94,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 11855.84,
                                  "ctin": "24ABCCA3123J1ZO",
                                  "cgst": 1066.94,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 504,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "K MANOHAR THE BAG MART",
                                  "supprd": "032024",
                                  "supfildt": "09-04-2024",
                                  "txval": 5600,
                                  "ctin": "24ABCPL9123J1ZB",
                                  "cgst": 504,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 560.48,
                                  "nttyp": "C",
                                  "ttldocs": 4,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 22419,
                                  "ctin": "24ABCCS9123P1ZI",
                                  "cgst": 560.48,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 4797,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "PERFECT PACKAGING",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 53300,
                                  "ctin": "24ABCPD7123G1Z3",
                                  "cgst": 4797,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 2883.05,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "MG VIP LOUNGE",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 32033.88,
                                  "ctin": "24ABCPS2123A2Z8",
                                  "cgst": 2883.05,
                                  "cess": 0,
                                  "igst": 0
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "RADCOM PACKAGING PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 123269,
                                  "ctin": "26ABCCR9123B1ZM",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 22188.42
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 8,
                                  "trdnm": "MARICO LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 1230025.51,
                                  "ctin": "27ABCCM7123G1Z7",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 221404.59
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "FUTURE GENERALI INDIA INSURANCE COMPANY LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 869.28,
                                  "ctin": "27ABCCF0123R2Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 156.47
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 3,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 9380,
                                  "ctin": "27ABCCI2123B1Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 469
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 30,
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 8833.65,
                                  "ctin": "27ABCCR1123E1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1590.04
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "HRITHIK ROSHAN",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3300000,
                                  "ctin": "27ABCPN2123F1ZQ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 594000
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 2560,
                                  "ctin": "27ABCCT8123F1Z4",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 128
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "KHAITAN AND CO",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 400000,
                                  "ctin": "27ABCFK0123D1ZJ",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 72000
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "HOOLI BRANDS MULTI TRADING PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "06-04-2024",
                                  "txval": 76763,
                                  "ctin": "27ABCCH5123M1Z9",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 13817.34
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "ITHINK LOGISTIC QUICK SERVICES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 92170.34,
                                  "ctin": "27ABCCI1123J1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 16590.66
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 11,
                                  "trdnm": "KK COSMETICS MALL LLP",
                                  "supprd": "032024",
                                  "supfildt": "12-04-2024",
                                  "txval": 55000,
                                  "ctin": "27ABCFK8123P1Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 9900
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "CRESCENT INC",
                                  "supprd": "022024",
                                  "supfildt": "18-03-2024",
                                  "txval": 237.29,
                                  "ctin": "27ABCPL8123L2Z0",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 42.71
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 3,
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "10-04-2024",
                                  "txval": 598812.08,
                                  "ctin": "29ABCCF0123K1ZD",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 107786.17
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 3,
                                  "trdnm": "DREAMPLUG TECHNOLOGIES PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 897819.49,
                                  "ctin": "29ABCCD6123Q1ZS",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 161607.51
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 101592.92,
                                  "ctin": "29ABCCA3123J1ZE",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 18286.44
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 5131,
                                  "ctin": "29ABCCS9123P1Z8",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 256.55
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "INTERGLOBE  AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 33915,
                                  "ctin": "30ABCCI2123B1ZF",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1785
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 11804,
                                  "ctin": "30ABCCS9123P1ZP",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 590.2
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 5694,
                                  "ctin": "32ABCCI2123B1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 285
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3014,
                                  "ctin": "33ABCCN6123P2ZV",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 9
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "TATA SIA Airlines Limited",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 3540,
                                  "ctin": "33ABCCT8123F1ZB",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 177
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "INTER GLOBE AVIATION LIMITED INDIGO",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 5647,
                                  "ctin": "36ABCCI2123B1Z3",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 337
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 2,
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 9943.5,
                                  "ctin": "36ABCCR0123M3Z2",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 1789.83
                                },
                                {
                                  "sgst": 0,
                                  "nttyp": "C",
                                  "ttldocs": 1,
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supprd": "032024",
                                  "supfildt": "11-04-2024",
                                  "txval": 13448,
                                  "ctin": "37ABCCI2123B1Z1",
                                  "cgst": 0,
                                  "cess": 0,
                                  "igst": 672
                                }
                              ]
                            }
                          },
                          "chksum": "52970907a4edc78a81e178a07d7f5ecde54cea88e6fb9c0ee85896c5474d1ef2"
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  },
                  "200 Success page number 1 (before Oct 2024) 2": {
                    "summary": "200 Success page number 1 (before Oct 2024) 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "data": {
                            "rtnprd": "032024",
                            "docdata": {
                              "b2b": [
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 43463,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/009",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 36832.83,
                                          "cess": 0,
                                          "igst": 6629.91
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 5667,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/010",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 4802.88,
                                          "cess": 0,
                                          "igst": 864.52
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 19590,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/011",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 16601.68,
                                          "cess": 0,
                                          "igst": 2988.3
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 82287,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/012",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 501,
                                          "txval": 980,
                                          "cess": 0,
                                          "igst": 49
                                        },
                                        {
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 122,
                                          "cess": 0,
                                          "igst": 14.64
                                        },
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 68747.05,
                                          "cess": 0,
                                          "igst": 12374.47
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 31321,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRHR123/23-24/013",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 26543.1,
                                          "cess": 0,
                                          "igst": 4777.76
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Beardo",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCZ0123M1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 72452,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-LC123-ZED-003",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 61400,
                                          "igst": 11052
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "LIFESTYLE CARE",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCFL0123H1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-02-2024",
                                      "val": 3851,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HFXV123/01158/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 293.67,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 3263,
                                          "cgst": 293.67,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-02-2024",
                                      "val": 2035,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HFXV123/01166/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 155.25,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 1725,
                                          "cgst": 155.25,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-02-2024",
                                      "val": 13810,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HVAC123/01260/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1053.36,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 11704,
                                          "cgst": 1053.36,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-02-2024",
                                      "val": 3406,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HVAC123/01267/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 259.74,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 2886,
                                          "cgst": 259.74,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SHREE EMPIRE STATE SHOP OFFICES & PREMISES CO OP  HSG SOC LIMITED",
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "ctin": "24ABCLS0123E1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 70800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-321G1100005243123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 60000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 10800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "32ABCCR0123E1ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "11-03-2024",
                                      "val": 5349,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN123-475",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4533.05,
                                          "cess": 0,
                                          "igst": 815.95
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "NAKSH ENTERPRISES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCPA0123P1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "16-03-2024",
                                      "val": 167436,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-565123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 141895,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 25541.1
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-03-2024",
                                      "val": 30727,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-568123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 26040,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4687.2
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 153400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-583123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 130000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 23400
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "PREETIS HOUSE OF PACKAGING",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "36ABCPS0123D1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-02-2024",
                                      "val": 80780,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/A-08",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 68458,
                                          "igst": 12322.44
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/s HEALTIFYING INDIA",
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "ctin": "09ABCFH0123R1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 5290.35,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-071L9B97Q0324001123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4727,
                                          "cess": 0,
                                          "igst": 236.35
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCCS0123P1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 21252.74,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3775a1a9dfde27b527a5fdbce41b1cdb056d2cbb69ba6c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "17-03-2024",
                                      "inum": "INV-2023123-24/10967",
                                      "rsn": "",
                                      "dt": "06-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1620.97,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 18010.8,
                                          "cgst": 1620.97,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "OZONETEL COMMUNICATIONS PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCO0123E1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 85977,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a146c993138b99010f68d46cad74b80ff56adc72c84e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "26-03-2024",
                                      "inum": "INV-PS202403123-407",
                                      "rsn": "",
                                      "dt": "26-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 72862,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 13115.16
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "PAULSONS BEAUTY AND FASHION PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCCP0123Q1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-02-2024",
                                      "val": 12744,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00019",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 972,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10800,
                                          "cgst": 972,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-02-2024",
                                      "val": 177,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00224",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 13.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 150,
                                          "cgst": 13.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-02-2024",
                                      "val": 1593,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00314",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 121.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1350,
                                          "cgst": 121.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-02-2024",
                                      "val": 177,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00315",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 13.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 150,
                                          "cgst": 13.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-02-2024",
                                      "val": 177,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00316",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 13.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 150,
                                          "cgst": 13.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-02-2024",
                                      "val": 177,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00317",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 13.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 150,
                                          "cgst": 13.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-02-2024",
                                      "val": 177,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00319",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 13.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 150,
                                          "cgst": 13.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-02-2024",
                                      "val": 2478,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00320",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 189,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2100,
                                          "cgst": 189,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-02-2024",
                                      "val": 354,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2324123-02-00434",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 27,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 300,
                                          "cgst": 27,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BEST VOYAGE DOMESTIC LLP",
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "ctin": "24ABCFB0123A1ZW"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "22-03-2024",
                                      "val": 123900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-25123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 9450,
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 105000,
                                          "cgst": 9450
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "PRIME PACKMART",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPV0123J1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 71066,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-72123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5420.25,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 60225,
                                          "cgst": 5420.25,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 5452,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-73123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 415.8,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4620,
                                          "cgst": 415.8,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SONEE CREATION",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPC0123E1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 330070,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3737da06273090633364fa6e03b151f839aff7ef273b60123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "06-03-2024",
                                      "inum": "INV-CM123/23-24/03/027",
                                      "rsn": "",
                                      "dt": "05-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 279720,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 50349.6
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "CITIUS BPO (INDIA) PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCC0123L1ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 9463,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-PB1232403AP03418123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 9013,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 450
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBAL AVATION LTD.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "03ABCCI0123B1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 4250,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-332412BP03AAB985123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3490,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 175
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCCN0123P2ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 3717,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-I330000001973197123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3540,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 177
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TATA SIA Airlines Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCCT0123F1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 470169,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RIPL2023123-24/0949",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 398448,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 71720.64
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-03-2024",
                                      "val": 195640,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RIPL2023123-24/0976",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 165796.5,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 29843.37
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "R I AYURVEDA RESEARCH LABS (A UNIT OF RAM LAL INDER LAL PVT. LTD.)",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCCR0123G1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-02-2024",
                                      "val": 5341.39,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "33",
                                      "typ": "R",
                                      "inum": "INV-24123/C016470",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 286.15,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 4769.1,
                                          "cgst": 286.15,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "PRIDE HOTELS LIMITED",
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "ctin": "33ABCCP0123P1Z4"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 32861,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/1563/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2506.32,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 27848,
                                          "cgst": 2506.32,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 141128,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/1625/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 10764,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 119600,
                                          "cgst": 10764,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "JAIN SOAP",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFJ0123A1ZG"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "20-03-2024",
                                      "val": 467429,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2300074822496123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 396126,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 71302.68
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "WELLNESS FOREVER MEDICARE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCW0123P1ZH"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "03-03-2024",
                                      "val": 18290,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-6900123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1395,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15500,
                                          "cgst": 1395,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 5369,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-6993123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 409.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4550,
                                          "cgst": 409.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 21476,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-6994123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1638,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 18200,
                                          "cgst": 1638,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-03-2024",
                                      "val": 24308,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7030123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1854,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20600,
                                          "cgst": 1854,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 10738,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7092123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 819,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9100,
                                          "cgst": 819,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 20178,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7093123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1539,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 17100,
                                          "cgst": 1539,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 10768,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7108123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 821.25,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9125,
                                          "cgst": 821.25,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-03-2024",
                                      "val": 84459,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7207123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 6441.75,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 71575,
                                          "cgst": 6441.75,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-03-2024",
                                      "val": 40887,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7208123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3118.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 34650,
                                          "cgst": 3118.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 16815,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7517123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1282.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 14250,
                                          "cgst": 1282.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 71036,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7518123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5418,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 60200,
                                          "cgst": 5418,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "UNICK FIX A FORM AND PRINTERS LIMITED",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCU0123H1ZQ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "28-03-2024",
                                      "val": 35412.24,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ICW123/23-24/1893",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 30010.37,
                                          "cess": 0,
                                          "igst": 5401.87
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ICUBESWIRE TECHNOLOGIES PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCI0123H1Z2"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 231525,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-597123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 220500,
                                          "cess": 0,
                                          "igst": 11025
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MADAAN ENTERPRISES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "03ABCPM0123A1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 331,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-D123-189",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 280.26,
                                          "cess": 0,
                                          "igst": 50.45
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "T.K. ENTERPRISES",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPS0123L1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "08-03-2024",
                                      "val": 1714,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "18",
                                      "typ": "R",
                                      "inum": "INV-AR123/23-24/2545",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 91.8,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 1530,
                                          "cgst": 91.8,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 1713,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "18",
                                      "typ": "R",
                                      "inum": "INV-AR123/23-24/2552",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 91.77,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 1529.46,
                                          "cgst": 91.77,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-03-2024",
                                      "val": 1713,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "18",
                                      "typ": "R",
                                      "inum": "INV-AR123/23-24/2561",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 91.77,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 1529.52,
                                          "cgst": 91.77,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 1713,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "18",
                                      "typ": "R",
                                      "inum": "INV-AR123/23-24/2565",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 91.77,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 1529.46,
                                          "cgst": 91.77,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ADITYA RESIDENCY",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "18ABCHS0123P1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c69251aefa73a1b7ef9d06c0cd4916a9a07d1ea4da4f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "30-03-2024",
                                      "inum": "INV-BB123/2851/23-24",
                                      "rsn": "",
                                      "dt": "30-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BEAUTY BAZAAR",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPK0123B1ZW"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 70718,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ORION2324123/03267",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1683.75,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 67350,
                                          "cgst": 1683.75,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 28875,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ORION2324123/03312",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 687.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 27500,
                                          "cgst": 687.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ORION INC.",
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPB0123D1ZX"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 18054,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376b6ac71b092b56df89e7cc0744496d723768371b93e3123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "20-03-2024",
                                      "inum": "INV-SI23TN0018501636123",
                                      "rsn": "",
                                      "dt": "20-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15300,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2754
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ALLSEC TECHNOLOGIES LTD",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCCA0123G1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 10698,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37f5247358cab91a1d991d1c7c287dada2dd1dea50ceab123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "19-03-2024",
                                      "inum": "INV-SYS123/23-24/3316",
                                      "rsn": "",
                                      "dt": "19-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9066,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1631.88
                                        }
                                      ]
                                    },
                                    {
                                      "val": 70814,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b52430903342b56bf449e97654bf18ac1fb65c91a0a7123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "28-03-2024",
                                      "inum": "INV-SYS123/23-24/3397",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 60012,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 10802.16
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SYSCOM PACKAGING COMPANY",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCFS0123N1ZX"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 38940,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37f41110eddba21287f5083b468f6c6ce216f2397af647123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-TI123-5320/23-24",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 2970,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 33000,
                                          "cgst": 2970,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AMBA MULTIPRINT",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFA0123E1ZR"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-09-2023",
                                      "val": 5900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-996123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 5000,
                                          "igst": 900
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Khandelwal Agency",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "23ABCPK0123P1Z1"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 40581,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-555123/2023/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3095.19,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 34391,
                                          "cgst": 3095.19,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MARUTI CORPORATION",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPP0123G1ZI"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 965.18,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20230600016475123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 817.95,
                                          "cess": 0,
                                          "igst": 147.23
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCR0123J1ZI"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 9440,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-PAP123/2023-24/419",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 720,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 8000,
                                          "cgst": 720,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 50150,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-PAP123/2023-24/437",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3825,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 42500,
                                          "cgst": 3825,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 29500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-PAP123/2023-24/441",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2250,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 25000,
                                          "cgst": 2250,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "P A PAREKH AND CO",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFP0123D2ZG"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 620,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37269cf8727841b8d2b45fa0baed83d3e91d081ab606d5123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-240303001201123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 525,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 94.5
                                        }
                                      ]
                                    },
                                    {
                                      "val": 620,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b38bb837d745033a59275355ab7685f5410ff8584b50123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-240303001205123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 525,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 94.5
                                        }
                                      ]
                                    },
                                    {
                                      "val": 26699,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377dd1f89d8116b80ae198dbdeb1381ef56ce903ab817a123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "16-03-2024",
                                      "inum": "INV-243103011077123",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 22626.46,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4072.76
                                        }
                                      ]
                                    },
                                    {
                                      "val": 56873,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37238be2889b92e0acdeae794a3a2d9bf8046e1c3db907123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-243103020203123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 48197.11,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 8675.48
                                        }
                                      ]
                                    },
                                    {
                                      "val": 5730,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37193bbf5f558354000994ecef555405c2c267174c7a43123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-243103022676123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4856.25,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 874.13
                                        }
                                      ]
                                    },
                                    {
                                      "val": 3052,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374579e4ed00d945ad35066641d4da8b8a6e5251d1ae23123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-243103022677123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2586.15,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 465.51
                                        }
                                      ]
                                    },
                                    {
                                      "val": 22282,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376cf11ff1873b278a64238070ee5461594d2f7d1ea745123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-243103022678123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 18882.68,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3398.88
                                        }
                                      ]
                                    },
                                    {
                                      "val": 27786,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3732f9667aa8f484084f117a9c80625a8ca8ab75935b3b123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-243103022679123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 23547.3,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4238.51
                                        }
                                      ]
                                    },
                                    {
                                      "val": 4866,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd379f5da7abe95c8523151b2d86d80b1818cee6419cefd7123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-243103022681123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4123.88,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 742.3
                                        }
                                      ]
                                    },
                                    {
                                      "val": 470687,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3771bb5e6c658ba7ba95f4a3ccfa875990842286722292123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-243103022742123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 398887.68,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 71799.78
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SAFEXPRESS PRIVATE LTD.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCS0123H1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "03-03-2024",
                                      "val": 9975,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-I030000001994174123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 9500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 475
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "03ABCCT0123F5ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 7080,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123-1893",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 6000,
                                          "cess": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Satvik Enterprises",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "01ABCPN0123Q1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "16-03-2024",
                                      "val": 8260,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-292123/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 7000,
                                          "cess": 0,
                                          "igst": 1260
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-293123/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 10000,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SUPER MARKETING",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCPV0123K1ZS"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 10028.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20233600009973123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 8499,
                                          "cess": 0,
                                          "igst": 1529.82
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 35400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20233600010000123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 30000,
                                          "cess": 0,
                                          "igst": 5400
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "36ABCCR0123J1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-01-2024",
                                      "val": 60,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-VP123-IND-1005367",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 50.85,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 9.15
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "VOLOPAY INDIA PRIVATE LIMITED",
                                  "supfildt": "26-03-2024",
                                  "supprd": "012024",
                                  "ctin": "29ABCCV0123N1ZW"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 16747.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20233700009103123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 14193.05,
                                          "cess": 0,
                                          "igst": 2554.77
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 51920,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20233700009129123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 44000,
                                          "cess": 0,
                                          "igst": 7920
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "37ABCCR0123J1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 5361,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376cccaf2f163fa2f4e6e8970b6060d37637e79db05448123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-VL123/MAR071/23-24",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4543,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 817.74
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "VALUELEAF SERVICES INDIA PVT LTD",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCV0123F1ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 269910,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BO123-HR/23-24/1748",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 228737.25,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 41172.71
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BO INTERNATIONAL",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCPG0123E2ZS"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 1018930,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd370c6cbcf9aa43a253a8cd20e18e4869eff55fe7e8ac41123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-AIPL123/23-24/1405",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 863500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 155430
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AMITOJE INDIA PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCCA0123Q1ZM"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 7000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd370fc514951ce8845083357db3d4a575910e81c61d3c13123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-CPA123-196611",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 375,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 6250,
                                          "cgst": 375,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fa6c63d871929682c0a438f6ab49b4bda6b3a74e9ad0123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-CPA123-196612",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 375,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 6250,
                                          "cgst": 375,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd379b5613642bade9109943229b8176f9073fcb9c969500123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-CPA123-196620",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 375,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 6250,
                                          "cgst": 375,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 411.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e24c24bb3da11dc731725f89cf0b10a410af65d8ed8e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-CPA123-196630",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 31.41,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 349,
                                          "cgst": 31.41,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 6440,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3792e93aed74cdf49e00a63877e1734c8d79d8d1bc529c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-CPA123-196631",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 345,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 5750,
                                          "cgst": 345,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SHIVA SATYA HOTELS PVT.LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCS0123L1ZO"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 2451,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3704e1fff86ca73c66084d5082c668c3de43c2b57e6174123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "22-02-2024",
                                      "inum": "INV-2158123/PROS",
                                      "rsn": "",
                                      "dt": "31-01-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1200,
                                          "cgst": 0,
                                          "igst": 216
                                        }
                                      ]
                                    },
                                    {
                                      "val": 46209,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377ce9112f3d5cc5333848c299cdc6a4e9d08f44a37a47123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "22-02-2024",
                                      "inum": "INV-2227123/LIT",
                                      "rsn": "",
                                      "dt": "31-01-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 38000,
                                          "cgst": 0,
                                          "igst": 6840
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "supfildt": "01-04-2024",
                                  "supprd": "012024",
                                  "ctin": "07ABCCR0123A1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 400000,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377e2bb862394660a43f1832f74b04b934836ca699ba97123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-MUM2324B15436123",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 400000,
                                          "cgst": 0,
                                          "igst": 72000
                                        }
                                      ]
                                    },
                                    {
                                      "val": 350000,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3706fb00faa604935210782a67e42c9e7fa599ee7bdb63123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "02-04-2024",
                                      "inum": "INV-MUM2324B17661123",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 350000,
                                          "cgst": 0,
                                          "igst": 63000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "KHAITAN AND CO",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCFK0123D1ZJ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 40621.5,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/0465",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 34425,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 6196.5
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HIPPO HITECH DIGITAL PRINT SOLUTIONS",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCPK0123J1ZX"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 19883,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1036123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1516.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 16850,
                                          "cgst": 1516.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 19883,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1091123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1516.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 16850,
                                          "cgst": 1516.5,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ADARSH ENTERPRISE",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPS0123G1ZW"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "30-03-2024",
                                      "val": 3810,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-321FQ0324123/AAA255",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 254,
                                          "txval": 3100,
                                          "cgst": 0,
                                          "igst": 155
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ALLIANCE AIR AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "32ABCCA0123B1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-03-2024",
                                      "val": 8268.26,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MJMKAI2400008968123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 7007,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1261.26
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 73387.74,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MJMKAI2400008972123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 62193,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 11194.74
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 72319.84,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MJMKAI2400008984123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 61288,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 11031.84
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 58941,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MJMKAI2400008987123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 49950,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 8991
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 104630.6,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MJMKAI2400008992123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 88670,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 15960.6
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 506.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-VJKAIN24123-029475",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 429.51,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 77.31
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 282.91,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-VJKAIN24123-029655",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 239.75,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 43.16
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MYNTRA JABONG INDIA PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCQ0123A2ZI"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "28-03-2024",
                                      "val": 4261,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRUP123/23-24/031",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 3611,
                                          "cess": 0,
                                          "igst": 649.98
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ZED LIFESTYLE PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCZ0123M1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "22-03-2024",
                                      "val": 160286.48,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HR230211767123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 135836,
                                          "cess": 0,
                                          "igst": 24450.48
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BLINK COMMERCE PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCG0123E1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 148,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPS123/2023-24/1769",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 11.25,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 125,
                                          "cgst": 11.25,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 195,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPS123/2023-24/1783",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 14.85,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 165,
                                          "cgst": 14.85,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "13-03-2024",
                                      "val": 4266,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPS123/2023-24/1811",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 325.35,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3615,
                                          "cgst": 325.35,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-03-2024",
                                      "val": 4508,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPS123/2023-24/1854",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 343.8,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3820,
                                          "cgst": 343.8,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 3247,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPS123/2023-24/1925",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 247.68,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2752,
                                          "cgst": 247.68,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Think Printz Solutions",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPP0123D1Z7"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 2913.01,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37da1b92d894d63c14c85ba62ede0e7113b3ed05ae2e59123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-24123/0008503",
                                      "rsn": "",
                                      "dt": "21-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 156.05,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 2600.91,
                                          "cgst": 156.05,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 866.26,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a8c9a05e8eba02462645101ac38de84d56e63bdc3f33123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "03-04-2024",
                                      "inum": "INV-24123/0008504",
                                      "rsn": "",
                                      "dt": "21-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 20.63,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 825,
                                          "cgst": 20.63,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "LORDS ISHWAR HOTELS LIMITED",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCI0123F1Z2"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-02-2024",
                                      "val": 13774,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HPPTI123/8",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1050.57,
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 11673,
                                          "cgst": 1050.57
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HP E-TECH",
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "ctin": "24ABCFH0123Q1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-LBD0563123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 8260,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-LBD0564123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 7000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1260
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-LBD0585123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 8260,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-LBD0586123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 7000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1260
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S  LAKSHYA AGENCIES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPS0123E1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 2501,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d47ea72721966d5bf0e83c8a85948d10eab41165d37c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "19-02-2024",
                                      "inum": "INV-2023123/PROS",
                                      "rsn": "",
                                      "dt": "22-12-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1200,
                                          "cgst": 0,
                                          "igst": 216
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "supfildt": "29-03-2024",
                                  "supprd": "122023",
                                  "ctin": "07ABCCR0123A1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 33626,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3740b56543f5efa12da750eb7ef277914f48a1c7f6ecd2123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-PP123/23-24/1904",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 28496.21,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 5129.32
                                        }
                                      ]
                                    },
                                    {
                                      "val": 32579,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37897d9d77234e3142845ac028eb3f3939b458ff2041ed123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-PP123/23-24/1920",
                                      "rsn": "",
                                      "dt": "14-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 27609.61,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4969.73
                                        }
                                      ]
                                    },
                                    {
                                      "val": 1361,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a04e27e59e5931b29834f1c9b847d231d491aa6b58f6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-PP123/BK/23-24/0816",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1153.39,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 207.61
                                        }
                                      ]
                                    },
                                    {
                                      "val": 253,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c2d6dc213e0ff9236d308650963dcd49e653039bd6ee123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "06-04-2024",
                                      "inum": "INV-PP123/BK/23-24/0864",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 214.41,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 38.59
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Pouring Pounds India Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCP0123P1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 41761,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRWB123/23-24/014",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 35390.58,
                                          "cess": 0,
                                          "igst": 6370.3
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 1629,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRWB123/23-24/015",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 1380.82,
                                          "cess": 0,
                                          "igst": 248.55
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 16579,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRWB123/23-24/016",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 14049.69,
                                          "cess": 0,
                                          "igst": 2528.94
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 17147,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRWB123/23-24/017",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 14531.23,
                                          "cess": 0,
                                          "igst": 2615.62
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 126596,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRWB123/23-24/018",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 488,
                                          "cess": 0,
                                          "igst": 58.56
                                        },
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 106821.76,
                                          "cess": 0,
                                          "igst": 19227.92
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BEARDO",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCCZ0123M1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 5164.86,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d05fa0bd0b90d0cd3ad3fa1f22582482b491d346d6e6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-DL123/23-24/03/207",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4377,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 787.86
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "DATALOGY DIGITAL PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCD0123G2ZM"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "28-03-2024",
                                      "val": 3543,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-T123/9766",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 162,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 2700,
                                          "cgst": 162,
                                          "cess": 0
                                        },
                                        {
                                          "sgst": 39.6,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 440,
                                          "cgst": 39.6,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SHREE  MAHAVEER  STATIONERY MART",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFS0123M1ZI"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "23-03-2024",
                                      "val": 51920,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-A71G1100005386123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 44000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7920
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Reliance Retail Limited",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCCR0123E1ZR"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 59000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1070626770123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 50000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 9000
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 20926.12,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1070627645123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 17734,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3192.12
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 1180,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1070628980123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 180
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S LULU INDIA SHOPPING MALL PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCL0123N1ZW"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "29-02-2024",
                                      "val": 16520,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SG123-962",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 14000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2520
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "R R Beauty World Thane",
                                  "supfildt": "20-03-2024",
                                  "supprd": "022024",
                                  "ctin": "27ABCPS0123C1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 86042,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/A-09",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 72917,
                                          "igst": 13125.06
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/s HEALTIFYING INDIA",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCFH0123R1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 8690,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH75762123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 207,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8276,
                                          "cgst": 207,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5484,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH76295123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 130.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5223,
                                          "cgst": 130.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6770,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH76412123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 161,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6448,
                                          "cgst": 161,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 499,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH77771123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 12,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 475,
                                          "cgst": 12,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 499,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH78016123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 12,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 475,
                                          "cgst": 12,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 998,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH78411123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 24,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 950,
                                          "cgst": 24,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5917,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH79501123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 140.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5636,
                                          "cgst": 140.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6770,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH80319123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 161,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6448,
                                          "cgst": 161,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH80448123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 71.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2857,
                                          "cgst": 71.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5013,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH81244123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 119,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4775,
                                          "cgst": 119,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH81984123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 71.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2857,
                                          "cgst": 71.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 12134,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH83396123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 289,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 11556,
                                          "cgst": 289,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6131,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH83559123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 136.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5458,
                                          "cgst": 136.5,
                                          "cess": 0,
                                          "igst": 0
                                        },
                                        {
                                          "sgst": 30.5,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 339,
                                          "cgst": 30.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5876,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH83756123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 139.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5597,
                                          "cgst": 139.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 7269,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH84491123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 173,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6923,
                                          "cgst": 173,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 10026,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH85070123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 238,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 9550,
                                          "cgst": 238,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 2750,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH85413123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 65.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2619,
                                          "cgst": 65.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 6770,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH86528123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 161,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6448,
                                          "cgst": 161,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 6770,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH91463123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 161,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6448,
                                          "cgst": 161,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 7251,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BH98658123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 172.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6906,
                                          "cgst": 172.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 150,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BI02125123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 143,
                                          "cgst": 3.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 6709,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BI13093123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 160,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6389,
                                          "cgst": 160,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 4345,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BI16997123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 103.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4138,
                                          "cgst": 103.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-03-2024",
                                      "val": 125,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BI62291123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 119,
                                          "cgst": 3,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "13-03-2024",
                                      "val": 105,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BI95958123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 100,
                                          "cgst": 2.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 245,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BJ05007123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 6,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 233,
                                          "cgst": 6,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 350,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BJ11078123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 8.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 333,
                                          "cgst": 8.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 19618,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BJ24347123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 457.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 18303,
                                          "cgst": 457.5,
                                          "cess": 0,
                                          "igst": 0
                                        },
                                        {
                                          "sgst": 30.5,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 339,
                                          "cgst": 30.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 2597,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ1232403BK43816123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 62,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2473,
                                          "cgst": 62,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCI0123B1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 8389,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KL1232403AX94758123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 7989,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 400
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "32ABCCI0123B1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "23-03-2024",
                                      "val": 12980,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-A61G1100008372123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1980
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RELIANCE RETAIL LTD.",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCR0123E1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "30-03-2024",
                                      "val": 177590,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BE123/4251",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 150500,
                                          "cess": 0,
                                          "igst": 27090
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BHAVYA ENTERPRISES",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "08ABCPD0123M1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 57820,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/698/VG",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 49000,
                                          "cess": 0,
                                          "igst": 8820
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 119735,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/756/VG",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 101470,
                                          "cess": 0,
                                          "igst": 18264.6
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 31860,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/757/VG",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 27000,
                                          "cess": 0,
                                          "igst": 4860
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 76700,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/758/VG",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 65000,
                                          "cess": 0,
                                          "igst": 11700
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "VELVET GROOMING PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCCV0123Q1ZK"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "10-03-2024",
                                      "val": 2684342,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MHIN2023123-31124",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 2274866,
                                          "cess": 0,
                                          "igst": 409475.88
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "KAY KAY OVERSEAS CORPORATION",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCFK0123D1ZJ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "08-03-2024",
                                      "val": 16535,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SO123/CC/23-24/834",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 14013,
                                          "cess": 0,
                                          "igst": 2522.34
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SATI OIL UDYOG LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "18ABCCS0123M1ZQ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 8732,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RAP123-2023-24-3323",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 7400,
                                          "cess": 0,
                                          "igst": 1332
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RAJ AGENCIES",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "03ABCPK0123M1Z5"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-03-2024",
                                      "val": 82600,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24-089",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 70000,
                                          "cess": 0,
                                          "igst": 12600
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Akanksha Mota & Co",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPM0123A1ZX"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "11-03-2024",
                                      "val": 139675,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-12123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 118444.8,
                                          "igst": 21320.06
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 139675,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-14123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 118444.8,
                                          "igst": 21320.06
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "CLARA INTERNATIONAL LLP",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCFC0123B1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "16-03-2024",
                                      "val": 70800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BEARDO123-01",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 60000,
                                          "igst": 10800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S IP CRIME VIGILANCE",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPK0123P2ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 2930.32,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20232400002617123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 223.51,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2483.3,
                                          "cgst": 223.51,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20232400002633123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 900,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 900,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "CESC LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCC0123N1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 94400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37ea9c8c91c4de5ed67fb6bb81a5c45ec26b4552313d24123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "07-03-2024",
                                      "inum": "INV-FDPL123/23-24/3497",
                                      "rsn": "",
                                      "dt": "07-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 80000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 14400
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "FLAMINGO DIGITAL PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCF0123Q1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 2269.08,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0295123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1922.93,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 346.15
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5289.76,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0296123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4482.83,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 806.93
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 2929.64,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0297123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2482.74,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 446.9
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 3485.63,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0298123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2953.9,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 531.73
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 4851.27,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0299123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4111.23,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 740.04
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 3047.86,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0300123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2582.92,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 464.94
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 1968.73,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0301123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1668.41,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 300.32
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-03-2024",
                                      "val": 1484.14,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0302123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1257.74,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 226.4
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 1262.5,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0303123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1069.91,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 192.59
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-03-2024",
                                      "val": 1111.68,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0304123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 942.09,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 169.59
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 1029.65,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0305123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 872.58,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 157.07
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-03-2024",
                                      "val": 1554.8,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0306123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1317.62,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 237.18
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "13-03-2024",
                                      "val": 774.48,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0307123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 656.34,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 118.14
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 1063.83,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0308123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 901.54,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 162.29
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 891.63,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0309123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 755.61,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 136.02
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 786.51,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0310123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 666.52,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 119.99
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-03-2024",
                                      "val": 980.8,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0311123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 831.18,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 149.62
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 103.53,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0312123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 87.74,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 15.79
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-03-2024",
                                      "val": 970.83,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0313123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 822.72,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 148.11
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-03-2024",
                                      "val": 682.99,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0314123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 578.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 104.19
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 453.93,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0315123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 384.68,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 69.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 980.37,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0316123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 830.82,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 149.55
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 625.23,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0317123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 529.86,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 95.37
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "24-03-2024",
                                      "val": 1463.77,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0318123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1240.47,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 223.3
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "25-03-2024",
                                      "val": 559.69,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0319123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 474.3,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 85.39
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 878.09,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0320123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 744.14,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 133.95
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 394.2,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0321123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 334.06,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 60.14
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 978.56,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0322123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 829.28,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 149.28
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 766.78,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0323123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 649.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 116.98
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 809.84,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RR27H76L5SD0324123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 686.3,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 123.54
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCR0123E1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 7670,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-YE123/194/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 6500,
                                          "cess": 0,
                                          "igst": 1170
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "YASHI ENTERPRISE",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCPC0123F1ZO"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 59000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1039068567123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 50000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 9000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "LULU INTERNATIONAL SHOPPING MALLS PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCL0123H1ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 3910606.7,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37971edbea4eb231fcf84a2983865d6962139b0459bd2d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "02-03-2024",
                                      "inum": "INV-2380408333123",
                                      "rsn": "",
                                      "dt": "02-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3314073.48,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 596533.22
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "FACEBOOK INDIA ONLINE SERVICES PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCF0123G1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 101386,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV123-004444",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 85920,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 15465.6
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "GOEXCELSIOR PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCCG0123C1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "15-03-2024",
                                      "val": 467,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "20",
                                      "typ": "R",
                                      "inum": "INV-MADHJH123/23/7124",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 35.55,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 395,
                                          "cgst": 35.55,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 2913,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "20",
                                      "typ": "R",
                                      "inum": "INV-MADHJH123/23/7125",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 152.2,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 2536.7,
                                          "cgst": 152.2,
                                          "cess": 0
                                        },
                                        {
                                          "sgst": 5.46,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 60.62,
                                          "cgst": 5.46,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SURAMA HOSPITALITY",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "20ABCFS0123H1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "15-01-2024",
                                      "val": 8850,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV2023123-24/0716",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 7500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1350
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "A A Garg & co",
                                  "supfildt": "19-03-2024",
                                  "supprd": "012024",
                                  "ctin": "27ABCPG0123Q1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 3522.3,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd372ac7b956d018c6a1b499d852ffd10a21a160b3c5a7d9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "02-03-2024",
                                      "inum": "INV-C24E232400246362123",
                                      "rsn": "",
                                      "dt": "02-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 268.65,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2985,
                                          "cgst": 268.65,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 1652.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d727ba75a577d569a85eaec26c41165059a3642a5655123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "02-03-2024",
                                      "inum": "INV-C24E232400249638123",
                                      "rsn": "",
                                      "dt": "02-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 126.06,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1400.7,
                                          "cgst": 126.06,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Reliance Jio Infocomm  Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCI0123G1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 16161,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0313123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1232.6,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 13695.6,
                                          "cgst": 1232.6,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 13397,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0314123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1021.79,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11353.2,
                                          "cgst": 1021.79,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 92394,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0315123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 7047,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 78300,
                                          "cgst": 7047,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 1824,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0316123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 139.1,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1545.6,
                                          "cgst": 139.1,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 3823,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0317123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 291.6,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3240,
                                          "cgst": 291.6,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 39825,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0318123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3037.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 33750,
                                          "cgst": 3037.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 42338.4,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0319123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3229.2,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 35880,
                                          "cgst": 3229.2,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 2513,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0320123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 191.7,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2130,
                                          "cgst": 191.7,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 40710,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0321123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3105,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 34500,
                                          "cgst": 3105,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 30090,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0323123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2295,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25500,
                                          "cgst": 2295,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 129819,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0325123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 9901.44,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 110016,
                                          "cgst": 9901.44,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 13560,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0327123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1034.21,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11491.2,
                                          "cgst": 1034.21,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 9893,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0330123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 754.52,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 8383.5,
                                          "cgst": 754.52,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 33694,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0331123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2569.91,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 28554.5,
                                          "cgst": 2569.91,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 120065,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0333123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 9157.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 101750,
                                          "cgst": 9157.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 7012,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0334123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 534.8,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5942.2,
                                          "cgst": 534.8,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "CALISTTA HEALTHCARE",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFC0123D1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 98666,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37300d1b8cf6e61463444445da11b0b157ab860dcaea04123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "27-03-2024",
                                      "inum": "INV-GST123-2324-1341",
                                      "rsn": "",
                                      "dt": "27-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 7517.81,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 83531.25,
                                          "cgst": 7517.81,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "VIVA PACK PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCS0123B1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 21020,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ021NCTG001552123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 503.74,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5597.09,
                                          "cgst": 503.74,
                                          "cess": 0
                                        },
                                        {
                                          "sgst": 1576.64,
                                          "rt": 28,
                                          "num": 2,
                                          "txval": 11261.7,
                                          "cgst": 1576.64,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 9739,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJ021NCTS001552123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 742.77,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 8253,
                                          "cgst": 742.77,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TORQUE COMMERCIAL VEHICLES PRIVATE LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCT0123C1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 375188,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/199",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 317956,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 57232.08
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RIGHT WRITING ENTERPRISES / HEET EXPORTS",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPS0123F1Z5"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 581253,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RPPL123/1103/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 492587.2,
                                          "cess": 0,
                                          "igst": 88665.7
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 288949,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RPPL123/1105/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 244872.2,
                                          "cess": 0,
                                          "igst": 44077
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 190281,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RPPL123/1106/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 161255.25,
                                          "cess": 0,
                                          "igst": 29025.95
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 122327,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RPPL123/1123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 103667.2,
                                          "cess": 0,
                                          "igst": 18660.1
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-03-2024",
                                      "val": 191050,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RPPL123/1141/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 161907.2,
                                          "cess": 0,
                                          "igst": 29143.3
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 170608,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RPPL123/1161/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 144583.2,
                                          "cess": 0,
                                          "igst": 26024.98
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Ryder Propack Private limited",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCR0123N1ZK"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 50381,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3721a9c696973b2f52f24b0dc7c6e8ffb7bb83e2e09e88123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "26-03-2024",
                                      "inum": "INV-2385123/23-24",
                                      "rsn": "",
                                      "dt": "26-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 3842.64,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 42696,
                                          "cgst": 3842.64,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "LETRA GRAPHIX PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCL0123Q1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 354000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-240318AL3P290429123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 300000,
                                          "cess": 0,
                                          "igst": 54000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Swiggy",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCB0123D1ZQ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-03-2024",
                                      "val": 162557,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DAD123-6105",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 137760.48,
                                          "cess": 0,
                                          "igst": 24796.89
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 247047,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DAD123-6106",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 209361.6,
                                          "cess": 0,
                                          "igst": 37685.09
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 251996,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DAD123-6438",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 213556,
                                          "cess": 0,
                                          "igst": 38440.08
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RADCOM PACKAGING PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "26ABCCR0123B1ZM"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 76088,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3700746624aa0ca9c62bef93b678980b86fcdfeec6d133123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "02-04-2024",
                                      "inum": "INV-DD0270003205123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 64481.36,
                                          "cgst": 0,
                                          "igst": 11606.64
                                        }
                                      ]
                                    },
                                    {
                                      "val": 378,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3791442502e9c9112c8932a613cfdc7c44da45b36ae9de123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003211123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 320.34,
                                          "cgst": 0,
                                          "igst": 57.66
                                        }
                                      ]
                                    },
                                    {
                                      "val": 13487,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a33317f56607b1dd96af2ef013c3a31b8d17bddd6fc4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003212123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11429.66,
                                          "cgst": 0,
                                          "igst": 2057.34
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7654,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37208a59e58a3c3860b4a59ec9cd9f0900a1571049d469123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003215123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6486.44,
                                          "cgst": 0,
                                          "igst": 1167.56
                                        }
                                      ]
                                    },
                                    {
                                      "val": 1984,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37abc196a37d456f8a12f6e400e24378dd12404e354147123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003216123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1681.36,
                                          "cgst": 0,
                                          "igst": 302.64
                                        }
                                      ]
                                    },
                                    {
                                      "val": 359,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3777d8899536aeffc5ac6fc2add0d54e6446c9434d8cce123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003217123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 304.24,
                                          "cgst": 0,
                                          "igst": 54.76
                                        }
                                      ]
                                    },
                                    {
                                      "val": 12612,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378cf76a82b85afe02db52878d057f08f288c85eb8e1d6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003218123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10688.13,
                                          "cgst": 0,
                                          "igst": 1923.87
                                        }
                                      ]
                                    },
                                    {
                                      "val": 157221,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd370e9b5068bd423df9e7eb206e118fe6f1166b587027a7123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003219123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 133238.13,
                                          "cgst": 0,
                                          "igst": 23982.87
                                        }
                                      ]
                                    },
                                    {
                                      "val": 24393,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377800b18df5ec0478c9beaf91617994ed0039f2898cec123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003220123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20672.03,
                                          "cgst": 0,
                                          "igst": 3720.97
                                        }
                                      ]
                                    },
                                    {
                                      "val": 1896,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a4eeecc44b76805b7615b15367904fef507e26d8a9be123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003221123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1606.78,
                                          "cgst": 0,
                                          "igst": 289.22
                                        }
                                      ]
                                    },
                                    {
                                      "val": 2481,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e82db382c8760e86623616fb04c178e1003eece1acee123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003222123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2102.54,
                                          "cgst": 0,
                                          "igst": 378.46
                                        }
                                      ]
                                    },
                                    {
                                      "val": 826,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37155f068fa78ee0f25be1c9d7cf684bed9e70ce2ee4f4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003223123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 700,
                                          "cgst": 0,
                                          "igst": 126
                                        }
                                      ]
                                    },
                                    {
                                      "val": 384,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd372bdd046c237712d7ef478734695c258029ae38605dee123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003224123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 325.42,
                                          "cgst": 0,
                                          "igst": 58.58
                                        }
                                      ]
                                    },
                                    {
                                      "val": 152339,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b86b97719f96c67d34111770a2cb4d61d93f8f084196123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003225123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 129100.85,
                                          "cgst": 0,
                                          "igst": 23238.15
                                        }
                                      ]
                                    },
                                    {
                                      "val": 145260,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3746dafa190d7fc155f992dbd222c617c3b76d13b073af123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003226123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 123101.7,
                                          "cgst": 0,
                                          "igst": 22158.3
                                        }
                                      ]
                                    },
                                    {
                                      "val": 184603,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37411eca41cb41b8ae0df6a1ccd60630dffc1cc7acad4c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003227123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 156443.22,
                                          "cgst": 0,
                                          "igst": 28159.78
                                        }
                                      ]
                                    },
                                    {
                                      "val": 438124,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373269751f23f5c7b125c22665cc4f7ad43ef05d92ce4a123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003228123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 371291.52,
                                          "cgst": 0,
                                          "igst": 66832.48
                                        }
                                      ]
                                    },
                                    {
                                      "val": 70512,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c786eabf5c523d36f15b1ee74d0c8f613d12427d8f9e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003229123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 59755.93,
                                          "cgst": 0,
                                          "igst": 10756.07
                                        }
                                      ]
                                    },
                                    {
                                      "val": 116879,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37db5cdf0ecbbea8fb4958f172aea85132423dbdac060e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003230123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 99050,
                                          "cgst": 0,
                                          "igst": 17829
                                        }
                                      ]
                                    },
                                    {
                                      "val": 122377,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b9750d80b0a5590411f4f9f97422f44a23c2f2e92071123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003231123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 103709.32,
                                          "cgst": 0,
                                          "igst": 18667.68
                                        }
                                      ]
                                    },
                                    {
                                      "val": 131130,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378a3b0d68c2fe1acd3c0c51557c5dc9363aee4cf7e148123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003232123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 111127.12,
                                          "cgst": 0,
                                          "igst": 20002.88
                                        }
                                      ]
                                    },
                                    {
                                      "val": 415545,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd375e86ac69e233a3b89426522461c07e992f5235007b25123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003233123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 352156.78,
                                          "cgst": 0,
                                          "igst": 63388.22
                                        }
                                      ]
                                    },
                                    {
                                      "val": 700329,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b35321865fcdc44e8ef41e00d117a6f0a990852bb7fe123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003234123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 593499.15,
                                          "cgst": 0,
                                          "igst": 106829.85
                                        }
                                      ]
                                    },
                                    {
                                      "val": 740,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3774dd43ee64049792bc1c730d67e722fb4c5ef2700d35123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003235123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 627.12,
                                          "cgst": 0,
                                          "igst": 112.88
                                        }
                                      ]
                                    },
                                    {
                                      "val": 653,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3721639c895ff4696b0d595bc9cb8b06a8fc38ab2164dd123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003236123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 553.39,
                                          "cgst": 0,
                                          "igst": 99.61
                                        }
                                      ]
                                    },
                                    {
                                      "val": 1360,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376d159624829e3205bece4970ba536ab3832a1503aae8123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-04-2024",
                                      "inum": "INV-DD0270003237123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1152.54,
                                          "cgst": 0,
                                          "igst": 207.46
                                        }
                                      ]
                                    },
                                    {
                                      "val": 2402,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376439a51c700409b20380ce5b56c0363e4589d642831a123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003242123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2035.59,
                                          "cgst": 0,
                                          "igst": 366.41
                                        }
                                      ]
                                    },
                                    {
                                      "val": 69697,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377ee1223da6b95770173b484f190c4812a36a5b1e79dc123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003243123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 59065.25,
                                          "cgst": 0,
                                          "igst": 10631.75
                                        }
                                      ]
                                    },
                                    {
                                      "val": 214159,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377fd9f720b58b6557536e768e2ddabacf29111a49c46f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003244123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 181490.68,
                                          "cgst": 0,
                                          "igst": 32668.32
                                        }
                                      ]
                                    },
                                    {
                                      "val": 23137,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e15407a7aaf430899e03d94e461399a2984b974cd460123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003245123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 19607.63,
                                          "cgst": 0,
                                          "igst": 3529.37
                                        }
                                      ]
                                    },
                                    {
                                      "val": 55559,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378b267af4cb8fec68431802deac6e5398a02fb2ad7d91123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003246123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 47083.9,
                                          "cgst": 0,
                                          "igst": 8475.1
                                        }
                                      ]
                                    },
                                    {
                                      "val": 63681,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd370dc893d2f7ca15c1228da1426b34d597a90938825b4b123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003247123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 53966.95,
                                          "cgst": 0,
                                          "igst": 9714.05
                                        }
                                      ]
                                    },
                                    {
                                      "val": 67467,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd375138ad7a560584b10c371cec358f735671355adada3f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003248123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 57175.42,
                                          "cgst": 0,
                                          "igst": 10291.58
                                        }
                                      ]
                                    },
                                    {
                                      "val": 161591,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37eb8d27ee125a87480eb75f98a17037b042f076d80b7d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003249123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 136941.52,
                                          "cgst": 0,
                                          "igst": 24649.48
                                        }
                                      ]
                                    },
                                    {
                                      "val": 813223,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37961299392897220963ddb950fecad823f6bda6229d4e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003250123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 689172.03,
                                          "cgst": 0,
                                          "igst": 124050.97
                                        }
                                      ]
                                    },
                                    {
                                      "val": 157096,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c4f1a8c7cf18d1864b524068a8afc9bfe2c073168796123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003251123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 133132.2,
                                          "cgst": 0,
                                          "igst": 23963.8
                                        }
                                      ]
                                    },
                                    {
                                      "val": 11733,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c57c6c78f60f7a37644656f1930ae80e71402e924c18123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003252123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9943.22,
                                          "cgst": 0,
                                          "igst": 1789.78
                                        }
                                      ]
                                    },
                                    {
                                      "val": 13781,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373b77dbac6c65e9a5fd91baf1bc4e87eed790121302e0123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003253123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11678.81,
                                          "cgst": 0,
                                          "igst": 2102.19
                                        }
                                      ]
                                    },
                                    {
                                      "val": 4589,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a41dffb1c52ecb57d86684f347d080df795e5f3424d5123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003254123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3888.98,
                                          "cgst": 0,
                                          "igst": 700.02
                                        }
                                      ]
                                    },
                                    {
                                      "val": 11235,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd372f7415713930f4f5f61c6b1c987f315057fb7129c987123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003255123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9521.19,
                                          "cgst": 0,
                                          "igst": 1713.81
                                        }
                                      ]
                                    },
                                    {
                                      "val": 106849,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a1e0d72154d636128154d6ee8b634d7c37a0e91995fc123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003256123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 90550,
                                          "cgst": 0,
                                          "igst": 16299
                                        }
                                      ]
                                    },
                                    {
                                      "val": 83454,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374d912d327e1dcbcede3ba4ee74efa4a2e081184accd2123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003257123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 70723.73,
                                          "cgst": 0,
                                          "igst": 12730.27
                                        }
                                      ]
                                    },
                                    {
                                      "val": 326358,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3730c5704b3f50c63cfb0c173e51b7ba572b0753ab3d7f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003258123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 276574.58,
                                          "cgst": 0,
                                          "igst": 49783.42
                                        }
                                      ]
                                    },
                                    {
                                      "val": 150031,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374f3046c8733441e4b550717ef8324781302c412af291123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003259123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 127144.91,
                                          "cgst": 0,
                                          "igst": 22886.09
                                        }
                                      ]
                                    },
                                    {
                                      "val": 340913,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378e967a34d3734ee3063975c102f41c964c58885344ff123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003260123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 288909.32,
                                          "cgst": 0,
                                          "igst": 52003.68
                                        }
                                      ]
                                    },
                                    {
                                      "val": 100862,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fa67eff49eb6a8343cdf0c2fc1512ce6f49b7d6b10a9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003261123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 85476.27,
                                          "cgst": 0,
                                          "igst": 15385.73
                                        }
                                      ]
                                    },
                                    {
                                      "val": 15934,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378157c151fafd5f2e0fe07183a021179435c56f8e8702123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003262123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 13503.39,
                                          "cgst": 0,
                                          "igst": 2430.61
                                        }
                                      ]
                                    },
                                    {
                                      "val": 734871,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e1990d4e6a0c78d700b1bcc91ca6871a45a0bb6d1055123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003263123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 622772.03,
                                          "cgst": 0,
                                          "igst": 112098.97
                                        }
                                      ]
                                    },
                                    {
                                      "val": 35,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3701fb378ea1ec84651b4bb490986d786cbaa1fe7da8e8123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003264123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 29.66,
                                          "cgst": 0,
                                          "igst": 5.34
                                        }
                                      ]
                                    },
                                    {
                                      "val": 273436,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37850c7d34d78c830005af2ca5e5abe8b747a3278f7a90123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003265123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 231725.42,
                                          "cgst": 0,
                                          "igst": 41710.58
                                        }
                                      ]
                                    },
                                    {
                                      "val": 19177,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3706bec7695b2db59d9deb1587f9433fdc9b2e8f0d2595123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003266123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 16251.7,
                                          "cgst": 0,
                                          "igst": 2925.3
                                        }
                                      ]
                                    },
                                    {
                                      "val": 15928,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd379a89c96b9a6b3e7fcae82782f0b32a69f196404a78d1123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003267123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 13498.3,
                                          "cgst": 0,
                                          "igst": 2429.7
                                        }
                                      ]
                                    },
                                    {
                                      "val": 994,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378d33bf39605ef43b9cfc55647f54f4e0d19a1bfebb0d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003268123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 842.37,
                                          "cgst": 0,
                                          "igst": 151.63
                                        }
                                      ]
                                    },
                                    {
                                      "val": 45962,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376817fbf41f7062dbacd2f846a58af9543f07dcb63a7e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003269123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 38950.85,
                                          "cgst": 0,
                                          "igst": 7011.15
                                        }
                                      ]
                                    },
                                    {
                                      "val": 26851,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c9cb1c286c67837963ec2d8ca4221820fcf0b692f993123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003270123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 22755.09,
                                          "cgst": 0,
                                          "igst": 4095.91
                                        }
                                      ]
                                    },
                                    {
                                      "val": 49836,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37dac67a0d24ce3a0af0bc1c54492ddd33ee90fbb6b441123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003271123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 42233.9,
                                          "cgst": 0,
                                          "igst": 7602.1
                                        }
                                      ]
                                    },
                                    {
                                      "val": 158,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37525d40155591ff2284fac400bef38ff69b233bd74914123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003272123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 133.9,
                                          "cgst": 0,
                                          "igst": 24.1
                                        }
                                      ]
                                    },
                                    {
                                      "val": 16,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3786f242169e5de9db2763ee6a1c2c48f4f04870b21bcb123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-04-2024",
                                      "inum": "INV-DD0270003273123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 13.56,
                                          "cgst": 0,
                                          "igst": 2.44
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MARICO LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCM0123G1Z7"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 101480,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-A013789123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 86000,
                                          "cess": 0,
                                          "igst": 15480
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "UNITED ENTERPRISES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCPN0123G1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-24576123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 10000,
                                          "igst": 1800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SUNNY ENTERPRISES",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPM0123L1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 93991.62,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20231900016801123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 79653.85,
                                          "cess": 0,
                                          "igst": 14337.77
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 284380,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20231900016843123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 241000,
                                          "cess": 0,
                                          "igst": 43380
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCCR0123J1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "12-03-2024",
                                      "val": 2003.79,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1710123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1200,
                                          "txval": 1789.1,
                                          "igst": 214.69
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ASP GROUP",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "21ABCFA0123L2Z6"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 6300,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-I240000001376404123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 150,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 150,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 4368,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-I240000001377889123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 104,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4160,
                                          "cgst": 104,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCT0123F6Z5"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "22-03-2024",
                                      "val": 5464.17,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1274123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 4878.72,
                                          "igst": 585.45
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Orchid suits cochin",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "32ABCFO0123G1ZJ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-02-2024",
                                      "val": 120,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-VP123-IND-1005643",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 101.69,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 18.3
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "VOLOPAY INDIA PRIVATE LIMITED",
                                  "supfildt": "26-03-2024",
                                  "supprd": "022024",
                                  "ctin": "29ABCCV0123N1ZW"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 18560,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3759a403fb85c1d5196bcfaedbe79a731bbc3b97460104123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "22-02-2024",
                                      "inum": "INV-97738123/OPP",
                                      "rsn": "",
                                      "dt": "31-01-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 0,
                                          "num": 1,
                                          "txval": 16000,
                                          "cgst": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Rahul Chaudhry & Partners",
                                  "supfildt": "02-04-2024",
                                  "supprd": "012024",
                                  "ctin": "07ABCPC0123L1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "23-03-2024",
                                      "val": 25061,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-242412BP03AAE358123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 559,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 22350,
                                          "cgst": 559,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCN0123P1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "20-03-2024",
                                      "val": 296850,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0748123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 22641.11,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 251567.84,
                                          "cgst": 22641.11,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 69750,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-0754123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5319.92,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 59110.2,
                                          "cgst": 5319.92,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MG VIP LOUNGE",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPS0123A2Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 340045.32,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-595123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 288174,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 51871.32
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 93486.7,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-602123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 79226,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 14260.7
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TECHNO ENTERPRISE",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPP0123Q1Z4"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 4248000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37637c165af027d70a2704f77d30664675b69e34d43447123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-1000271123",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3600000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 648000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RISE APPLIANCES PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCR0123F1Z6"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 2033921.47,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-4947856797123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1723662.26,
                                          "cess": 0,
                                          "igst": 310259.21
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "GOOGLE INDIA PVT LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCG0123D1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "12-03-2024",
                                      "val": 53257.41,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-OAM23123-24GMO298",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 45133.4,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 8124.01
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "OCTAADS MEDIA",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "20ABCFO0123P1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 539850,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd375817e209d3d9859abef60c681b703bfc7c7a698c2a86123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/720/23-24",
                                      "rsn": "",
                                      "dt": "01-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 41175,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 457500,
                                          "cgst": 41175,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 144550,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b4fb83690cfc6a4c7e54420a0f6008b0ef7d0d64f19f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/721/23-24",
                                      "rsn": "",
                                      "dt": "01-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 11025,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 122500,
                                          "cgst": 11025,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 53100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a5ce202c667a27916c3ded115de7889132c2a4fcb956123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/722/23-24",
                                      "rsn": "",
                                      "dt": "01-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 4050,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 45000,
                                          "cgst": 4050,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 710618,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374cfec928334cdf932074add17771e1278cf8b7d942a8123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/745/23-24",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 54199.71,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 602219,
                                          "cgst": 54199.71,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 94518,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd375c9329a7ec5cb8e6273c51c77ee35b9a22b882743cdb123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/746/23-24",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 7209,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 80100,
                                          "cgst": 7209,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 39801,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37f6afaeb06bb15ac0fc0f6d4c3468bf58dc07502baa02123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/752/23-24",
                                      "rsn": "",
                                      "dt": "06-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 3035.7,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 33730,
                                          "cgst": 3035.7,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 171631,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd379f46d0127fbe8e40736fd70c9968cd3eb253506f98cb123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/779/23-24",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 13090.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 145450,
                                          "cgst": 13090.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 107970,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373f5a528db7fc2ca9aaa139cdea7d223a979470b9ef70123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/785/23-24",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 8235,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 91500,
                                          "cgst": 8235,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 144550,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd379a4ae8aa662bc430e486f1f4bf5221d5805f09ce931e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/792/23-24",
                                      "rsn": "",
                                      "dt": "30-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 11025,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 122500,
                                          "cgst": 11025,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 53100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373e5e0e2d49af1a05baec93938282fbc0d880190c8c47123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/793/23-24",
                                      "rsn": "",
                                      "dt": "30-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 4050,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 45000,
                                          "cgst": 4050,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 765970,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37bfdd11bb7d4300888085ee70dbd25f58d759f1e1b6fa123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/794/23-24",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 58421.43,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 649127,
                                          "cgst": 58421.43,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 82482,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374779074704768685819534259b4dfc3a9d4ee6745086123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/795/23-24",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 6291,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 69900,
                                          "cgst": 6291,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 57603,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378857778f7d1f4fd24d351503eaf703c0ce36c50d58c3123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-04-2024",
                                      "inum": "INV-RPMG123/825/23-24",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 4393.44,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 48816,
                                          "cgst": 4393.44,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RPM LOGISTICS PRIVATE LIMITED",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCR0123K1ZR"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 51920,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37f4c3c076da54b4fd373fe8b0ddb0847b2bb788566a07123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "30-03-2024",
                                      "inum": "INV-BD123-00980",
                                      "rsn": "",
                                      "dt": "30-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 44000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7920
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "WHITE BOX",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCFW0123G1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 24101.94,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20230900016737123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20425.35,
                                          "cess": 0,
                                          "igst": 3676.59
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 214.64,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20230900016738123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 181.9,
                                          "cess": 0,
                                          "igst": 32.74
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 88500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20230900016791123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 75000,
                                          "cess": 0,
                                          "igst": 13500
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCR0123J1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 7025406,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3700d0184a12053289e45ccba91b1e50f47ae6512cb573123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "07-03-2024",
                                      "inum": "INV-TN123/2143/2023-24",
                                      "rsn": "",
                                      "dt": "07-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5953734,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1071672.12
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7412133,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e2e018e85d5aa8f134bd32028e23b61da2ac564190c6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "30-03-2024",
                                      "inum": "INV-TN123/2257/2023-24",
                                      "rsn": "",
                                      "dt": "30-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6281469,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1130664.42
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "3 POINT HUMAN CAPITAL PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCCT0123J1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "16-02-2024",
                                      "val": 4030,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "20",
                                      "typ": "R",
                                      "inum": "INV-744123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 215.89,
                                          "rt": 12,
                                          "num": 1200,
                                          "txval": 3598.2,
                                          "cgst": 215.89
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-02-2024",
                                      "val": 2014.72,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "20",
                                      "typ": "R",
                                      "inum": "INV-747123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 107.93,
                                          "rt": 12,
                                          "num": 1200,
                                          "txval": 1798.86,
                                          "cgst": 107.93
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-02-2024",
                                      "val": 557,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "20",
                                      "typ": "R",
                                      "inum": "INV-1143123/RMF",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 13.25,
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 530,
                                          "cgst": 13.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-02-2024",
                                      "val": 21,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "20",
                                      "typ": "R",
                                      "inum": "INV-1151123/RMF",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 0.5,
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 20,
                                          "cgst": 0.5
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-02-2024",
                                      "val": 53,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "20",
                                      "typ": "R",
                                      "inum": "INV-1152123/RMF",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 1.25,
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 50,
                                          "cgst": 1.25
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HOTEL THE CASTLE",
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "ctin": "20ABCPS0123L1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 49751,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRMH123/23-24/005",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 42162.21,
                                          "cess": 0,
                                          "igst": 7589.2
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 72704,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRMH123/23-24/006",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 61613.35,
                                          "cess": 0,
                                          "igst": 11090.4
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 1384,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRMH123/23-24/007",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 1172.83,
                                          "cess": 0,
                                          "igst": 211.11
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Zed Lifestyle Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCZ0123M1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "30-03-2024",
                                      "val": 29500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV123-MM-ZB-000185",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4500
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MAPLEMONK PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "36ABCCM0123D1ZJ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "08-03-2024",
                                      "val": 15930,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/MAR/485",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 13500,
                                          "igst": 2430
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-03-2024",
                                      "val": 12000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/MAR/486",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 10169.52,
                                          "igst": 1830.51
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S G. S. ENTERPRISES",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPK0123N1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 21714.49,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378684f9b109c6ab88a322653fdcff50769009e1f8ef95123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-VCIN123/23-24/2179",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 18402.11,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3312.38
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "vCommission Media Private Limited",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCV0123B1ZK"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 367665.58,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HR123/06/457",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 209251,
                                          "txval": 311581,
                                          "cgst": 0,
                                          "igst": 56084.58
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 449241.34,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HR123/06/466",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 209259,
                                          "txval": 380713,
                                          "cgst": 0,
                                          "igst": 68528.34
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 370098.74,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HR123/06/535",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 209318,
                                          "txval": 313643,
                                          "cgst": 0,
                                          "igst": 56455.74
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 226043.16,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HR123/06/545",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 209322,
                                          "txval": 191562,
                                          "cgst": 0,
                                          "igst": 34481.16
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SUPERWELL COMTRADE PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCS0123R1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "26-03-2024",
                                      "val": 141028,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-OCA2324123-10812",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 119515,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 21512.7
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "OCEAN GATE CONTAINER TERMINALS PVT LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCO0123H1ZM"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 269030.94,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-5031602590123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 227992.32,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 41038.62
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-03-2024",
                                      "val": 982710.23,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-5031602636123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 832805.28,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 149904.95
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 285845.37,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-5031602703123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 242241.84,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 43603.53
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MARICO LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCCM0123G1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "17-02-2024",
                                      "val": 3360,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-PS123/23-24/5580",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 180,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 3000,
                                          "cgst": 180,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-02-2024",
                                      "val": 3360,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-PS123/23-24/5581",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 180,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 3000,
                                          "cgst": 180,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-02-2024",
                                      "val": 262.5,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-PS123/23-24/5582",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 6.25,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 250,
                                          "cgst": 6.25,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HOTEL PARAS GRAND",
                                  "supfildt": "23-03-2024",
                                  "supprd": "022024",
                                  "ctin": "05ABCFH0123A1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "12-03-2024",
                                      "val": 22220.93,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MM123/A324/03/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 18831,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3389.63
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MOBLIGENT MEDIA PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCM0123P1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "30-03-2024",
                                      "val": 17700,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/4/DISP-561",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2700
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BEAUTY PALACE",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPB0123P1ZH"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 188800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378532f5773dcc22d12ff1477b80b689e33903d22bbae4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "22-03-2024",
                                      "inum": "INV-ING123/23-24/612",
                                      "rsn": "",
                                      "dt": "22-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 160000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 28800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INGENIOUS APPLIANCES & PACKAGING PVT LTD",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCI0123R1ZH"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5993.97,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2024324R00005846123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 457.17,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5079.63,
                                          "cgst": 457.17,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 3635.86,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2024324R00005847123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 277.31,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3081.24,
                                          "cgst": 277.31,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 780016.16,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2024324R00005877123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 59492.76,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 661030.64,
                                          "cgst": 59492.76,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 313760.42,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2024324R00005900123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 23930.88,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 265898.66,
                                          "cgst": 23930.88,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 1486.8,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-240324DHN00004123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 113.4,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1260,
                                          "cgst": 113.4,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-03-2024",
                                      "val": 7664,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-24324S000066123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 584.54,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6494.92,
                                          "cgst": 584.54,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BLUE DART EXPRESS LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCB0123L1ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 7080,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV092403044675123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 3304,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV092403044676123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2800,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 504
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 340,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV092403170683123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 288.21,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 51.88
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 36,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV092403242482123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 30.6,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 5.51
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S PINE LABS PVT LTD",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCP0123K1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 38940,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3715deba650d18be33a32cad616010d8b9aca47d0a9b07123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-LIPL123/2135/23-24",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 33000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 5940
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "LETTERSHOP INDIA PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCL0123P1ZR"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 47200,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV123-3329",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 40000,
                                          "cess": 0,
                                          "igst": 7200
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 47200,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV123-3519",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 40000,
                                          "cess": 0,
                                          "igst": 7200
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Suresh Marketing",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCPC0123H1Z2"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-03-2024",
                                      "val": 14160,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-77123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1080,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12000,
                                          "cgst": 1080,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MEHAR EVENT",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPB0123C1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-03-2024",
                                      "val": 88500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-56123/TDC/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 6750,
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 75000,
                                          "cgst": 6750
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "The Drum Circle",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPV0123F1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "03-03-2024",
                                      "val": 7000,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "37",
                                      "typ": "R",
                                      "inum": "INV-27234123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 375,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 6250,
                                          "cgst": 375,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HOTEL KALINGA ENTERPRISES",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "37ABCFH0123A1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-02-2024",
                                      "val": 188800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MBT123/ILN/24/00854",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 160000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 28800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Mensa Brand Technologies Private Limited",
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "ctin": "06ABCCM0123J1Z6"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 683.04,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20232000004492123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 578.85,
                                          "cess": 0,
                                          "igst": 104.19
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "20ABCCR0123J1ZS"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 125552,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37800baaf417f2fa18839584b449db20fefbd5a8fd22eb123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-984123",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 9576,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 106400,
                                          "cgst": 9576,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "K MANOHAR THE BAG MART",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPL0123J1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 7080,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b48893bb845c3d5c7694ac8831ae33502f332633e42f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "31-03-2024",
                                      "inum": "INV-ST2300005123",
                                      "rsn": "",
                                      "dt": "21-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SAMRUDDHI ENTERPRISES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCFS0123P1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23BE123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 900,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 900,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-24BE123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 900,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 900,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Velvet Cosmetics",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPP0123J1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "23-01-2024",
                                      "val": 52927,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-232123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 52927,
                                          "igst": 2646.35
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-01-2024",
                                      "val": 30680,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-232A123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 26000,
                                          "igst": 4680
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-01-2024",
                                      "val": 49000,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-232B123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 49000,
                                          "igst": 2450
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-01-2024",
                                      "val": 70178,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-233123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 70178,
                                          "igst": 3508.9
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-01-2024",
                                      "val": 33040,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-233A123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 28000,
                                          "igst": 5040
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-01-2024",
                                      "val": 49000,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-233B123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 49000,
                                          "igst": 2450
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-02-2024",
                                      "val": 36960,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-246123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 36960,
                                          "igst": 1848
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-02-2024",
                                      "val": 28320,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-246A123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 24000,
                                          "igst": 4320
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-02-2024",
                                      "val": 44000,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-246B123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 44000,
                                          "igst": 2200
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 49000,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-247B123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 500,
                                          "txval": 49000,
                                          "igst": 2450
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 163343,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-248123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 0,
                                          "num": 1,
                                          "txval": 163343,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 33040,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-248A123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 28000,
                                          "igst": 5040
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ANSH ENTERPRISES",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPY0123N2ZJ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 2233.17,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKRGJ25000001700123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 170.33,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1892.52,
                                          "cgst": 170.33,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCF0123K1ZN"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 38687.5,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/CM04450",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 32786.02,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 5901.48
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 32122.9,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/CM05177",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 27222.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4900.1
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Hippo Innovations Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCH0123B1ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 2.54,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-N2324123/000049165",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2.15,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 0.39
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "EASEBUZZ PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCS0123M1Z5"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 147454.65,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GU23I00001171081123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 11246.54,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 124961.57,
                                          "cgst": 11246.54,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TATA AIG GENERAL INSURANCE COMPANY LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCT0123Q1Z2"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 4930.95,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-271H918FD0324001123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4359,
                                          "cess": 0,
                                          "igst": 217.95
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-03-2024",
                                      "val": 9934.2,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-271OB3ZYA0324001123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 9124,
                                          "cess": 0,
                                          "igst": 456.2
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-03-2024",
                                      "val": 2500.2,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-271TYWF2N0324001123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2044,
                                          "cess": 0,
                                          "igst": 102.2
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCS0123P1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "19-02-2024",
                                      "val": 8850,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-INV2023123-24/0782",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 7500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1350
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "A A Garg & co",
                                  "supfildt": "03-04-2024",
                                  "supprd": "022024",
                                  "ctin": "27ABCPG0123Q1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 15930,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1239123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 13500,
                                          "igst": 2430
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "LOKENATH MARKETING",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCPS0123Q1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "16-03-2024",
                                      "val": 13034,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MP1232403AS05111123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 12412,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 622
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "23ABCCI0123B1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 65032,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RV123/389/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 55112,
                                          "cess": 0,
                                          "igst": 9920.16
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 54273,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RV123/390/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 45994,
                                          "cess": 0,
                                          "igst": 8278.92
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 76675,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RV123/391/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 64979,
                                          "cess": 0,
                                          "igst": 11696.22
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 62100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RV123/392/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 52627,
                                          "cess": 0,
                                          "igst": 9472.86
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RICH VENTURES",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCPB0123F1Z5"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 5900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BD123/23-24/0013A",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "DHINGRA ASSOCIATES",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCPD0123C1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-02-2024",
                                      "val": 5900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/23-24/970",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S BHATIA & SONS",
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "ctin": "09ABCPB0123E1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "20-03-2024",
                                      "val": 21240,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BE123/00547",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1620,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 18000,
                                          "cgst": 1620,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RIYANSH ENTERPRISE",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPP0123D1ZS"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 13570,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-NE123/23-24/2972",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2070
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 17700,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-NE123/23-24/3177",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2700
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "NUTIX ENTERPRISE",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCPD0123K1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 46269,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37ccec4af1958deaed552782b102bbb9864db4b57b8fd0123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-VF32324123/GIS01096",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 39210.75,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7057.94
                                        }
                                      ]
                                    },
                                    {
                                      "val": 488809,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3794e54c67f3da0de66ea70e4b329060f52cfd7f007e00123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-VF32324123/GIS01097",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 414245,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 74564.1
                                        }
                                      ]
                                    },
                                    {
                                      "val": 6468,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377af558795dfe330b72141ef974f686302ee9b3ea92e9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-VF32324123/GIS01098",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5481,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 986.58
                                        }
                                      ]
                                    },
                                    {
                                      "val": 449906,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c91c9eb960e590158776e39eaa9fbcf76525e113afdd123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-VF32324123/GIS01120",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 381276,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 68629.68
                                        }
                                      ]
                                    },
                                    {
                                      "val": 479,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3772ec6d85b454b7d031fdaf9d3e89d9c54d7ab8498f8e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-VF32324123/GIS01121",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 406,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 73.08
                                        }
                                      ]
                                    },
                                    {
                                      "val": 137281,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b080ae5635cd347c2ddcc554bbcb26d1994fe4638239123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-VF32324123/GIS01135",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 116340,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 20941.2
                                        }
                                      ]
                                    },
                                    {
                                      "val": 161764,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd371e7325fd857a64263a7bc9869ffe00b63a833f18dc5b123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "30-03-2024",
                                      "inum": "INV-VF32324123/GIS01189",
                                      "rsn": "",
                                      "dt": "29-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 137088,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 24675.84
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S VEDIC COSMECEUTICALS PRIVATE LIMITED",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCV0123H1ZW"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 1161.12,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-204202852902007123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 88.56,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 984,
                                          "cgst": 88.56,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 1414.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-204202852902009123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 107.91,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1199,
                                          "cgst": 107.91,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCL0123N1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "08-03-2024",
                                      "val": 77383,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GJIN2023123-1844",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5902.06,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 65578.44,
                                          "cgst": 5902.06,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "KAY KAY OVERSEAS CORPORATION",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFK0123D3ZN"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 266423,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37498e3078010fd67864043541e6f740f8f84851ba74e9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-CG2023G0723123",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 225782.47,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 40640.84
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "VIHAAN WEB SOLUTIONS PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCV0123G1Z5"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 86084,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/016",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 72952,
                                          "igst": 13131.36
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "FASHLAB RETAILZ",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "21ABCPP0123C1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 2924,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378d96bdd9a4e84a29768008f086c22fa275684810ed69123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-2427123/PROS",
                                      "rsn": "",
                                      "dt": "29-02-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1600,
                                          "cgst": 0,
                                          "igst": 288
                                        }
                                      ]
                                    },
                                    {
                                      "val": 25430,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37ab2957fdc60f5922068d4e33ffb966ca2afebadb8bd5123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-2482123/LIT",
                                      "rsn": "",
                                      "dt": "29-02-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20000,
                                          "cgst": 0,
                                          "igst": 3600
                                        }
                                      ]
                                    },
                                    {
                                      "val": 21540,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b455804d505406ac30ca9e8d0f4ea1e30b4a2610bdc4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-2530123/OPP",
                                      "rsn": "",
                                      "dt": "29-02-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 16000,
                                          "cgst": 0,
                                          "igst": 2880
                                        }
                                      ]
                                    },
                                    {
                                      "val": 14890,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373605b283a74c3db5be0d377a9c1ad95f611c76c4b631123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-2531123/OPP",
                                      "rsn": "",
                                      "dt": "29-02-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "022024",
                                  "ctin": "07ABCCR0123A1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "29-03-2024",
                                      "val": 33984,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SBP123/430",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 28800,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 5184
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "STERLING BOX & PACKS",
                                  "supfildt": "02-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCFS0123A1ZO"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 194145.34,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37ac7143b5203ffaef6850a0cba94386594fcac18e9c30123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "13-03-2024",
                                      "inum": "INV-FM24123-03-14",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 164529.95,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 29615.39
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "FILLY MEDIA SOLUTIONS PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCF0123Q1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 472000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37695eb9be3e7d27e0fa0d931ad204bf6faba4d1bf917d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-RVCJ123/23-24/2662",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 400000,
                                          "cgst": 0,
                                          "igst": 72000
                                        }
                                      ]
                                    },
                                    {
                                      "val": 472000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a50552950b3a744c8595c961f3d8a9a2068a599c99df123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "20-03-2024",
                                      "inum": "INV-RVCJ123/23-24/2708",
                                      "rsn": "",
                                      "dt": "20-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 400000,
                                          "cgst": 0,
                                          "igst": 72000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RVCJ DIGITAL MEDIA PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCR0123A1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 212400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c65682e41f5768954edb4cb0db2dd268bb062f445bea123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "27-03-2024",
                                      "inum": "INV-MHDI123/02083/23-24",
                                      "rsn": "",
                                      "dt": "27-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 180000,
                                          "cgst": 0,
                                          "igst": 32400
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "OML ENTERTAINMENT PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCO0123G1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 14160,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3792bf96e43add34759188eec3bf83615aded8ff90deb6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "07-02-2024",
                                      "inum": "INV-SE00110123",
                                      "rsn": "",
                                      "dt": "08-01-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2160
                                        }
                                      ]
                                    },
                                    {
                                      "val": 14160,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3782390c05c31846318d589a05e400a9ed7fa56cde9e25123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "19-03-2024",
                                      "inum": "INV-SE00118123",
                                      "rsn": "",
                                      "dt": "06-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2160
                                        }
                                      ]
                                    },
                                    {
                                      "val": 9440,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3729c0bcb50d44ce398bb7853c0e764903590cec1d19b4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "19-03-2024",
                                      "inum": "INV-SE00119123",
                                      "rsn": "",
                                      "dt": "06-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 8000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1440
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SIDDHI VINAYAK",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCFS0123G1ZN"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 18408,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AP123/0404/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1404,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15600,
                                          "cgst": 1404,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 56168,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AP123/0405/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 4284,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 47600,
                                          "cgst": 4284,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 64133,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AP123/0429/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 4891.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 54350,
                                          "cgst": 4891.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 66039,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AP123/0431/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5036.85,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 55965,
                                          "cgst": 5036.85,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 81609,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AP123/0437/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 6224.4,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 69160,
                                          "cgst": 6224.4,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 23396,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AP123/0439/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1784.48,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 19827.5,
                                          "cgst": 1784.48,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 39200,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AP123/0440/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2989.8,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 33220,
                                          "cgst": 2989.8,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AEGIS PACKAGING",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFA0123E1ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 144160.6,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377946cf070a24d08fff25a4e1d32c6646de34037a2c36123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-CRED123/ADT23/2505",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 122170,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 21990.6
                                        }
                                      ]
                                    },
                                    {
                                      "val": 149743.77,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd372beea4ca796cf879eb967a1742380c2c97fe18658a1f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "29-03-2024",
                                      "inum": "INV-CRED123/ADT23/2650",
                                      "rsn": "",
                                      "dt": "29-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 126901.5,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 22842.27
                                        }
                                      ]
                                    },
                                    {
                                      "val": 32387.37,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378207fd0b94788f5a276a4cc9d175f417650077cb69ad123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-CRED123/MAR24/440",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 27446.92,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4940.45
                                        }
                                      ]
                                    },
                                    {
                                      "val": 24243.76,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37108e926bc8005c930cf9403e906c032f051d9e063c6a123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "26-03-2024",
                                      "inum": "INV-CRED123/MAR24/1332",
                                      "rsn": "",
                                      "dt": "25-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20545.56,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3698.2
                                        }
                                      ]
                                    },
                                    {
                                      "val": 17787.5,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373739fef3ff91ea158f4eea337a71c4954f9c553ce35f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "29-03-2024",
                                      "inum": "INV-CRED123/MAR24/2231",
                                      "rsn": "",
                                      "dt": "29-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15074.15,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2713.35
                                        }
                                      ]
                                    },
                                    {
                                      "val": 254756.01,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd371eb217951753053e3db8d1f582c58eec89aab29e6475123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-CRED123/SH23/34521",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 215894.92,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 38861.09
                                        }
                                      ]
                                    },
                                    {
                                      "val": 12886,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b488447cefb002bc529ee569e213786794499e897f51123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-CRED123/SH23/35135",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10920.34,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1965.66
                                        }
                                      ]
                                    },
                                    {
                                      "val": 118779,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37cde3c2be8fce7771a95e20f8ce6e017658dd1966c80c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "26-03-2024",
                                      "inum": "INV-CRED123/SH23/35789",
                                      "rsn": "",
                                      "dt": "25-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 100660.17,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 18118.83
                                        }
                                      ]
                                    },
                                    {
                                      "val": 10595,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373ca255c3b8581f04a2a3e57d7f6423a665f0539f1531123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "26-03-2024",
                                      "inum": "INV-CRED123/SH23/36368",
                                      "rsn": "",
                                      "dt": "25-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 8978.81,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1616.19
                                        }
                                      ]
                                    },
                                    {
                                      "val": 319726.99,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3737ad0de23f6124ec6561f1b10fadf20e07eb83ef4257123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "29-03-2024",
                                      "inum": "INV-CRED123/SH23/36967",
                                      "rsn": "",
                                      "dt": "29-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 270955.08,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 48771.91
                                        }
                                      ]
                                    },
                                    {
                                      "val": 15650,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37ec168e880705db1b7aa947258d95391d668101edcca6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "29-03-2024",
                                      "inum": "INV-CRED123/SH23/37468",
                                      "rsn": "",
                                      "dt": "29-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 13262.71,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2387.29
                                        }
                                      ]
                                    },
                                    {
                                      "val": 1180000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3735a23be5a87512d3a14d3140201c779d608e35e467f3123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-CRED123/WIN23/798",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1000000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 180000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "DREAMPLUG TECHNOLOGIES PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCD0123Q1ZS"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 7060,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AD1232403AP08731123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6724,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 336
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 8559,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AD1232403AP89132123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8152,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 407
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "37ABCCI0123B1Z1"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 576301.47,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e864754263b93777daccc291cd1dafdb9d753d6725b9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "28-03-2024",
                                      "inum": "INV-DL123/2324/MAR/068",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 488391.08,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 87910.39
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "CODOGNOTTO LOGISTICS INDIA PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCCI0123L1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "20-03-2024",
                                      "val": 3284.1,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-241GY319N0324001123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 65.55,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2622,
                                          "cgst": 65.55,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6100.2,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-241MCF38H0324001123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 132.6,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5304,
                                          "cgst": 132.6,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCS0123P1ZI"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 28320,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-3053123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 24000,
                                          "cess": 0,
                                          "igst": 4320
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "LAXMI TRADING",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "22ABCPL0123Q1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 328795,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37874ce99a50d67d028974d71f9c17a7d1d754d6af616d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-689123",
                                      "rsn": "",
                                      "dt": "10-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 278640,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 50155.2
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "DEV ENTERPRISE",
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPM0123K1ZX"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "15-03-2024",
                                      "val": 8960,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "33",
                                      "typ": "R",
                                      "inum": "INV-6564123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 480,
                                          "rt": 12,
                                          "num": 1200,
                                          "txval": 8000,
                                          "cgst": 480
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "GREENS GATE",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCFG0123R1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 413,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7783318500123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 350,
                                          "igst": 63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 413,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7783510654123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 350,
                                          "igst": 63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 413,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7783738481123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 350,
                                          "igst": 63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 413,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7785104578123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 350,
                                          "igst": 63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 413,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7785139773123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 350,
                                          "igst": 63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 413,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7785145712123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 350,
                                          "igst": 63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 270.33,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7842704354123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 229.09,
                                          "igst": 41.24
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 378.7,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7842829524123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 320.93,
                                          "igst": 57.77
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 297.62,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7842955771123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 252.22,
                                          "igst": 45.4
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 143.35,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7842974158123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 121.48,
                                          "igst": 21.87
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 1118.49,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-7843060536123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 947.88,
                                          "igst": 170.61
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S ONE 97 COMMUNICATION LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCO0123A1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "12-01-2024",
                                      "val": 5265,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ME23123-24/99",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4461.86,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 803.13
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-02-2024",
                                      "val": 5265,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ME23123-24/110",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4461.86,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 803.13
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MAHI ENTERPRISES",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPT0123M1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 114236,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3734a496a152d85514873ad189c04622003e99ac6c5530123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "30-03-2024",
                                      "inum": "INV-634123",
                                      "rsn": "",
                                      "dt": "30-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 96810,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 17425.8
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ROSHAN PACKAGING INDUSTRIES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPS0123E1ZK"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 13452,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-141123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11400,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2052
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "PAPER MAX",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "33ABCPH0123N1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "29-03-2024",
                                      "val": 448400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-205506374600002123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 380000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 68400
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCL0123N1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-02-2024",
                                      "val": 367.52,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-5388123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 8.75,
                                          "rt": 5,
                                          "num": 501,
                                          "txval": 350,
                                          "cgst": 8.75,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-02-2024",
                                      "val": 3326.4,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-5389123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 178.2,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 2970,
                                          "cgst": 178.2,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-02-2024",
                                      "val": 2721.6,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-5390123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 145.8,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 2430,
                                          "cgst": 145.8,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-02-2024",
                                      "val": 446.26,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-5391123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 10.63,
                                          "rt": 5,
                                          "num": 501,
                                          "txval": 425,
                                          "cgst": 10.63,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S NEW ROK HOTELS PVT. LTD.",
                                  "supfildt": "13-03-2024",
                                  "supprd": "022024",
                                  "ctin": "05ABCCB0123A1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5310,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB1890123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 810
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5310,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB1891123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 810
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 5310,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB2013123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 810
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 5310,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB2014123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 810
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "K.B.ENTERPRISE",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCPD0123D1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 4629.14,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/296",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 3923,
                                          "igst": 706.14
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 16992,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2023123-24/297",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 14400,
                                          "igst": 2592
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ICONIC DIGITAL MARKETING",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCPJ0123J1Z4"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 200600,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-17123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 170000,
                                          "igst": 30600
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 51920,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-18123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 44000,
                                          "igst": 7920
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 500927.7,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-19123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 424515,
                                          "igst": 76412.7
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 743400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-20123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 630000,
                                          "igst": 113400
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 177000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-21123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 150000,
                                          "igst": 27000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Finesse Records",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPB0123L1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 3625367,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ITLP23123-24/34893",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3072345.27,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 553022.15
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ITHINK LOGISTIC QUICK SERVICES PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCI0123J1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 12948,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRKA123/23-24/015",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 10972.64,
                                          "cess": 0,
                                          "igst": 1975.08
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 8005,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRKA123/23-24/016",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 6783.71,
                                          "cess": 0,
                                          "igst": 1221.07
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 8805,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRKA123/23-24/017",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 7461.87,
                                          "cess": 0,
                                          "igst": 1343.14
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 133933,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRKA123/23-24/018",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 710,
                                          "cess": 0,
                                          "igst": 85.2
                                        },
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 112828.63,
                                          "cess": 0,
                                          "igst": 20309.15
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 18033,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BRKA123/23-24/019",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 15282.29,
                                          "cess": 0,
                                          "igst": 2750.81
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Beardo",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCZ0123M1Z7"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 1652,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TE4493123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 1400,
                                          "cess": 0,
                                          "igst": 252
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "THAKUR ENTERPRISES",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "02ABCPR0123P1ZO"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "15-03-2024",
                                      "val": 37410,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AC123/2023-2024/552",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 31703.1,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 5706.56
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ANALYTICS CLOUD",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPS0123E1ZQ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-03-2024",
                                      "val": 1766.26,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "20",
                                      "typ": "R",
                                      "inum": "INV-R114433823123-00546",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 94.62,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1577.02,
                                          "cgst": 94.62,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Ruptub Solutions Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "20ABCCR0123R1Z5"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 5098.97,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37457162e4623e0d15e524826137d832b90959c1585df1123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-DR0600087755123",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4321.16,
                                          "cgst": 0,
                                          "igst": 777.81
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Times Internet Ltd.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCT0123M1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-02-2024",
                                      "val": 66900.1,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TI123/2024/02/2599",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5102.55,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 56695,
                                          "cgst": 5102.55,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-02-2024",
                                      "val": 1711,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TI123/2024/02/2623",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 130.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1450,
                                          "cgst": 130.5,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "PRINT VISION PVT LTD.",
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "ctin": "24ABCCP0123M1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "29-02-2024",
                                      "val": 62509,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/06",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 52974,
                                          "igst": 9535.32
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Raghunath Associates",
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "ctin": "23ABCPD0123J1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "29-02-2024",
                                      "val": 37170,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1934123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 31500,
                                          "igst": 5670
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MEENA SALES",
                                  "supfildt": "24-03-2024",
                                  "supprd": "022024",
                                  "ctin": "29ABCPM0123J1Z6"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 308570,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e516a6380c4c2afed1c073d39c02b212d0a15d649321123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-D901001239123",
                                      "rsn": "",
                                      "dt": "14-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 23535,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 261500,
                                          "cgst": 23535,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SANKALP IN",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFS0123A1ZM"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 16075,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37791c1b6693ddd8c099f41b3002ecad341ad38d665705123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1706123/CR",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12500,
                                          "cgst": 0,
                                          "igst": 2250
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7365,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376442ed76aee432a29902262ec0cfe0f417f410581d51123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1707123/PROS",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7315,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378e2853aaabfad1433a099c1a7521b45995723bd83b8c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1708123/PROS",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7365,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37530734353afe18e46906d3c49669167c8a8556bbc74e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1709123/PROS",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7365,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e985a3db7d3abec01bfc550122eaf7d316f935604f8d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1710123/PROS",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    },
                                    {
                                      "val": 14840,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd371370f417593d91bcb3ec3b1d259fa149df9ad0ec822e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1763123/OPP",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "val": 14890,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374fa38f709baeb40d3a686b404c93a276d794aee8e520123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1765123/OPP",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "val": 14625,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373e4923d7d0ba5da1f693aa7827edbce1facb9434da3c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1791123/PROS",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12000,
                                          "cgst": 0,
                                          "igst": 2160
                                        }
                                      ]
                                    },
                                    {
                                      "val": 7233,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c09462b034645befc5f87c95215bc87be415ec63a8fc123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-01-2024",
                                      "inum": "INV-1792123/PROS",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3600,
                                          "cgst": 0,
                                          "igst": 648
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Rahul Chaudhry and Partners Private Limited",
                                  "supfildt": "12-03-2024",
                                  "supprd": "102023",
                                  "ctin": "07ABCCR0123A1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 35108,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SI123/01260/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2677.72,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 29752.48,
                                          "cgst": 2677.72,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 9984,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SI123/01263/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 761.49,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 8461.04,
                                          "cgst": 761.49,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "OCTAVOS ENTERPRISE SOLUTIONS PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCO0123N1Z8"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 2750,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-WB1232403BQ80672123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2619,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 131
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 150,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-WB1232403BR02778123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 143,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTER GLOBE AVIATION LTD.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCCI0123B1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 48852,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d7e3bcc0ffef00c871ff47edb12704b03415085a93bd123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-03-2024",
                                      "inum": "INV-UC2324123/GGN/9303",
                                      "rsn": "",
                                      "dt": "05-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 41400,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7452
                                        }
                                      ]
                                    },
                                    {
                                      "val": 148958.24,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d8661f4d191d23711326f2a87d646241172a2d6fdf95123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-UC2324123/GGN/9890",
                                      "rsn": "",
                                      "dt": "14-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 126235.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 22722.44
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "UNICOMMERCE ESOLUTIONS LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCU0123K1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "27-03-2024",
                                      "val": 125246.77,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ADM123/2023-24/3513",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 106141.33,
                                          "cess": 0,
                                          "igst": 19105.44
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ADMITAD MEDIA PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCA0123H1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 1180,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000874364922123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 90,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1000,
                                          "cgst": 90,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-03-2024",
                                      "val": 590,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000874365367123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 45,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 500,
                                          "cgst": 45,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-03-2024",
                                      "val": 2355.01,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000874369061123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 179.62,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1995.77,
                                          "cgst": 179.62,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 1475,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000881118330123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 112.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1250,
                                          "cgst": 112.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 590,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000881120143123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 45,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 500,
                                          "cgst": 45,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 1475,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000881121699123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 112.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1250,
                                          "cgst": 112.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 4739.06,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000881123531123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 361.45,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4016.15,
                                          "cgst": 361.46,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 5473.49,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000881261722123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 417.47,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4638.55,
                                          "cgst": 417.47,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 1475,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000887635553123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 112.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1250,
                                          "cgst": 112.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 590,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000887635765123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 45,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 500,
                                          "cgst": 45,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 1780.44,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000887638516123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 135.79,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1508.85,
                                          "cgst": 135.8,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 6720.18,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000887642704123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 512.55,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5695.07,
                                          "cgst": 512.56,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 590,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000888762942123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 45,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 500,
                                          "cgst": 45,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 1543.17,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000888765058123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 117.7,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1307.77,
                                          "cgst": 117.7,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 3645.55,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000888767764123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 278.05,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3089.45,
                                          "cgst": 278.05,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 590,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000891827377123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 45,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 500,
                                          "cgst": 45,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 1800.76,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000891827447123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 137.34,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1526.07,
                                          "cgst": 137.35,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 4155.12,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000891828166123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 316.91,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3521.29,
                                          "cgst": 316.92,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 295,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000896855400123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 22.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 250,
                                          "cgst": 22.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 295,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000896855401123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 22.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 250,
                                          "cgst": 22.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 295,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KB00000896855402123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 22.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 250,
                                          "cgst": 22.5,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "KOTAK MAHINDRA BANK LTD.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCK0123J1ZQ"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 28225.6,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3775f4d3647ee420de9e5c39426270f46a87f2a56b216e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-23123-24/TRN01319",
                                      "rsn": "",
                                      "dt": "13-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 23920,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4305.6
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "CLOUDSTUFF TECHNOLOGY PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCC0123A1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 8966,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-JS1232403AH30498123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8539,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 427
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-JS1232403AH30588123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2857,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 143
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 12587,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-JS1232403AH35339123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 11988,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 599
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "20ABCCI0123B1ZG"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "10-02-2024",
                                      "val": 4395.4,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "33",
                                      "typ": "R",
                                      "inum": "INV-UH6062123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 235.47,
                                          "rt": 12,
                                          "num": 1200,
                                          "txval": 3924.46,
                                          "cgst": 235.47,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "UPAR HOSPITALITY PRIVATE LIMITED",
                                  "supfildt": "19-03-2024",
                                  "supprd": "022024",
                                  "ctin": "33ABCCU0123F1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 499,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TS1232403BU68529123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 475,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 24
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5984,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TS1232403BU70031123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5223,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 261
                                        },
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 424,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 76
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTER GLOBE AVIATION LIMITED INDIGO",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "36ABCCI0123B1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "11-03-2024",
                                      "val": 23600,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SE123/2023-2024/384",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1800,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20000,
                                          "cgst": 1800,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "13-03-2024",
                                      "val": 7080,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SE123/2023-2024/385",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 540,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 540,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SHAKTI ENTERPRISE",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPB0123H1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "14-03-2024",
                                      "val": 284,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-8953FMBIL0001799123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 6.76,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 270.5,
                                          "cgst": 6.76,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 1559,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-8953FMBIL0001800123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 83.52,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1392,
                                          "cgst": 83.52,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 168,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-8953FMBIL0001817123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 4,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 160,
                                          "cgst": 4,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 1559,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-8953FMBIL0001818123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 83.52,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1392,
                                          "cgst": 83.52,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "JN SHARMA",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "21ABCFJ0123H1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 3600535.2,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKNADI24123/0034670",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3051301.02,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 549234.18
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-03-2024",
                                      "val": 128104.87,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKNADI24123/0036237",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 108563.45,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 19541.42
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-03-2024",
                                      "val": 11800000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKNAD123/I/24/16662",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1800000
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-03-2024",
                                      "val": 3540000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKNAD123/I/24/16693",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3000000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 540000
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 45348.58,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKNAD123/I/24/17398",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 38431,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 6917.58
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 9202820,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKNAD123/I/24/17624",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 7799000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1403820
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 2124000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKNAD123/I/24/17625",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1800000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 324000
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 771554.53,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FKRKA25000078547123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 653860.08,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 117694.81
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCF0123K1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "04-01-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RK123/23-24/0494",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 10000,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-02-2024",
                                      "val": 13216,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RK123/23-24/0555",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 11200,
                                          "cess": 0,
                                          "igst": 2016
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 16520,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RK123/23-24/0639",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 14000,
                                          "cess": 0,
                                          "igst": 2520
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RK TRADERS",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "04ABCPA0123Q1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 334168.18,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376d511c20037699520e22e0e10b3b927862f62ce6a8cd123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-GJ123-2324-125684",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 25487.26,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 283193.66,
                                          "cgst": 25487.26,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCA0123J1ZO"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 3894000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3736a49d41f5fd81a963b1a16157994ddb4d6a0e8f8b91123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "29-03-2024",
                                      "inum": "INV-185123/2023-24",
                                      "rsn": "",
                                      "dt": "29-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3300000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 594000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HRITHIK ROSHAN",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPN0123F1ZQ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19060231123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 78916,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19118318123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 87303,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-02-2024",
                                      "val": 102,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19118367123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 87318,
                                          "txval": 86.44,
                                          "cgst": 0,
                                          "igst": 15.56
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19118599123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 87363,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19118656123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 87380,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19164177123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 92783,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19314121123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 111151,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19321726123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 111735,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-02-2024",
                                      "val": 51,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19322707123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 111798,
                                          "txval": 43.22,
                                          "cgst": 0,
                                          "igst": 7.78
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19364247123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 118373,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19364547123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 118429,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19428316123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 127704,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19429038123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 127846,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19499728123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 138832,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19572872123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 149732,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19589892123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 151170,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19589976123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 151178,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19601680123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 152690,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19655923123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 158293,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19682013123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 160488,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-02-2024",
                                      "val": 101,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19683958123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 160613,
                                          "txval": 85.59,
                                          "cgst": 0,
                                          "igst": 15.41
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19746055123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 169470,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-02-2024",
                                      "val": 101,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19747344123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 169553,
                                          "txval": 85.59,
                                          "cgst": 0,
                                          "igst": 15.41
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "13-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19752370123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 169897,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "13-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19809860123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 178906,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19813245123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 179142,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19861932123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 186759,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19884137123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 188850,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19888287123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 189583,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19898824123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 191349,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19923690123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 195553,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19934973123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 196544,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19950155123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 198232,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19972540123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 202605,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I19973167123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 202746,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20089250123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 216055,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20107161123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 218285,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20192260123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231107,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 600,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20192349123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231135,
                                          "txval": 508.47,
                                          "cgst": 0,
                                          "igst": 91.53
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20193141123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231294,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20194609123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231565,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20195272123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231703,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20195276123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231704,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 200,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20195303123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231711,
                                          "txval": 169.49,
                                          "cgst": 0,
                                          "igst": 30.51
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20195388123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231731,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20196038123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231864,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20196127123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231886,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20196151123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 231892,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20196839123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232023,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20197410123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232142,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20197870123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232235,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 49,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20200751123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232728,
                                          "txval": 41.53,
                                          "cgst": 0,
                                          "igst": 7.47
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20200769123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232733,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20200772123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232734,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20200803123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232739,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20201005123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232773,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 200,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20201166123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 232803,
                                          "txval": 169.49,
                                          "cgst": 0,
                                          "igst": 30.51
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20203109123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233063,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20203794123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233164,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20203876123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233176,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20204833123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233288,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20204854123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233289,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20204953123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233303,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20205111123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233332,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20207871123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233653,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20207962123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233669,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20209343123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 233822,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20213046123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 234147,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20213144123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 234155,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20213274123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 234166,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20213485123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 234186,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20227014123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 235114,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20251768123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 238922,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20278327123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 243131,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20479985123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 245716,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20515543123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 246796,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20604556123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 251056,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-02-2024",
                                      "val": 51,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20604842123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 251103,
                                          "txval": 43.22,
                                          "cgst": 0,
                                          "igst": 7.78
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-02-2024",
                                      "val": 300,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20624289123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 252788,
                                          "txval": 254.24,
                                          "cgst": 0,
                                          "igst": 45.76
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20655956123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 257665,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "24-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20702764123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 263575,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "24-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20703024123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 263614,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "25-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20750347123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 268737,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20819236123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 276924,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20880910123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 285266,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I20999663123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 301391,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-02-2024",
                                      "val": 100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I21033370123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 307180,
                                          "txval": 84.75,
                                          "cgst": 0,
                                          "igst": 15.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-02-2024",
                                      "val": 50,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-M06AI24I21038614123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 307738,
                                          "txval": 42.37,
                                          "cgst": 0,
                                          "igst": 7.63
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MAKE MY TRIP (INDIA) PVT. LTD.",
                                  "supfildt": "16-03-2024",
                                  "supprd": "022024",
                                  "ctin": "06ABCCM0123R1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 12272,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GT123/522",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 936,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 10400,
                                          "cgst": 936,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HRI CREATION LLP",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFH0123D1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 8260,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-Bw123/24/126",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 7000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1260
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BEAUTY GLOW",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCFB0123J1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "03-03-2024",
                                      "val": 9240,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-I270000012076223123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8800,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 440
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 2898,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-I270000012084309123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2760,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 138
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 2898,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-I270000012084310123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2760,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 138
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 2688,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-I270000012102002123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2560,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 128
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCT0123F1Z4"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 4500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GA1232403AS51719123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4286,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 214
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-03-2024",
                                      "val": 42477,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GA1232403AS73745123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 39692,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1985
                                        },
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 678,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 122
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-03-2024",
                                      "val": 2998,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GA1232403AS74837123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2856,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 142
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBE  AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "30ABCCI0123B1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "28-03-2024",
                                      "val": 6097.06,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1006123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 5167,
                                          "igst": 930.06
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 7579.14,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1007123/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 6423,
                                          "igst": 1156.14
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "FLASHMONK PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCF0123P1Z1"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 25430.18,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37f7f053ab69612c297d61d5534a852389a3d3ebf333fd123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "19-03-2024",
                                      "inum": "INV-NXTIFY23123-24-793",
                                      "rsn": "",
                                      "dt": "19-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 21551,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3879.18
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Nxtify Technologies Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCN0123J1ZM"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 8723,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DO76924123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8308,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 415
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DO77089123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2857,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 143
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 898,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DO82150123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 856,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 42
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 2750,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DO83758123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2619,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 131
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4061,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DO84219123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3868,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 193
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 8196,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DO85694123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 7806,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 390
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 449,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DO91927123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 428,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 21
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5252,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DO93365123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4621,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 231
                                        },
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 339,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 61
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 9251,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DP11355123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8810,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 441
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 9251,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DP13433123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8810,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 441
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 499,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DP21663123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 475,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 24
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 9251,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DP22180123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8810,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 441
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 449,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DP46743123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 428,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 21
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 5581,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DP91014123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5316,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 265
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "13-03-2024",
                                      "val": 280,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DL1232403DS33989123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 267,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 13
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Interglobe Aviation Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCCI0123B1Z4"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 114212.4,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HA9A8DRM7H7Y0324123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 56738.35,
                                          "igst": 10212.9
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RAZORPAY SOFTWARE PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCR0123J1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 348100,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374a797663db372dbf37460ceada7908b4b10387b4660a123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "25-03-2024",
                                      "inum": "INV-HR123/23-24/1393",
                                      "rsn": "",
                                      "dt": "25-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 295000,
                                          "cgst": 0,
                                          "igst": 53100
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "APOLLO HEALTHCO LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCA0123L1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 1178.82,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd370f9d9f097b662c917503cd10af7177d131baca0d476b123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HT2424I002073726123",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 89.91,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 999,
                                          "cgst": 89.91,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BHARTI  AIRTEL LTD.",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCB0123G1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "08-03-2024",
                                      "val": 34016,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AV123/CC/23-24/836",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 28827,
                                          "cess": 0,
                                          "igst": 5188.86
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SREENIWAS BASUDEO",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "18ABCCA0123P3ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 1022745.47,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e0a3304c1342c267eb057e8de5b963165116705618b6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-24915100273536123",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 866733.45,
                                          "cgst": 0,
                                          "igst": 156012.02
                                        }
                                      ]
                                    },
                                    {
                                      "val": 1834402.55,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3770c25d5b82c35172473e5f45dbe95889a5fa46a0ddbd123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-24915100273783123",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1554578.43,
                                          "cgst": 0,
                                          "igst": 279824.12
                                        }
                                      ]
                                    },
                                    {
                                      "val": 100000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37f63ca653f486696649e9f9fc2134c0e0554922ad2c27123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-24915500094577123",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 84745.76,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 15254.24
                                        }
                                      ]
                                    },
                                    {
                                      "val": 1214783.57,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37ca31b6b4b7d7f8da59086bf74020d78ea88e1de864c6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-03-2024",
                                      "inum": "INV-INDA24008422123",
                                      "rsn": "",
                                      "dt": "05-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1029477.6,
                                          "cgst": 0,
                                          "igst": 185305.97
                                        }
                                      ]
                                    },
                                    {
                                      "val": 172332.44,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378b889fece86946aef592e23c7bd8bd9be55e22aff2b4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-KA123-2324-3339371",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 146044.53,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 26287.91
                                        }
                                      ]
                                    },
                                    {
                                      "val": 22028.64,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377d4b2d8e3b68e9515240369e08ff2d125767190a369c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-KA123-2324-3358206",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 18668.34,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3360.3
                                        }
                                      ]
                                    },
                                    {
                                      "val": 759516.02,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd372dc24d5dc41320faa981a32f43aae7262cb3a196b535123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-KA123-2324-3425979",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 643657.75,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 115858.27
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCA0123J1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 124381.44,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2131201040123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 9486.72,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 105408,
                                          "cgst": 9486.72,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 70686.72,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2131201087123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5391.36,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 59904,
                                          "cgst": 5391.36,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MARICO LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCM0123G2ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "11-03-2024",
                                      "val": 720279.55,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HPPL2324MI123/1649",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 610406.4,
                                          "cess": 0,
                                          "igst": 109873.15
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 2472794.64,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HPPL2324MI123/1650",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2095588.68,
                                          "cess": 0,
                                          "igst": 377205.96
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 681697.8,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HPPL2324MI123/1675",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 577710,
                                          "cess": 0,
                                          "igst": 103987.8
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 1589852.23,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HPPL2324MI123/1676",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1347332.4,
                                          "cess": 0,
                                          "igst": 242519.83
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 20963.88,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HPPL2324MI123/1677",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 17766,
                                          "cess": 0,
                                          "igst": 3197.88
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 119223.8,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HPPL2324MI123/1682",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 101037.12,
                                          "cess": 0,
                                          "igst": 18186.68
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 867208.24,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-HPPL2324MI123/1750",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 734922.24,
                                          "cess": 0,
                                          "igst": 132286
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HELIOS PACKAGING PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "08ABCCH0123D1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 5256,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b7a316178cc7ffe6f76900b741c082dae765d01a3d3e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "22-03-2024",
                                      "inum": "INV-FO123/6010",
                                      "rsn": "P",
                                      "dt": "19-03-2024",
                                      "pos": "32",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 281.58,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 4693,
                                          "cgst": 281.58,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HOTEL HORIZON",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "32ABCCP0123D2ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 7080,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2810123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AIM MARKETING",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCPD0123B1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "26-03-2024",
                                      "val": 212400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1425123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 180000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 32400
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 29500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1433123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4500
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "COINTAB SOFTWARE PRIVATE LIMITED",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCC0123M1Z7"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 3160,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/4213",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 7.15,
                                          "rt": 5,
                                          "num": 501,
                                          "txval": 286,
                                          "cgst": 7.15,
                                          "cess": 0
                                        },
                                        {
                                          "sgst": 153.24,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 2554,
                                          "cgst": 153.24,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HETAL CORPORATION",
                                  "supfildt": "07-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFH0123Q1Z1"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5336,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-UP1232403BB91592123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5082,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 254
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S  INTERGLOBE AVIATION LIMTED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCI0123B1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "23-03-2024",
                                      "val": 64900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-A91G1100008723123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 55000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 9900
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCR0123E1ZN"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-02-2024",
                                      "val": 4368,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-2211123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 3900,
                                          "cess": 0,
                                          "igst": 468
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "DIGVIJAY INTERNATIONAL",
                                  "supfildt": "20-03-2024",
                                  "supprd": "022024",
                                  "ctin": "21ABCFD0123K1ZO"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "11-03-2024",
                                      "val": 1180,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-240311TP09956847123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 90,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1000,
                                          "cgst": 90,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 97.94,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-240314TP09964321123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 7.47,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 83,
                                          "cgst": 7.47,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 97.94,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-240314TP09964322123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 7.47,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 83,
                                          "cgst": 7.47,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 19623.87,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-240314TP10054050123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1496.74,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 16630.39,
                                          "cgst": 1496.74,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-03-2024",
                                      "val": 97.94,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-240320TP14397796123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 7.47,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 83,
                                          "cgst": 7.47,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 295,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-240322TP14421304123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 22.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 250,
                                          "cgst": 22.5,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INDUSIND BANK LTD.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCI0123G1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 1090320,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e93bbc3dcb1344d0502024f315c858a4b3ca32065b40123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-03-2024",
                                      "inum": "INV-HB123/23-24/160",
                                      "rsn": "",
                                      "dt": "01-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 924000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 166320
                                        }
                                      ]
                                    },
                                    {
                                      "val": 744580,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37187eb2460ce5b9834957b8b70b640d3c41af3ef7b44d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "07-03-2024",
                                      "inum": "INV-HB123/23-24/162",
                                      "rsn": "",
                                      "dt": "07-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 631000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 113580
                                        }
                                      ]
                                    },
                                    {
                                      "val": 688530,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378ff183bc3efbc93aee1f3a9f326282603831234b6f21123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-HB123/23-24/163",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 583500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 105030
                                        }
                                      ]
                                    },
                                    {
                                      "val": 908600,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374650b60455fa53aea7c5530c12a1d0678d114cac1b7c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-HB123/23-24/164",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 770000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 138600
                                        }
                                      ]
                                    },
                                    {
                                      "val": 688530,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3753ee31ad7ddf7543e27c8f3c21669f7cf95b61c55ce2123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HB123/23-24/166",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 583500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 105030
                                        }
                                      ]
                                    },
                                    {
                                      "val": 744580,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37670e92730b3afab7cabebb360e0933377832c1c417bc123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HB123/23-24/167",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 631000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 113580
                                        }
                                      ]
                                    },
                                    {
                                      "val": 690536,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37bb3659d29bc01bb8f778e79c445457e61f576d11e2ad123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HB123/23-24/168",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 585200,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 105336
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HOOLI BRANDS MULTI TRADING PRIVATE LIMITED",
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCH0123M1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MOON123/BI-2324/263",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 156676,
                                          "txval": 223538,
                                          "igst": 40236.84
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MOON123/BI-2324/271",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 156684,
                                          "txval": 276421,
                                          "igst": 49755.78
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MOON123/BI-2324/336",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 156746,
                                          "txval": 242838,
                                          "igst": 43710.84
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 0,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MOON123/BI-2324/346",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 156754,
                                          "txval": 156617,
                                          "igst": 28191.06
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Moonstone Ventures LLP",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCFY0123A2ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 170826,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd376e2a69789d124d64bd0d5f9c56b6a7e00eda39da502e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "27-03-2024",
                                      "inum": "INV-SA001112123/23-24",
                                      "rsn": "",
                                      "dt": "27-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 144768,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 26058.24
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SUHAN AEROSOL",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCFS0123H1ZC"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3951,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RJ1232403AS93457123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3763,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 188
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "08ABCCI0123B1Z2"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 5505,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37437aa673fc6f28286f52b2d803cf6de51e6f90371904123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "02-03-2024",
                                      "inum": "INV-HCP123/23-24/3133",
                                      "rsn": "",
                                      "dt": "02-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 419.9,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4665.6,
                                          "cgst": 419.9,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 169181,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377d39de161db24a01a27c0bdf0a9d5f6c1cc1a0c8a936123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "02-03-2024",
                                      "inum": "INV-HCP123/23-24/3134",
                                      "rsn": "",
                                      "dt": "02-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 12903.66,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 143374,
                                          "cgst": 12903.66,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 495411,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c1969b682a5507f12eb4863a8affc75ce743a8aef4c7123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3140",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 37785.59,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 419839.84,
                                          "cgst": 37785.59,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 6198,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c9072d6d810826df1a46ce804b517287ac869853e9eb123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3141",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 472.75,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5252.8,
                                          "cgst": 472.75,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 21565,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37983b877557f2b89913af0040412d650428bf4f085862123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3142",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1644.75,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 18275.04,
                                          "cgst": 1644.75,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 222158,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3754e0223574f076958238586785a3f60580179f057aed123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3150",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 16944.23,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 188269.27,
                                          "cgst": 16944.23,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 81078,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37447c922b28015fe4c7526f1d797be9434220d52f3f52123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-HCP123/23-24/3151",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 6183.88,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 68709.76,
                                          "cgst": 6183.88,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 52607,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e6002b3395ec7f5f132a11d47ae9aaae61d871e25fa7123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "06-03-2024",
                                      "inum": "INV-HCP123/23-24/3156",
                                      "rsn": "",
                                      "dt": "06-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 4012.39,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 44582.12,
                                          "cgst": 4012.39,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 373521,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378f0b78603d1315612d49704b12ca38ff58ab945f81e3123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "06-03-2024",
                                      "inum": "INV-HCP123/23-24/3157",
                                      "rsn": "",
                                      "dt": "06-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 28488.86,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 316542.94,
                                          "cgst": 28488.86,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 336290,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd379ff55898f605de18731a56f097be8a1bc9167f880970123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "06-03-2024",
                                      "inum": "INV-HCP123/23-24/3161",
                                      "rsn": "",
                                      "dt": "06-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 25649.27,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 284991.84,
                                          "cgst": 25649.27,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 11138,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd379711521aea05d2aaf5396a7f84abdf6a80ff5cd6211c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "06-03-2024",
                                      "inum": "INV-HCP123/23-24/3162",
                                      "rsn": "",
                                      "dt": "06-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 849.53,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9439.2,
                                          "cgst": 849.53,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 38127,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd370eee5c8f16b392a5dcf727f2e5254047c387bece2d92123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "07-03-2024",
                                      "inum": "INV-HCP123/23-24/3167",
                                      "rsn": "",
                                      "dt": "07-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 2908,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 32311.14,
                                          "cgst": 2908,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 182560,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d71cd3c4f3405a47927f95b270ec05993172045ce061123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "07-03-2024",
                                      "inum": "INV-HCP123/23-24/3168",
                                      "rsn": "",
                                      "dt": "07-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 13924.04,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 154711.62,
                                          "cgst": 13924.04,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 14847,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37eadee26670b26424268323509c4f1b05e682d6e48552123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3169",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1132.38,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12582,
                                          "cgst": 1132.38,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 282633,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37baa371c8dcb3b0729ab1c0251169f3d8872e734ae1a5123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3170",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 21556.73,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 239519.13,
                                          "cgst": 21556.73,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 72271,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a77bf693407ee38a7c11994e9d7a994be81debdd21a9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3171",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 5512.22,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 61246.85,
                                          "cgst": 5512.22,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 253939,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a0d50d853ac59c5c20b07155e2880558e27c21587292123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3173",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 19368.2,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 215202.3,
                                          "cgst": 19368.2,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 2314,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3703d4e2f72aca9177fd84ab19f99f6289795824fcb942123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3174",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 176.49,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1960.98,
                                          "cgst": 176.49,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 324,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373e170cff3fb63163815f1aad60480df1ea0b333abff6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3175",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 24.7,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 274.4,
                                          "cgst": 24.7,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 17439,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d97d575a0905a3137346f1a1fb750a9d3d946561c536123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3176",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1330.06,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 14778.4,
                                          "cgst": 1330.06,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 72,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd372186f273f7be9647104062605e1b58f4e95f1ccf43bf123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "08-03-2024",
                                      "inum": "INV-HCP123/23-24/3177",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 5.47,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 60.8,
                                          "cgst": 5.47,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 13287,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3759a318f45a15a9942f0b0dd78f4de2f13e9dbb9e5631123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3180",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1013.42,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11260.2,
                                          "cgst": 1013.42,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 56166,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3768db82af1074a6baafd83e215e003bcdc3e36ace0143123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3181",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 4283.87,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 47598.6,
                                          "cgst": 4283.87,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 38612,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3766fb5aae7a2b09fe1e8558e14b581bab7f14eacc4954123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3182",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 2944.99,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 32722.2,
                                          "cgst": 2944.99,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 281370,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fe39728684e28dc007cf14875f78852203653d6bd331123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3183",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 21460.4,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 238448.7,
                                          "cgst": 21460.4,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 82482,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3723affbe08177d80d6651eea353760c3a478b3a104782123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3190",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 6291,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 69900,
                                          "cgst": 6291,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 179947,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fc3bb762e811b341a9fa859b2d8f3d6490107d5c8315123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-HCP123/23-24/3191",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 13724.8,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 152497.8,
                                          "cgst": 13724.8,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 383413,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373e1e6ef34946d9ffe8e69f50a3eebdf57b8abcbdb8f9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-HCP123/23-24/3193",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 29243.33,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 324925.86,
                                          "cgst": 29243.33,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 2881,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e55673ba957739d11a41d1d8a6d693b6923dc6887486123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-HCP123/23-24/3194",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 219.71,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2441.18,
                                          "cgst": 219.71,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 222862,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd372e68a2a4b0a3b0c0d2cece6a7db7cd1b2cb2149664a9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-HCP123/23-24/3195",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 16997.95,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 188866.17,
                                          "cgst": 16997.95,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 53211,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3703ae65075adcb9438cbabaeb688dd7d8a901e0368e72123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-HCP123/23-24/3196",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 4058.48,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 45094.21,
                                          "cgst": 4058.48,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 212003,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37312263265f47a4ecca929c28460ae3281e28bf321db8123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-HCP123/23-24/3201",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 16169.71,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 179663.4,
                                          "cgst": 16169.71,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 10724,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b7cac00ddb21ddd1d54b72ce6f094087f9b721e39565123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-HCP123/23-24/3202",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 817.96,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9088.41,
                                          "cgst": 817.96,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 141287,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd375a41a5f6697269a01c06701a1f7ecc8ef0b461b329ab123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-HCP123/23-24/3208",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 10776.1,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 119734.44,
                                          "cgst": 10776.1,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 98728,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b5218c90d96f0b96eff519430e08f4532e35bfffed63123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-HCP123/23-24/3209",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 7530.08,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 83667.5,
                                          "cgst": 7530.08,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 11448,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3786c3e03c88987a0d898504e8d75f5af7ac2f69436126123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "13-03-2024",
                                      "inum": "INV-HCP123/23-24/3211",
                                      "rsn": "",
                                      "dt": "13-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 873.18,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9702,
                                          "cgst": 873.18,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 314765,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377384270408ea7fe76424024f57d68d3d8f39d295b6ee123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "13-03-2024",
                                      "inum": "INV-HCP123/23-24/3212",
                                      "rsn": "",
                                      "dt": "13-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 24007.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 266750.12,
                                          "cgst": 24007.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 62686,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a816cf737e4255241a00a1d1d72ec73ef4f461af2881123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "13-03-2024",
                                      "inum": "INV-HCP123/23-24/3221",
                                      "rsn": "",
                                      "dt": "13-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 4781.16,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 53124,
                                          "cgst": 4781.16,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 118473,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374b12dfc2affeb7d0fee47279672e22834de72e4a795d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "13-03-2024",
                                      "inum": "INV-HCP123/23-24/3222",
                                      "rsn": "",
                                      "dt": "13-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 9036.09,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 100401,
                                          "cgst": 9036.09,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 74234,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37628609448c61d2d6905f7950bf2fb2ffa65be3b293d2123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-HCP123/23-24/3234",
                                      "rsn": "",
                                      "dt": "14-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 5661.9,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 62910,
                                          "cgst": 5661.9,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 8705,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c8f356ef8505f295e81bcdb1b057cbeab1dd3e486826123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-HCP123/23-24/3235",
                                      "rsn": "",
                                      "dt": "14-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 663.98,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 7377.5,
                                          "cgst": 663.98,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 204,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fc09989776ff7298de390bc1eba8d48dc73eefc983b9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-HCP123/23-24/3236",
                                      "rsn": "",
                                      "dt": "14-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 15.55,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 172.8,
                                          "cgst": 15.55,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 121259,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37f8042668f1a5c2a6d7b716a421eabed91c04ed821fd4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-HCP123/23-24/3237",
                                      "rsn": "",
                                      "dt": "14-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 9248.57,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 102761.94,
                                          "cgst": 9248.57,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 302768,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a8ca3d5b3f6a37ca50cca640643bc98b03eca79aa0a0123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-HCP123/23-24/3243",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 23092.44,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 256582.78,
                                          "cgst": 23092.44,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 70913,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a8fea56390bda7b1ef168103154ce11c66b7af191450123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-HCP123/23-24/3244",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 5408.64,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 60096,
                                          "cgst": 5408.64,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 31116,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c7cb1f0a85b12daad3d3756e764e1646851b156f5d24123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "15-03-2024",
                                      "inum": "INV-HCP123/23-24/3245",
                                      "rsn": "",
                                      "dt": "15-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 2373.24,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 26369.33,
                                          "cgst": 2373.24,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 190480,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd375607e3334df0463977c4c172a0985cd5c11594c8f639123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "16-03-2024",
                                      "inum": "INV-HCP123/23-24/3250",
                                      "rsn": "",
                                      "dt": "16-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 14528.17,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 161424.09,
                                          "cgst": 14528.17,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 363106,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37cbc98ada0ea86a52382d9aa7ceacdd9821ad3f1d5632123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "16-03-2024",
                                      "inum": "INV-HCP123/23-24/3252",
                                      "rsn": "",
                                      "dt": "16-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 27694.49,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 307716.57,
                                          "cgst": 27694.49,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 219497,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd371f6d44dd1a71a27688bf144be64cb757f260cc539a69123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "16-03-2024",
                                      "inum": "INV-HCP123/23-24/3260",
                                      "rsn": "",
                                      "dt": "16-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 16741.34,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 186014.79,
                                          "cgst": 16741.34,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 35415,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3746016d0eb1fa03f53349edf58235b569c7d8535838e9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3266",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 2701.15,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 30012.75,
                                          "cgst": 2701.15,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 196781,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3788b0beac6f87f1b3383a59a2180a7a55e65c9029781b123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3267",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 15008.75,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 166763.91,
                                          "cgst": 15008.75,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 24581,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d2d0b01fcc8dc34bc8be65cd1cc6c4b9c8d062e2b927123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3268",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1874.84,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20831.5,
                                          "cgst": 1874.84,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 3546,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37cbce85e61b0745e3ffe1e26baca3230109d891dd1614123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3269",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 270.43,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3004.8,
                                          "cgst": 270.43,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 142452,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37c7c6193c741b61c847a023a90ea39f3fdf080a5bb541123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-HCP123/23-24/3273",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 10865.02,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 120722.4,
                                          "cgst": 10865.02,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 20447,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373b127c4ec3a574ed265d725e5bb47ac712506d12cdc4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "19-03-2024",
                                      "inum": "INV-HCP123/23-24/3279",
                                      "rsn": "",
                                      "dt": "19-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1559.52,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 17328,
                                          "cgst": 1559.52,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 14572,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fe4150141f19ff207131d68392fa90dd268d9d92af49123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "20-03-2024",
                                      "inum": "INV-HCP123/23-24/3284",
                                      "rsn": "",
                                      "dt": "20-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1111.41,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12349,
                                          "cgst": 1111.41,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 233943,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37f04d14545799b4b055e2925cfa1e57175dcb5405d661123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "20-03-2024",
                                      "inum": "INV-HCP123/23-24/3285",
                                      "rsn": "",
                                      "dt": "20-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 17843.13,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 198256.86,
                                          "cgst": 17843.13,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 201963,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3730d48f97fb691e906b941e540122ae69175819591703123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "21-03-2024",
                                      "inum": "INV-HCP123/23-24/3291",
                                      "rsn": "",
                                      "dt": "21-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 15403.96,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 171155.04,
                                          "cgst": 15403.96,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 11977,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378d8f9af52ad4d65496ed49c0da25228d79150cf36ceb123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "22-03-2024",
                                      "inum": "INV-HCP123/23-24/3299",
                                      "rsn": "",
                                      "dt": "22-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 913.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10150,
                                          "cgst": 913.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 155969,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37ccc749d81b8529d2a5c6e458e5257756db926b47bd46123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "22-03-2024",
                                      "inum": "INV-HCP123/23-24/3300",
                                      "rsn": "",
                                      "dt": "22-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 11895.93,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 132177.01,
                                          "cgst": 11895.93,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 48569,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3773d5e861de35fd0876a826a3acdabf851a7dd36c54a8123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "22-03-2024",
                                      "inum": "INV-HCP123/23-24/3301",
                                      "rsn": "",
                                      "dt": "22-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 3704.4,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 41160,
                                          "cgst": 3704.4,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 183929,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fe07c7ee67687bee7ea7f141c885dd0d3668785f68f6123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "23-03-2024",
                                      "inum": "INV-HCP123/23-24/3305",
                                      "rsn": "",
                                      "dt": "23-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 14028.48,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 155871.94,
                                          "cgst": 14028.48,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 429,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37506ef5d9b419955f23965158fd8e7fe450e3f4be8e88123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "23-03-2024",
                                      "inum": "INV-HCP123/23-24/3306",
                                      "rsn": "",
                                      "dt": "23-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 32.72,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 363.58,
                                          "cgst": 32.72,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 140628,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37877a8f13e4827488071dbf5c9de8a921aeb484fe3309123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "24-03-2024",
                                      "inum": "INV-HCP123/23-24/3319",
                                      "rsn": "",
                                      "dt": "24-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 10725.87,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 119176.33,
                                          "cgst": 10725.87,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 13116,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373e15b438c4a83160e8a5c2136f5824b38a370de902aa123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "28-03-2024",
                                      "inum": "INV-HCP123/23-24/3327",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1000.36,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11115.16,
                                          "cgst": 1000.36,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 155032,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37452b1e2020980e2ee21a66a469d47c532f8e14b0c388123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "28-03-2024",
                                      "inum": "INV-HCP123/23-24/3328",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 11824.44,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 131382.72,
                                          "cgst": 11824.44,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HCP WELLNESS PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCH0123H1ZK"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 3289,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-AMD2123-1056318",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 250.86,
                                          "rt": 18,
                                          "num": 726,
                                          "txval": 2787.28,
                                          "cgst": 250.86,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "CLICKTECH RETAIL PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCC0123E1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MH1232403EG89123123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2857,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 143
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 7260,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MH1232403EH12621123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6914,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 346
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 200,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MH1232403EH73006123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 190,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 10
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 3242,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MH1232403EH92360123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3088,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 154
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 2605,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MH1232403EI43390123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2481,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 124
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 5792,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MH1232403EI91048123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5516,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 276
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 7474,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MH1232403EJ37610123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 7118,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 356
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCI0123B1Z2"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 130976.76,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3724e885490bda465c3335ee9ae661d55b2e716030c3ca123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "19-03-2024",
                                      "inum": "INV-CRT123/2324/6531",
                                      "rsn": "",
                                      "dt": "19-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 110997.25,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 19979.51
                                        }
                                      ]
                                    },
                                    {
                                      "val": 24284.4,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd371a29be512cde9ce3d672e743127827adfee75def540c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "13-03-2024",
                                      "inum": "INV-LAB123/2324/6411",
                                      "rsn": "",
                                      "dt": "13-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20580,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3704.4
                                        }
                                      ]
                                    },
                                    {
                                      "val": 50179.5,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a14c144f0da005e34a254006dd04515e00cef5b90b9e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "26-03-2024",
                                      "inum": "INV-LAB123/2324/6689",
                                      "rsn": "",
                                      "dt": "26-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 42525,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7654.5
                                        }
                                      ]
                                    },
                                    {
                                      "val": 54193.86,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd373df8bccf4afbc2190138b70e107ea048d402d929a905123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "30-03-2024",
                                      "inum": "INV-LAB123/2324/6805",
                                      "rsn": "",
                                      "dt": "30-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 45927,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 8266.86
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SAI PACKAGING COMPANY",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCCS0123L1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 6720,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-FM1598BIL0005631123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 360,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 6000,
                                          "cgst": 360,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 6300,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-FM1598BIL0005632123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 337.5,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 5625,
                                          "cgst": 337.5,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S MAYFAIR HOTELS & RESORTS LTD.",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "21ABCCM0123E1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-02-2024",
                                      "val": 2820198,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1905123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 55956.3,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2238252,
                                          "cgst": 55956.3,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "13-02-2024",
                                      "val": 88200,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1906123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2000,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 80000,
                                          "cgst": 2000,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BEST VOYAGE PRIVATE LIMITED",
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "ctin": "24ABCCB0123F1Z2"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 214666,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37d4b4cb5458892a0c81148e4e8de052c36709ee81431c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-GST123/21997/2324",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 181920,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 32745.6
                                        }
                                      ]
                                    },
                                    {
                                      "val": 2011,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37a1fe3a3fc4044dffb7afb6c25c916524e717677f6726123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "28-03-2024",
                                      "inum": "INV-GST123/22819/2324",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1704,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 306.72
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ANTRAWEB TECHNOLOGIES PVT LTD",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCA0123A1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 231280,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-188123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 206500,
                                          "cess": 0,
                                          "igst": 24780
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "YES CARGO LOGISTICS",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "08ABCPK0123J1ZA"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-3305123/2324",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-3916123/2324",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "DEV DISTRIBUTIONS LLP",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "36ABCFD0123D1ZE"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 4956,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-4471123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4200,
                                          "cess": 0,
                                          "igst": 756
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TARUN KALRA  BROTHERS",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "02ABCPK0123B1Z6"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 29500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fadac582b1488a5f852cfe9fdb23bbd39b183d55c17a123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-DISP123/558",
                                      "rsn": "",
                                      "dt": "31-01-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4500
                                        }
                                      ]
                                    },
                                    {
                                      "val": 29500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37242026810d2dc7216dc47ad0f8135e875a270d9de9e4123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-DISP123/559",
                                      "rsn": "",
                                      "dt": "31-01-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4500
                                        }
                                      ]
                                    },
                                    {
                                      "val": 29500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd371d21db79d169f040ac3ee649ba3fb839451f0e24016c123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-DISP123/603",
                                      "rsn": "",
                                      "dt": "31-01-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4500
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BEAUTY CENTRE",
                                  "supfildt": "25-03-2024",
                                  "supprd": "012024",
                                  "ctin": "27ABCFB0123J1ZR"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 7080,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-4992123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cess": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "IQBAL SINGH KHUSHAL SINGH",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "03ABCFI0123E1ZM"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 285560,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37e0debd364831f3e92812526c24b18d3155dcffe60082123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-2023123-24/120",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 242000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 43560
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ADZ2LEAD MEDIA PRIVATE LIMITED",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCA0123B1ZM"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 708.36,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd371f8908ad1b50c9ba65e4b2e12e93f9a704d23fb41187123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "02-03-2024",
                                      "inum": "INV-C24E232400083086123",
                                      "rsn": "",
                                      "dt": "02-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 54.03,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 600.3,
                                          "cgst": 54.03,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "JIO PLATFORMS LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCJ0123N1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "26-03-2024",
                                      "val": 1988.65,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "32",
                                      "typ": "R",
                                      "inum": "INV-R201338223123-00641",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 106.53,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1775.59,
                                          "cgst": 106.53,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "TREEBO HOTELS",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "32ABCCR0123R1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 29500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37bb3723de9ac1098abf9480c73929e106124065ccfc9d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "07-03-2024",
                                      "inum": "INV-KTL123/2023-24/580",
                                      "rsn": "",
                                      "dt": "21-02-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4500
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Kofluence Tech Private Limited",
                                  "supfildt": "12-03-2024",
                                  "supprd": "022024",
                                  "ctin": "29ABCCK0123H1ZU"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 358740.04,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd372518537d3edc19d4d5bd0e3ae7a2d514f6b4077a8ec9123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "01-04-2024",
                                      "inum": "INV-4939927617123",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 304016.98,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 54723.06
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Google India Digital Services Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "36ABCCG0123L1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 82706,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-506123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 6308.1,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 70090,
                                          "cgst": 6308.1,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 13924,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-507123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1062,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11800,
                                          "cgst": 1062,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-03-2024",
                                      "val": 45371,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-516123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3460.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 38450,
                                          "cgst": 3460.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-03-2024",
                                      "val": 38987,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-517123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2973.6,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 33040,
                                          "cgst": 2973.6,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-03-2024",
                                      "val": 70412,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-519123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5370.39,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 59671,
                                          "cgst": 5370.39,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "10-03-2024",
                                      "val": 17700,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-520123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1350,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15000,
                                          "cgst": 1350,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 99710,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-533123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 7605,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 84500,
                                          "cgst": 7605,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 48144,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-536123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3672,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 40800,
                                          "cgst": 3672,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 50412,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-537123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3844.98,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 42722,
                                          "cgst": 3844.98,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 77998,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-539123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5949,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 66100,
                                          "cgst": 5949,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 18585,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-540123-23/24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 1417.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15750,
                                          "cgst": 1417.5,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "PERFECT PACKAGING",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPD0123G1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "27-01-2024",
                                      "val": 1512,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-5193123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1350,
                                          "cess": 0,
                                          "igst": 162
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-02-2024",
                                      "val": 1512,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-5449123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1350,
                                          "cess": 0,
                                          "igst": 162
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-02-2024",
                                      "val": 1512,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-5456123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1350,
                                          "cess": 0,
                                          "igst": 162
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-01-2024",
                                      "val": 536,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-685123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 510,
                                          "cess": 0,
                                          "igst": 25.5
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-02-2024",
                                      "val": 557,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-804123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 530,
                                          "cess": 0,
                                          "igst": 26.5
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-02-2024",
                                      "val": 507,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-805123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 483,
                                          "cess": 0,
                                          "igst": 24.15
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HOTEL CRYSTAL",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "08ABCFH0123Q1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 169017,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/318/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 143235,
                                          "cess": 0,
                                          "igst": 25782.3
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-03-2024",
                                      "val": 6183,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/334/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 5240,
                                          "cess": 0,
                                          "igst": 943.2
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 43500,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/341/23-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 36864,
                                          "cess": 0,
                                          "igst": 6635.52
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S GOODNESS OF NATURE",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPM0123N1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 229371,
                                      "rev": "Y",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37eca5bede900ce191e65b3cf28d35d23c9f96ba43239f123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "16-03-2024",
                                      "inum": "INV-NOI2324B07990123",
                                      "rsn": "",
                                      "dt": "16-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 229371,
                                          "cgst": 0,
                                          "igst": 41287
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "KHAITAN & CO LLP",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCFK0123H1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-01-2024",
                                      "val": 74322,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-MWi123-0330",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5668.65,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 62985,
                                          "cgst": 5668.65,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "MAGIK WINGS",
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPS0123H1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "08-03-2024",
                                      "val": 21240,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SDE123-01366",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 18000,
                                          "cess": 0,
                                          "igst": 3240
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SRI DURGA ENTERPRISES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCPV0123M1ZS"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "03-03-2024",
                                      "val": 5310,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-4123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 4500,
                                          "cess": 0,
                                          "igst": 810
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S HONEY TRADERS",
                                  "supfildt": "08-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPA0123C1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 65927,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/07",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 55870,
                                          "igst": 10056.6
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Raghunath Associates",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "23ABCPD0123J1Z9"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 4602,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37b3dd9af000152081c2ee496a7606302616d453859a7e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "07-03-2024",
                                      "inum": "INV-IT123/23-24/5522",
                                      "rsn": "",
                                      "dt": "07-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 351,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3900,
                                          "cgst": 351,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 6903,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3708291a2cfd1bdb4e89f0718f7d947fb49206fece311d123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "14-03-2024",
                                      "inum": "INV-IT123/23-24/5635",
                                      "rsn": "",
                                      "dt": "14-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 526.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5850,
                                          "cgst": 526.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 50882,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd374a2714e255e33eabf6e7011b920c316b903995aa671a123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "27-03-2024",
                                      "inum": "INV-IT123/23-24/5838",
                                      "rsn": "",
                                      "dt": "27-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 3880.8,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 43120,
                                          "cgst": 3880.8,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 14538,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378f6e131963fdee71044f2629dc3b8bdf633fb6f0f174123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "29-03-2024",
                                      "inum": "INV-IT123/23-24/5900",
                                      "rsn": "",
                                      "dt": "29-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1108.8,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 12320,
                                          "cgst": 1108.8,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "IMAGE TECH",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCFI0123Q1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 369678,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37fa02625eab9f35ee6bcd35e73219598d6fddeb3c2ef7123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "18-03-2024",
                                      "inum": "INV-433123",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 313286.4,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 56391.55
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S SHREE BALAJI HERBO LABS",
                                  "supfildt": "04-04-2024",
                                  "supprd": "032024",
                                  "ctin": "05ABCFS0123F1Z2"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 377600,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd370cf68c1199171fe05f738ba4abeb9a26713c2a4f5bf3123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "12-03-2024",
                                      "inum": "INV-INV123-2324-7361",
                                      "rsn": "",
                                      "dt": "12-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 320000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 57600
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "POCKET ACES PICTURES PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCP0123D1ZQ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 182900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RC123/2023-24/076",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 13950,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 155000,
                                          "cgst": 13950,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 41279,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RC123/2023-24/077",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 3148.38,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 34982,
                                          "cgst": 3148.38,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "8 SENSE",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCPM0123Q1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 560224,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ZED123-051",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 500200,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 60024
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 81984,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-ZED123-052",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 73200,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 8784
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "E COMM",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPP0123R1ZS"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "20-01-2024",
                                      "val": 36816,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1196123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 31200,
                                          "cess": 0,
                                          "igst": 5616
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-02-2024",
                                      "val": 29453,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1208123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 24960,
                                          "cess": 0,
                                          "igst": 4492.8
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-02-2024",
                                      "val": 47124,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1214123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 39936,
                                          "cess": 0,
                                          "igst": 7188.48
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 75105,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1230123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 63648,
                                          "cess": 0,
                                          "igst": 11456.64
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S TAJ BRUSH INDUSTRIES",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPA0123E1Z4"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 118000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd370a54e79f245a35328f1a7860cfe04631bccf99926ed1123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "04-03-2024",
                                      "inum": "INV-1DS123/23-24/424",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 100000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 18000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "EGROWTH TECHNOLOGIES LLP",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCFE0123F1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "03-03-2024",
                                      "val": 5900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/23-24/1066",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S BHATIA & SONS",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPB0123E1Z0"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 7080,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-RLH123/23-24/2586",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6000,
                                          "cess": 0,
                                          "igst": 1080
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RLH ENTERPRISES",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCFR0123J1ZN"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-02-2024",
                                      "val": 39648,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/064",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 33600,
                                          "cess": 0,
                                          "igst": 6048
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-02-2024",
                                      "val": 19824,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/065",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 16800,
                                          "cess": 0,
                                          "igst": 3024
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-02-2024",
                                      "val": 39648,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/067",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 33600,
                                          "cess": 0,
                                          "igst": 6048
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "14-02-2024",
                                      "val": 41347.2,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-23123-24/068",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 35040,
                                          "cess": 0,
                                          "igst": 6307.2
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "BRITO PLAST",
                                  "supfildt": "08-04-2024",
                                  "supprd": "022024",
                                  "ctin": "27ABCFB0123J1ZH"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 46586,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37764abca0cc1fb11c466308fd45e478b8eec28a832873123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "09-03-2024",
                                      "inum": "INV-902123/24501277",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 39480,
                                          "cgst": 0,
                                          "igst": 7106.4
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AG POLY PACKS PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCA0123K1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 1762.94,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-R161885523123-00298",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 94.44,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1574.06,
                                          "cgst": 94.44,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "Ruptub Solutions Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "21ABCCR0123R1Z3"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 142780,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd377859cb70a64234277d3d81858873d9a53e9169d570e8123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "05-03-2024",
                                      "inum": "INV-23242401107814123",
                                      "rsn": "",
                                      "dt": "04-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 10890,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 121000,
                                          "cgst": 10890,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "val": 543,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd37044f22962f10f5c6c4c9cf953896bfbd607e82aa8d05123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "28-03-2024",
                                      "inum": "INV-23242401108061123",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 42,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 459,
                                          "cgst": 42,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "VR Surat Private Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCD0123R1ZZ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "30-03-2024",
                                      "val": 2279,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IBLR240300127340123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2170.48,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 108.52
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AIX CONNECT PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCA0123P1ZJ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "09-01-2024",
                                      "val": 4366,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GO1865123/2023-2024",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 3700,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 666
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-02-2024",
                                      "val": 3540,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GO2025123/2023-2024",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 3000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 540
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "08-03-2024",
                                      "val": 3540,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GO2115123/2023-2024",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 3000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 540
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "J.V. ENTERPRISES",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "03ABCPK0123B1ZI"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 13435,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-272412BP03AAF888123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 12121,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 606
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 1000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-272412BP03AAR625123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 952,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 48
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCCN0123P1ZP"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 31860,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-DNS123/23-24/06",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 27000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4860
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-03-2024",
                                      "val": 382683,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3005",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 324307.6,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 58375.36
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-03-2024",
                                      "val": 509485,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3006",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 431767,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 77718.06
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "01-03-2024",
                                      "val": 378722,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3007",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 320950.65,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 57771.11
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 157268,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3028",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 133278.24,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 23990.08
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 270358,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3029",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 229116.96,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 41241.05
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 323098,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3030",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 273811.9,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 49286.14
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 574044,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3031",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 486478.16,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 87566.07
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 1983146,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3035",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1680632,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 302513.76
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6025,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3037",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5105.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 919.04
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 451068,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3042",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 382260.64,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 68806.92
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 548924,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3043",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 465190,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 83734.2
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 815147,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3044",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 690802.28,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 124344.41
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 299535,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3054",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 253843,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 45691.74
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 39128,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3055",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 33159.2,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 5968.66
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 2168,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3056",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1837.08,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 330.67
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 805256,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3057",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 682420.72,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 122835.73
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 513730,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3064",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 435364.2,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 78365.56
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 52931,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3065",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 44856.72,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 8074.21
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 40553,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3066",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 34366.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 6186.02
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 366513,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3075",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 310604.01,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 55908.72
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 135339,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3076",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 114694.4,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 20644.99
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 50507,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3089",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 42802.24,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7704.4
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 426148,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3090",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 361142.4,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 65005.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-03-2024",
                                      "val": 3083,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3091",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2612.64,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 470.28
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 931237,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3098",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 789184.03,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 142053.13
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 957178,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3099",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 811168,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 146010.24
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 219835,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3100",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 186300.64,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 33534.12
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 377213,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3101",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 318400.5,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 57312.09
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-03-2024",
                                      "val": 809470,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3109",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 685991.84,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 123478.53
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "12-03-2024",
                                      "val": 932097,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3110",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 789912.64,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 142184.28
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "15-03-2024",
                                      "val": 377483,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3130",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 319900.5,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 57582.09
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 1052402,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3136",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 891866.4,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 160535.95
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 448901,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3146",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 380424.76,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 68476.45
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 36614,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3147",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 31029.12,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 5585.25
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 6155,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3148",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5215.68,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 938.82
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 2123263,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3150",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1799375.04,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 323887.51
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-03-2024",
                                      "val": 355474,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3157",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 301249.24,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 54224.86
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-03-2024",
                                      "val": 665755,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3158",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 564199.04,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 101555.83
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-03-2024",
                                      "val": 227912,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3159",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 193146,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 34766.28
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 995603,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3179",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 843731.26,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 151871.63
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 55836,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3180",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 47319.04,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 8517.43
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "22-03-2024",
                                      "val": 31907,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3181",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 27040,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4867.2
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 394729,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3187",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 334516,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 60212.88
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 104563,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3192",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 88612.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 15950.3
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 24627,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3193",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20870,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3756.6
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 18811,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3194",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15941.72,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2869.51
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 58489,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3195",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 49567.2,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 8922.1
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "23-03-2024",
                                      "val": 66974,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3196",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 56757.6,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 10216.37
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 672004,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3198",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 569494.72,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 102509.05
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 243644,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3199",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 206477.6,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 37165.97
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 1996019,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3200",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1691541.21,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 304477.42
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 434887,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3204",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 368548,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 66338.64
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 2513483,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3205",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2130070,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 383412.6
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 5393674,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3207",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4570910,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 822763.79
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 805114,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3208",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 682300,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 122814
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "27-03-2024",
                                      "val": 2132614,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3209",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1807300,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 325314.01
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 131091,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3211",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 111094.4,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 19996.99
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 383341,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3212",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 324865.12,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 58475.72
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 745325,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3213",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 631631.2,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 113693.62
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 2682,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3214",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2272.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 409.1
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 471567,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3224",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 399632.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 71933.9
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 19408,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3231",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 16447.2,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2960.5
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 94101,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TPP123/23-24/3232",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 79746.56,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 14354.38
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "THE PACK PARTNERS",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "06ABCFT0123N1ZF"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "22-02-2024",
                                      "val": 2366,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "09",
                                      "typ": "R",
                                      "inum": "INV-RR123-5965",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 126.75,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 2112.5,
                                          "cgst": 126.75,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S  RADICAL PALACE",
                                  "supfildt": "15-03-2024",
                                  "supprd": "022024",
                                  "ctin": "09ABCCR0123P1ZL"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "29-03-2024",
                                      "val": 118000,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-30123/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 100000,
                                          "igst": 18000
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HIGHINTOWN MEDIA",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCFH0123C1ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 101141,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/82/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 7714.13,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 85712.5,
                                          "cgst": 7714.13,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "20-03-2024",
                                      "val": 192126,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/85/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 12270.38,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 136337.5,
                                          "cgst": 12270.38,
                                          "cess": 0
                                        },
                                        {
                                          "sgst": 744,
                                          "rt": 5,
                                          "num": 2,
                                          "txval": 29760,
                                          "cgst": 744,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 251207,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/90/2023-24",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 6827.63,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 75862.5,
                                          "cgst": 6827.63,
                                          "cess": 0
                                        },
                                        {
                                          "sgst": 3849.75,
                                          "rt": 5,
                                          "num": 2,
                                          "txval": 153990,
                                          "cgst": 3849.75,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "ACCURATE PRINTERS",
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCHC0123N1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "29-03-2024",
                                      "val": 346920,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-JSR123/23-24/62",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 294000,
                                          "cess": 0,
                                          "igst": 52920
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "JSR SOLUTIONS",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCPA0123P2Z4"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 10022,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FM3197BIL0006520123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 536.91,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 8948.43,
                                          "cgst": 536.91,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 333,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-FM3197BIL0006521123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 7.93,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 317.14,
                                          "cgst": 7.93,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AMBROSIA",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCS0123J3ZY"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 68322,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TI123/2024/03/2781",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 5211,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 57900,
                                          "cgst": 5211,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "26-03-2024",
                                      "val": 80074.8,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-TI123/2024/03/2995",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 6107.4,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 67860,
                                          "cgst": 6107.4,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "PRINT VISION PVT LTD.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "24ABCCP0123M1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "23-03-2024",
                                      "val": 108890.4,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-OI123/23-24/0383",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 92280,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 16610.4
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "VERSION NEXT & OJAS INDUSTRIES",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "27ABCPB0123A1ZV"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 212400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1019956029123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 180000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 32400
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 212400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1060077334123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 180000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 32400
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 212400,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-1060077848123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 180000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 32400
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "LULU INTERNATIONAL SHOPPING MALLS PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "32ABCCL0123H1ZB"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "03-03-2024",
                                      "val": 47849,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IT123/A/1229",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 40550,
                                          "cess": 0,
                                          "igst": 7299
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 75579,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IT123/A/1230",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 64050,
                                          "cess": 0,
                                          "igst": 11529
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 51035,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IT123/A/1416",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 43250,
                                          "cess": 0,
                                          "igst": 7785
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 85078,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IT123/A/1417",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 72100,
                                          "cess": 0,
                                          "igst": 12978
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "INNTHINK TECHNOLOGIES PRIVATE LIMITED",
                                  "supfildt": "05-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCCI0123A1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "08-02-2024",
                                      "val": 105,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-BRS20235133123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 2.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 100,
                                          "cgst": 2.5,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-02-2024",
                                      "val": 31.5,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-BRS20235149123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 0.75,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 30,
                                          "cgst": 0.75,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-02-2024",
                                      "val": 52.5,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-BRS20235151123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 1.25,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 50,
                                          "cgst": 1.25,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "09-02-2024",
                                      "val": 2651.48,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "05",
                                      "typ": "R",
                                      "inum": "INV-FO20233771123",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 142.04,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 2367.4,
                                          "cgst": 142.04,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HOTEL LEMON PARK",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "05ABCPM0123F3ZQ"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "24-01-2024",
                                      "val": 2128,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "10",
                                      "typ": "R",
                                      "inum": "INV-1826123/23-24",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 114,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 1900,
                                          "cgst": 114,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-02-2024",
                                      "val": 3763.2,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "10",
                                      "typ": "R",
                                      "inum": "INV-SR123/000201/23-24",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 201.6,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 3360,
                                          "cgst": 201.6,
                                          "cess": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "19-03-2024",
                                      "val": 2016,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "10",
                                      "typ": "R",
                                      "inum": "INV-SR123/000433/23-24",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 108,
                                          "rt": 12,
                                          "num": 1201,
                                          "txval": 1800,
                                          "cgst": 108,
                                          "cess": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "HOTEL SRIYASH REGENCY",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "ctin": "10ABCCJ0123L3ZH"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "18-03-2024",
                                      "val": 763.22,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-IN20230500005550123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 646.8,
                                          "cess": 0,
                                          "igst": 116.42
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "SPENCER'S RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "05ABCCR0123J1ZK"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 2398.99,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd378d4b36676c1b8d10b1c6ef103c5008c28c9212d7ef0e123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-QSYX123-155448",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2033.05,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 365.94
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "GREENS INDUSTRIES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "32ABCFG0123J1ZK"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "05-01-2024",
                                      "val": 2006,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-A001088123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1700,
                                          "cess": 0,
                                          "igst": 306
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "16-02-2024",
                                      "val": 4956,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-A001308123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4200,
                                          "cess": 0,
                                          "igst": 756
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 4956,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-A001411123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4200,
                                          "cess": 0,
                                          "igst": 756
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 5310,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-A001421123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4500,
                                          "cess": 0,
                                          "igst": 810
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "OM ENTERPRISES PROP. SH. OM PARKASH",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "02ABCPP0123E1ZD"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "29-03-2024",
                                      "val": 5900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BD000540123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BD000541123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 5900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BD000547123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BD000548123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 5900,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-BD000549123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "APEX TRADING FIRM",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "ctin": "09ABCPG0123N2ZS"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 1830.08,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-6316123/23-24",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 98.04,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1634,
                                          "cgst": 98.04,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "17-03-2024",
                                      "val": 1830.08,
                                      "rev": "N",
                                      "itcavl": "N",
                                      "diffprcnt": 1,
                                      "pos": "21",
                                      "typ": "R",
                                      "inum": "INV-6373123/23-24",
                                      "rsn": "P",
                                      "items": [
                                        {
                                          "sgst": 98.04,
                                          "rt": 12,
                                          "num": 1,
                                          "txval": 1634,
                                          "cgst": 98.04,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "CHAKADOLA ESTATES PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "21ABCCC0123R1ZN"
                                },
                                {
                                  "inv": [
                                    {
                                      "val": 34810,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "irn": "abc12yhd3778ae971cfafda0b47f7e5e9f43c3f87397b4571ecec8123abc6xyz",
                                      "typ": "R",
                                      "irngendate": "11-03-2024",
                                      "inum": "INV-12347123",
                                      "rsn": "",
                                      "dt": "11-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 29500,
                                          "cgst": 0,
                                          "igst": 5310
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "R K TRADERS",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "07ABCPV0123Q1ZT"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 3540,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-R55123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3000,
                                          "cess": 0,
                                          "igst": 540
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 7906,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-R63123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 6700,
                                          "cess": 0,
                                          "igst": 1206
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "AK ENTERPRISES",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "03ABCFA0123H1Z6"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "30-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SK23010721123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SK23010722123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SK23010723123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 11800,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-SK23010724123",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1800
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "M/S S K ENTERPRISES",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "ctin": "05ABCPK0123E1ZI"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 10620,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/DIS/031",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1620
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 10620,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-GST123/DIS/032",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1620
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "DILIP INTERNATIONAL",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "19ABCHR0123M1ZN"
                                },
                                {
                                  "inv": [
                                    {
                                      "dt": "12-03-2024",
                                      "val": 2362284.48,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KAIN2023123-77601",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 183996,
                                          "txval": 2001936,
                                          "cgst": 0,
                                          "igst": 360348.48
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 22542753.04,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KAIN2023123-78381",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 184830,
                                          "txval": 19104028,
                                          "cgst": 0,
                                          "igst": 3438725.04
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 17638562.12,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KAIN2023123-78382",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 184831,
                                          "txval": 14947934,
                                          "cgst": 0,
                                          "igst": 2690628.12
                                        }
                                      ]
                                    },
                                    {
                                      "dt": "18-03-2024",
                                      "val": 2385287.4,
                                      "rev": "N",
                                      "itcavl": "Y",
                                      "diffprcnt": 1,
                                      "pos": "24",
                                      "typ": "R",
                                      "inum": "INV-KAIN2023123-78383",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 184832,
                                          "txval": 2021430,
                                          "cgst": 0,
                                          "igst": 363857.4
                                        }
                                      ]
                                    }
                                  ],
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "ctin": "29ABCCR0123M2ZY"
                                }
                              ],
                              "cdnr": [
                                {
                                  "trdnm": "Interglobe Aviation Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4311,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO16231123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4106,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 205
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4061,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO16252123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3868,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 193
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4061,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO17783123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3868,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 193
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 4311,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO22117123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4106,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 205
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 4461,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO22436123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3868,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 193
                                        },
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 339,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 61
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 5005,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO23681123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4386,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 219
                                        },
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 339,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 61
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 4311,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO23770123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4106,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 205
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 400,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO27386123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 339,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 61
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 4605,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDL2232403AO33604123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4386,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 219
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "07ABCCI0123B1Z4"
                                },
                                {
                                  "trdnm": "CRESCENT INC",
                                  "supfildt": "18-03-2024",
                                  "supprd": "022024",
                                  "nt": [
                                    {
                                      "dt": "20-04-2023",
                                      "val": 280,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTAMD2123-5719",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 237.29,
                                          "igst": 42.71
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCPL0123L2Z0"
                                },
                                {
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3268,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE20943123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 78,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3112,
                                          "cgst": 78,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 7930,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21109123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 189,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 7552,
                                          "cgst": 189,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6583,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21142123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 145,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5793,
                                          "cgst": 145,
                                          "cess": 0,
                                          "igst": 0
                                        },
                                        {
                                          "sgst": 38,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 424,
                                          "cgst": 38,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6064,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21187123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 144,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5776,
                                          "cgst": 144,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5641,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21335123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 134.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5372,
                                          "cgst": 134.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3268,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21420123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 78,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3112,
                                          "cgst": 78,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 7880,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21433123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 187.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 7505,
                                          "cgst": 187.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4153,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21537123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 99,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3955,
                                          "cgst": 99,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3610,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21629123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 86,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3438,
                                          "cgst": 86,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 11649,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21809123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 265.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 10618,
                                          "cgst": 265.5,
                                          "cess": 0,
                                          "igst": 0
                                        },
                                        {
                                          "sgst": 38,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 424,
                                          "cgst": 38,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5172,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE21849123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 113.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4545,
                                          "cgst": 113.5,
                                          "cess": 0,
                                          "igst": 0
                                        },
                                        {
                                          "sgst": 30.5,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 339,
                                          "cgst": 30.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 8306,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE22022123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 198,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 7910,
                                          "cgst": 198,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 3268,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE22200123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 78,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3112,
                                          "cgst": 78,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 3610,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE22888123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 86,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3438,
                                          "cgst": 86,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 3610,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE23738123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 86,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3438,
                                          "cgst": 86,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 3108,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE25475123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 74,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2960,
                                          "cgst": 74,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "16-03-2024",
                                      "val": 16620,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ2232403AE38677123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 386.5,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 15447,
                                          "cgst": 386.5,
                                          "cess": 0,
                                          "igst": 0
                                        },
                                        {
                                          "sgst": 30.5,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 339,
                                          "cgst": 30.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCCI0123B1Z8"
                                },
                                {
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5979,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTKL2232403AC90252123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5694,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 285
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "32ABCCI0123B1ZB"
                                },
                                {
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "val": 109841.44,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTKA123-C-24-1588329",
                                      "irn": "abc12yhd37a438a596d035ff21def135543ef9f0fbe803c645be12123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "02-04-2024",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 93086.13,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 16755.31
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 10037.92,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTKA123-C-24-1655481",
                                      "irn": "abc12yhd37dac2f879802a21e737b29eb96a7b55d63aada1aa6a92123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "02-04-2024",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 8506.79,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1531.13
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "29ABCCA0123J1ZE"
                                },
                                {
                                  "trdnm": "K MANOHAR THE BAG MART",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "val": 6608,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN17123/23-24",
                                      "irn": "abc12yhd372e47561e5d6563de6e2cbe3da830588131c6cba390b7123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "18-03-2024",
                                      "rsn": "",
                                      "dt": "16-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 504,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5600,
                                          "cgst": 504,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCPL0123J1ZB"
                                },
                                {
                                  "trdnm": "RK WORLDINFOCOM PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 9945.4,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTTSCN2023123-7685",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1665,
                                          "txval": 8428.3,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1517.1
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 1787.93,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTTSCN2023123-7686",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1666,
                                          "txval": 1515.2,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 272.73
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "36ABCCR0123M3Z2"
                                },
                                {
                                  "trdnm": "VELVET GROOMING PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 119735,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT194123/2023-24",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 101470,
                                          "cess": 0,
                                          "igst": 18264.6
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 31860,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT195123/2023-24",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 27000,
                                          "cess": 0,
                                          "igst": 4860
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 76700,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT196123/2023-24",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 65000,
                                          "cess": 0,
                                          "igst": 11700
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "30-03-2024",
                                      "val": 795096,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT205123/2023-24",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 2,
                                          "txval": 19087.12,
                                          "cess": 0,
                                          "igst": 954.36
                                        },
                                        {
                                          "rt": 18,
                                          "num": 3,
                                          "txval": 656826.02,
                                          "cess": 0,
                                          "igst": 118228.73
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "07ABCCV0123Q1ZK"
                                },
                                {
                                  "trdnm": "M/S  INTERGLOBE AVIATION LIMTED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4452,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTUP2232403AD77885123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4240,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 212
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "09ABCCI0123B1Z0"
                                },
                                {
                                  "trdnm": "TATA AIG GENERAL INSURANCE COMPANY LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 147454.65,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGU23C00000006771123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 11246.54,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 124961.57,
                                          "cgst": 11246.54,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCCT0123Q1Z2"
                                },
                                {
                                  "trdnm": "HOOLI BRANDS MULTI TRADING PRIVATE LIMITED",
                                  "supfildt": "06-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "05-03-2024",
                                      "val": 4743.6,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT10123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 4020,
                                          "igst": 723.6
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 85836.74,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT9123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1800,
                                          "txval": 72743,
                                          "igst": 13093.74
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCCH0123M1Z9"
                                },
                                {
                                  "trdnm": "RELIANCE RETAIL LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 541.13,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0401123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 458.58,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 82.55
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 500.49,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0402123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 424.14,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 76.35
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 454.48,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0403123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 385.16,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 69.32
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 451.94,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0404123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 383.01,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 68.93
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 447.8,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0405123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 379.49,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 68.31
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 248.62,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0406123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 210.69,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 37.93
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 112.52,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0407123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 95.36,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 17.16
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 47.27,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0408123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 40.06,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7.21
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "25-03-2024",
                                      "val": 28.32,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0409123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 24,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.32
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "25-03-2024",
                                      "val": 28.32,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0410123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 24,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.32
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "25-03-2024",
                                      "val": 28.32,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0411123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 24,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.32
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "25-03-2024",
                                      "val": 28.32,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0412123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 24,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.32
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "25-03-2024",
                                      "val": 18.88,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0413123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 16,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2.88
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 49.42,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0414123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 41.88,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7.54
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 238.75,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0415123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 202.33,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 36.42
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 614.63,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0416123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 520.87,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 93.76
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 331.28,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0417123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 280.74,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 50.54
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 242.22,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0418123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 205.27,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 36.95
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 627.86,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0419123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 532.09,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 95.77
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 294.36,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0420123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 249.46,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 44.9
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 958.92,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0421123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 812.65,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 146.27
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 229.5,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0422123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 194.49,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 35.01
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 377.41,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0423123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 319.84,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 57.57
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 470.51,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0424123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 398.74,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 71.77
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 181.45,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0425123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 153.77,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 27.68
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 832.75,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0426123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 705.72,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 127.03
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 764.83,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0427123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 648.16,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 116.67
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 356.17,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0428123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 301.84,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 54.33
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 397.43,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0429123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 336.81,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 60.62
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 519.79,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRC27H76L5SD0430123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 440.5,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 79.29
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 23.6,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0125123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 20,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3.6
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 29.5,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0126123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.5
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 84.96,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0127123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 72,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 12.96
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 28.32,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0128123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 24,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.32
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 41.3,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0129123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 35,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 6.3
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 51.92,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0130123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 44,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7.92
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 47.2,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0131123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 40,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7.2
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 29.5,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0132123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.5
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 29.5,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0133123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.5
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 18.88,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0134123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 16,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2.88
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 29.5,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0135123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4.5
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 42.48,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTRD27H76L5SD0136123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 36,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 6.48
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCCR0123E1ZP"
                                },
                                {
                                  "trdnm": "FUTURE GENERALI INDIA INSURANCE COMPANY LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 1025.75,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT202327ENC0046390123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 869.28,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 156.47
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "12-03-2024",
                                      "val": 5848.82,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT202327END0169910123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 4956.63,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 892.19
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCCF0123R2Z8"
                                },
                                {
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6154.55,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT292AEDNQB0324002123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5131,
                                          "cess": 0,
                                          "igst": 256.55
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6154.55,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT292AEDNQB0324003123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5131,
                                          "cess": 0,
                                          "igst": 256.55
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 2849.7,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT292AEDNQB0324004123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2714,
                                          "cess": 0,
                                          "igst": 135.7
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "29ABCCS0123P1Z8"
                                },
                                {
                                  "trdnm": "HCP WELLNESS PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 10915,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT127123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 832.5,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 9250,
                                          "cgst": 832.5,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "06-03-2024",
                                      "val": 6759,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT128123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 515.55,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5728.32,
                                          "cgst": 515.55,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCCH0123H1ZK"
                                },
                                {
                                  "trdnm": "INTERGLOBAL AVATION LTD.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 8659,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTPB2232403AC11668123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 7485,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 374
                                        },
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 678,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 122
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "03ABCCI0123B1ZC"
                                },
                                {
                                  "trdnm": "HDFC ERGO GENERAL INSURANCE COMPANY LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 577.02,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT204202852902006123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 44.01,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 489,
                                          "cgst": 44.01,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 844.88,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT204202852902008123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 64.44,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 716,
                                          "cgst": 64.44,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCCL0123N1ZE"
                                },
                                {
                                  "trdnm": "AIR INDIA LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "07-03-2024",
                                      "val": 2844,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT332422BP03AAA138123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2708.57,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 135.43
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "07-03-2024",
                                      "val": 3608,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT332432BP03AAA141123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3014,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 9
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "33ABCCN0123P2ZV"
                                },
                                {
                                  "trdnm": "TATA SIA Airlines Limited",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 3717,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTC330000000197941123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3540,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 177
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "33ABCCT0123F1ZB"
                                },
                                {
                                  "trdnm": "R I AYURVEDA RESEARCH LABS (A UNIT OF RAM LAL INDER LAL PVT. LTD.)",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "22-03-2024",
                                      "val": 1020,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN2023123-24/032",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 864.5,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 155.61
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 43707,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN2023123-24/035",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 35768.28,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 6438.29
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 322,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN2023123-24/036",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 272.95,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 49.13
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "07ABCCR0123G1ZL"
                                },
                                {
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3770,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTMH2232403AO26147123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3590,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 180
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3474,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTMH2232403AO29135123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3309,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 165
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 2605,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTMH2232403AO39615123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2481,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 124
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCCI0123B1Z2"
                                },
                                {
                                  "trdnm": "KK COSMETICS MALL LLP",
                                  "supfildt": "12-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00422123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00423123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00424123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00425123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00426123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00427123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00428123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00429123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00430123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00431123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 5900,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00432123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 5000,
                                          "cess": 0,
                                          "igst": 900
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCFK0123P1Z2"
                                },
                                {
                                  "trdnm": "SIDDHI VINAYAK",
                                  "supfildt": "13-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "val": 17700,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN00234123",
                                      "irn": "abc12yhd37f9956f0f12bd7b4dc2725beb58fd1eadeaeff5498ca8123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "13-02-2024",
                                      "rsn": "",
                                      "dt": "02-02-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 15000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2700
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "19ABCFS0123G1ZN"
                                },
                                {
                                  "trdnm": "DREAMPLUG TECHNOLOGIES PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "val": 22829,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCRED123/CN23/3320",
                                      "irn": "abc12yhd3720b1d76eceac180ebfa846c49fa4fe98be05067253ab123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "10-03-2024",
                                      "rsn": "",
                                      "dt": "09-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 19346.61,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 3482.39
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 6526,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCRED123/CN23/3591",
                                      "irn": "abc12yhd3735673cf58bc5e7cebd60dfc390557631ced19339a48b123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "25-03-2024",
                                      "rsn": "",
                                      "dt": "25-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5530.51,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 995.49
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 1030072,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCRED123/CN23/3748",
                                      "irn": "abc12yhd3741d0c8f2f76e035eea9df49da9834a84e05c74b359f6123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "25-03-2024",
                                      "rsn": "",
                                      "dt": "25-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 872942.37,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 157129.63
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "29ABCCD0123Q1ZS"
                                },
                                {
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "28-03-2024",
                                      "val": 14120,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTAD2232403AB97885123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 13448,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 672
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "37ABCCI0123B1Z1"
                                },
                                {
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 5247.9,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT242B3V32P0324002123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 124.95,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4998,
                                          "cgst": 124.95,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "21-03-2024",
                                      "val": 2301.6,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT242B3V32P0324003123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 54.8,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2192,
                                          "cgst": 54.8,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6382.66,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT242P7E7TZ0324002123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 139.33,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5573,
                                          "cgst": 139.33,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6379.5,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT242P7E7TZ0324003123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 139.25,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5570,
                                          "cgst": 139.25,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 1801.8,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT242Q8HY3T0324004123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 42.9,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 1716,
                                          "cgst": 42.9,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 9000.6,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT242Q8HY3T0324005123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 214.3,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 8572,
                                          "cgst": 214.3,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 3849.3,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT242Q8HY3T0324006123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 91.65,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3666,
                                          "cgst": 91.65,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 199.5,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT243CY86YA0324002123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 4.75,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 190,
                                          "cgst": 4.75,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "03-03-2024",
                                      "val": 7830.3,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT243CY86YA0324003123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 161.15,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 6446,
                                          "cgst": 161.15,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3099.6,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT243E5PHHM0324002123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 73.8,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2952,
                                          "cgst": 73.8,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "02-03-2024",
                                      "val": 6203.1,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT243E5PHHM0324003123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 135.05,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5402,
                                          "cgst": 135.05,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCCS0123P1ZI"
                                },
                                {
                                  "trdnm": "PERFECT PACKAGING",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "21-03-2024",
                                      "val": 62894,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ123/CN01",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 4797,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 53300,
                                          "cgst": 4797,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCPD0123G1Z3"
                                },
                                {
                                  "trdnm": "SPICEJET LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 3906,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT30824123/0000013699",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 3720,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 186
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "08ABCCR0123F1ZG"
                                },
                                {
                                  "trdnm": "RADCOM PACKAGING PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "27-03-2024",
                                      "val": 107697,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT302123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 91269,
                                          "cess": 0,
                                          "igst": 16428.42
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "29-03-2024",
                                      "val": 37760,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT311123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 1801,
                                          "txval": 32000,
                                          "cess": 0,
                                          "igst": 5760
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "26ABCCR0123B1ZM"
                                },
                                {
                                  "trdnm": "MARICO LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 6580.01,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDD0270003239123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 5576.28,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1003.73
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 8866,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDD0270003240123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 7513.56,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 1352.44
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 136497.02,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDD0270003241123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 115675.44,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 20821.58
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 1296198.99,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDD0270003274123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 1098473.72,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 197725.27
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 2578.04,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDD0270003275123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 2184.78,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 393.26
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 83.98,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDD0270003276123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 71.17,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 12.81
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 585.02,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDD0270003277123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 495.78,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 89.24
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 41.04,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTDD0270003278123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 34.78,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 6.26
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 2901.61,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTVU0270001754123",
                                      "irn": "abc12yhd37bcdf980bcfdf07cc8fa21b7adf498911467119ace41e123abc6xyz",
                                      "typ": "D",
                                      "irngendate": "04-04-2024",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 0.01,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2901.6
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCCM0123G1Z7"
                                },
                                {
                                  "trdnm": "TATA SIA AIRLINES LTD",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "06-03-2024",
                                      "val": 588,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTD240000000093302123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 14,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 560,
                                          "cgst": 14,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCCT0123F6Z5"
                                },
                                {
                                  "trdnm": "PB 10 TRADERS",
                                  "supfildt": "09-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 18898,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT71123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 16015.25,
                                          "cess": 0,
                                          "igst": 2882.75
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "03ABCPP0123A1Z2"
                                },
                                {
                                  "trdnm": "MG VIP LOUNGE",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 37799.98,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT20123/23-24",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 2883.05,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 32033.88,
                                          "cgst": 2883.05,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCPS0123A2Z8"
                                },
                                {
                                  "trdnm": "ITHINK LOGISTIC QUICK SERVICES PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "13-03-2024",
                                      "val": 108761,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCN123-P/23-24/4702",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 92170.34,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 16590.66
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCCI0123J1ZE"
                                },
                                {
                                  "trdnm": "Rahul Chaudhry & Partners",
                                  "supfildt": "12-03-2024",
                                  "supprd": "102023",
                                  "nt": [
                                    {
                                      "val": 13040,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "Y",
                                      "ntnum": "NT96868123/OPP",
                                      "irn": "abc12yhd371e2f40770025c1314a2899572159b25999d100e77ce9123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "11-01-2024",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 0,
                                          "num": 1,
                                          "txval": 10000,
                                          "cgst": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "val": 38915,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "Y",
                                      "ntnum": "NT96869123/PROS",
                                      "irn": "abc12yhd3790e44e0b1158d67b9f5ae47049affcf299c26aa429c5123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "11-01-2024",
                                      "rsn": "",
                                      "dt": "31-10-2023",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 0,
                                          "num": 1,
                                          "txval": 36500,
                                          "cgst": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "07ABCPC0123L1Z9"
                                },
                                {
                                  "trdnm": "INTER GLOBE AVIATION LTD.",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 500,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTWB2232403AF84931123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 424,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 76
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "19ABCCI0123B1ZZ"
                                },
                                {
                                  "trdnm": "KHAITAN AND CO",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "val": 400000,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "Y",
                                      "ntnum": "NTMUM2324C02158123",
                                      "irn": "abc12yhd37bf905487a16118f5a8abae633de54b7f9ee7573bbe11123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "30-03-2024",
                                      "rsn": "",
                                      "dt": "28-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 400000,
                                          "cgst": 0,
                                          "igst": 72000
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCFK0123D1ZJ"
                                },
                                {
                                  "trdnm": "THE PACK PARTNERS",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "10-03-2024",
                                      "val": 412693,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCNS123/23-24/170",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 349740,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 62953.2
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "10-03-2024",
                                      "val": 82322,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCNS123/23-24/171",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 69764.1,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 12557.54
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "10-03-2024",
                                      "val": 30326,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCNS123/23-24/172",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 25699.8,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 4625.96
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "13-03-2024",
                                      "val": 189,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCNS123/23-24/173",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 160,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 28.8
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "11-03-2024",
                                      "val": 375713,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTCNS123/23-24/176",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 318400.5,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 57312.09
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "06ABCFT0123N1ZF"
                                },
                                {
                                  "trdnm": "INTERGLOBE AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 4996,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTJS2232403AA98558123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 4758,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 238
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 5691,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTJS2232403AA99125123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5420,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 271
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "20ABCCI0123B1ZG"
                                },
                                {
                                  "trdnm": "INTER GLOBE AVIATION LIMITED INDIGO",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "02-03-2024",
                                      "val": 5984,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTTS2232403AF84076123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 5223,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 261
                                        },
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 424,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 76
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "36ABCCI0123B1Z3"
                                },
                                {
                                  "trdnm": "SNV AVIATION PRIVATE LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "01-03-2024",
                                      "val": 197.4,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT303M3U5KF0324002123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 188,
                                          "cess": 0,
                                          "igst": 9.4
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "01-03-2024",
                                      "val": 14802.2,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT303M3U5KF0324003123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 11804,
                                          "cess": 0,
                                          "igst": 590.2
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "30ABCCS0123P1ZP"
                                },
                                {
                                  "trdnm": "FLIPKART INTERNET PRIVATE LIMITED",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "31-03-2024",
                                      "val": 13685.45,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTFKCKA25000105935123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11597.85,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2087.61
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 15949.02,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTFKCKA25000106159123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 13516.23,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 2432.92
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "31-03-2024",
                                      "val": 200.42,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTFKDKA25000011993123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 169.85,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 30.57
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "28-03-2024",
                                      "val": 676964,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTFKNADC24123/0000433",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 573698,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 103265.64
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "29ABCCF0123K1ZD"
                                },
                                {
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "04-03-2024",
                                      "val": 2058,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTD070000001374068123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 1960,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 98
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "04-03-2024",
                                      "val": 525,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTD070000001374069123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 500,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 25
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "07ABCCT0123F1Z6"
                                },
                                {
                                  "trdnm": "AMAZON SELLER SERVICES PVT LTD",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "val": 13989.72,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGJ123-C-24-44647",
                                      "irn": "abc12yhd37332d2a0967053b65a099b12c43aac018c79806f5f089123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "02-04-2024",
                                      "rsn": "",
                                      "dt": "31-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 1066.94,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 11855.84,
                                          "cgst": 1066.94,
                                          "cess": 0,
                                          "igst": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCCA0123J1ZO"
                                },
                                {
                                  "trdnm": "HRITHIK ROSHAN",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "val": 3894000,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT6123/2023-24",
                                      "irn": "abc12yhd37d976b99a433ae21128dee0718ca75375e011fe987bc7123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "18-03-2024",
                                      "rsn": "",
                                      "dt": "18-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 3300000,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 594000
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCPN0123F1ZQ"
                                },
                                {
                                  "trdnm": "MAKE MY TRIP (INDIA) PVT. LTD.",
                                  "supfildt": "16-03-2024",
                                  "supprd": "022024",
                                  "nt": [
                                    {
                                      "dt": "12-02-2024",
                                      "val": 47,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTM06AI24C00470301123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 4342,
                                          "txval": 39.83,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 7.17
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "14-02-2024",
                                      "val": 1,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTM06AI24C00473455123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 4523,
                                          "txval": 0.85,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 0.15
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "15-02-2024",
                                      "val": 1,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTM06AI24C00474889123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 4600,
                                          "txval": 0.85,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 0.15
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "06ABCCM0123R1ZZ"
                                },
                                {
                                  "trdnm": "R K TRADERS",
                                  "supfildt": "10-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "val": 43660,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT838123",
                                      "irn": "abc12yhd37448c3d76ff736f71839c363c1fa9e6626054d7702387123abc6xyz",
                                      "typ": "C",
                                      "irngendate": "11-03-2024",
                                      "rsn": "",
                                      "dt": "08-03-2024",
                                      "pos": "24",
                                      "srctyp": "E-Invoice",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 37000,
                                          "cgst": 0,
                                          "igst": 6660
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "07ABCPV0123Q1ZT"
                                },
                                {
                                  "trdnm": "TATA SIA AIRLINES LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "09-03-2024",
                                      "val": 2688,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTC270000001231294123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 2560,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 128
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "05-03-2024",
                                      "val": 1218,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTD270000000992491123",
                                      "pos": "24",
                                      "typ": "D",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 1160,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 58
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "27ABCCT0123F1Z4"
                                },
                                {
                                  "trdnm": "INTERGLOBE  AVIATION LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "08-03-2024",
                                      "val": 21002,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGA2232403AC72483123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 19240,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 962
                                        },
                                        {
                                          "sgst": 0,
                                          "rt": 18,
                                          "num": 2,
                                          "txval": 678,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 122
                                        }
                                      ],
                                      "suptyp": "R"
                                    },
                                    {
                                      "dt": "08-03-2024",
                                      "val": 14698,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NTGA2232403AC72646123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 0,
                                          "rt": 5,
                                          "num": 1,
                                          "txval": 13997,
                                          "cgst": 0,
                                          "cess": 0,
                                          "igst": 701
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "30ABCCI0123B1ZF"
                                },
                                {
                                  "trdnm": "BLUE DART EXPRESS LIMITED",
                                  "supfildt": "11-04-2024",
                                  "supprd": "032024",
                                  "nt": [
                                    {
                                      "dt": "23-03-2024",
                                      "val": 523,
                                      "diffprcnt": 1,
                                      "itcavl": "Y",
                                      "rev": "N",
                                      "ntnum": "NT24324C000360123",
                                      "pos": "24",
                                      "typ": "C",
                                      "rsn": "",
                                      "items": [
                                        {
                                          "sgst": 39.89,
                                          "rt": 18,
                                          "num": 1,
                                          "txval": 443.22,
                                          "cgst": 39.89,
                                          "cess": 0
                                        }
                                      ],
                                      "suptyp": "R"
                                    }
                                  ],
                                  "ctin": "24ABCCB0123L1ZY"
                                }
                              ]
                            },
                            "gstin": "29AAACQ3770E000",
                            "version": "1.0"
                          },
                          "chksum": "baeb49893b8c483496c0e169c9532521a9f9b104cc612c706b10dd39f051b4e3"
                        }
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2b/{year}/{month}/regenerate": {
      "post": {
        "summary": "Regenerate GSTR-2B",
        "deprecated": false,
        "description": "Seamlessly regenerate GSTR-2B on-demand with this API. Whenever actions are taken on invoices within the Invoice Management System (IMS), GSTR-2B needs to be regenerated per the latest invoice status (Accepted/Rejected/Pending).",
        "operationId": "regenerateGstr2b",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2B Document"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "IMS2B007 Incorrect ITC period or 3B already filed / 200 Regeneration 2B started / IMS2B009 Generate 2b after draft is available",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegenerateGstr2bResponse"
                },
                "examples": {
                  "200 Regeneration 2B started": {
                    "summary": "200 Regeneration 2B started",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "0032e479bcb644c"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a0dd3f41-3635-4a7b-96a1-ae4225d2e86b"
                    }
                  },
                  "IMS2B007 Incorrect ITC period or 3B already filed": {
                    "summary": "IMS2B007 Incorrect ITC period or 3B already filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "IMS2B007",
                          "message": "Either the entered ITC period is incorrect or it has 3B filed"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "2834a903-98bc-4262-8532-84dd28071900"
                    }
                  },
                  "IMS2B009 Generate 2b after draft is available": {
                    "summary": "IMS2B009 Generate 2b after draft is available",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "IMS2B009",
                          "message": "Kindly generate 2b after 14/05/2025"
                        }
                      },
                      "timestamp": 1747049275882,
                      "transaction_id": "69370bfe-d986-46a7-8d4e-9dae38fc6d61"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-2b/regenerate": {
      "get": {
        "summary": "GSTR-2B Regeneration Status",
        "deprecated": false,
        "description": "API to get the status of GSTR-2B regeneration from GST Network.",
        "operationId": "fetchGstr2bRegenerationStatus",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-2B Document"
        ],
        "parameters": [
          {
            "name": "reference_id",
            "in": "query",
            "description": "Reference id received from Regenerate GSTR-2B API",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{reference_id}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "IMS0008 No records found / 200 2B regenerated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FetchGstr2bRegenerationStatusResponse"
                },
                "examples": {
                  "200 2B regenerated": {
                    "summary": "200 2B regenerated",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "err_cd": "",
                          "err_msg": "",
                          "status_cd": "P"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a09371de-fc91-466b-80fd-d85430583ee2"
                    }
                  },
                  "IMS0008 No records found": {
                    "summary": "IMS0008 No records found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "IMS0008",
                          "message": "No records found for requested internal transaction Id"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "60269ae4-6513-4f73-9dc0-8314657a8bdd"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-3b/{year}/{month}": {
      "get": {
        "summary": "GSTR-3B Details",
        "deprecated": false,
        "description": "Authenticated tax payer can upload GSTR-3B json to GST portal",
        "operationId": "getGstr3bDetails",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-3B"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RT-R3BQ1004 GSTR-1 not filed / 200 Details after offsetting liabilities",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr3bDetailsResponse"
                },
                "examples": {
                  "200 Details after offsetting liabilities": {
                    "summary": "200 Details after offsetting liabilities",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "gstin": "24ABKCS2033B1ZV",
                          "inter_sup": {
                            "comp_details": [
                              {
                                "iamt": 185.31,
                                "pos": "33",
                                "txval": 1029.48
                              }
                            ],
                            "uin_details": [],
                            "unreg_details": [
                              {
                                "iamt": 457.17,
                                "pos": "27",
                                "txval": 2539.83
                              },
                              {
                                "iamt": 152.39,
                                "pos": "07",
                                "txval": 846.61
                              },
                              {
                                "iamt": 61550.64,
                                "pos": "29",
                                "txval": 341948.46
                              }
                            ]
                          },
                          "intr_ltfee": {
                            "intr_details": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "ltfee_details": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            }
                          },
                          "itc_elg": {
                            "itc_avl": [
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "IMPG"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "IMPS"
                              },
                              {
                                "camt": 9000,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 9000,
                                "ty": "ISRC"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "ISD"
                              },
                              {
                                "camt": 24384,
                                "csamt": 0,
                                "iamt": 218140,
                                "samt": 24384,
                                "ty": "OTH"
                              }
                            ],
                            "itc_inelg": [
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "RUL"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "OTH"
                              }
                            ],
                            "itc_net": {
                              "camt": 33384,
                              "csamt": 0,
                              "iamt": 218140,
                              "samt": 33384
                            },
                            "itc_rev": [
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "RUL"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "OTH"
                              }
                            ]
                          },
                          "ret_period": "112024",
                          "sup_details": {
                            "isup_rev": {
                              "camt": 9000,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 9000,
                              "txval": 100000
                            },
                            "osup_det": {
                              "camt": 8127.33,
                              "csamt": 0,
                              "iamt": 376705.19,
                              "samt": 8127.33,
                              "txval": 2183112.28
                            },
                            "osup_nil_exmp": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "osup_nongst": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "osup_zero": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            }
                          },
                          "tx_pmt": {
                            "adjnegliab": [],
                            "net_tax_pay": [
                              {
                                "cess": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "cgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 8127
                                },
                                "igst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 376705
                                },
                                "liab_ldg_id": 0,
                                "sgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 8127
                                },
                                "tran_desc": "Other than Reverse Charge",
                                "trans_typ": 30002
                              },
                              {
                                "cess": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "cgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 9000
                                },
                                "igst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "liab_ldg_id": 0,
                                "sgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 9000
                                },
                                "tran_desc": "Reverse charge and supplies made u/s 9(5)",
                                "trans_typ": 30003
                              }
                            ],
                            "pdcash": [
                              {
                                "c_intrpd": 0,
                                "c_lfeepd": 0,
                                "cpd": 0,
                                "cs_intrpd": 0,
                                "cs_lfeepd": 0,
                                "cspd": 0,
                                "i_intrpd": 0,
                                "i_lfeepd": 0,
                                "ipd": 108051,
                                "liab_ldg_id": 770673261,
                                "s_intrpd": 0,
                                "s_lfeepd": 0,
                                "spd": 0,
                                "trans_typ": 30002
                              },
                              {
                                "c_intrpd": 0,
                                "c_lfeepd": 0,
                                "cpd": 9000,
                                "cs_intrpd": 0,
                                "cs_lfeepd": 0,
                                "cspd": 0,
                                "i_intrpd": 0,
                                "i_lfeepd": 0,
                                "ipd": 0,
                                "liab_ldg_id": 770673262,
                                "s_intrpd": 0,
                                "s_lfeepd": 0,
                                "spd": 9000,
                                "trans_typ": 30003
                              }
                            ],
                            "pditc": {
                              "c_pdc": 8127,
                              "c_pdi": 0,
                              "cs_pdcs": 0,
                              "i_pdc": 25257,
                              "i_pdi": 218140,
                              "i_pds": 25257,
                              "liab_ldg_id": 770673261,
                              "s_pdi": 0,
                              "s_pds": 8127,
                              "trans_typ": 30002
                            },
                            "pdnls": [],
                            "tx_py": [
                              {
                                "cess": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "cgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "igst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "liab_ldg_id": 770673261,
                                "sgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "tran_desc": "Other than Reverse Charge",
                                "trans_typ": 30002
                              },
                              {
                                "cess": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "cgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "igst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "liab_ldg_id": 770673262,
                                "sgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "tran_desc": "Reverse charge and supplies made u/s 9(5)",
                                "trans_typ": 30003
                              }
                            ]
                          }
                        }
                      },
                      "timestamp": 1734602649000,
                      "transaction_id": "ee0a0224-8b95-4450-8670-c6450823ce5e"
                    }
                  },
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "gstin": "29AAACQ3770E000",
                          "inter_sup": {
                            "comp_details": [],
                            "uin_details": [],
                            "unreg_details": [
                              {
                                "iamt": 5596.26,
                                "pos": "10",
                                "txval": 31090.3
                              },
                              {
                                "iamt": 6459.42,
                                "pos": "07",
                                "txval": 35885.6
                              },
                              {
                                "iamt": 1295.68,
                                "pos": "18",
                                "txval": 7198.2
                              },
                              {
                                "iamt": 9490.96,
                                "pos": "36",
                                "txval": 52727.5
                              },
                              {
                                "iamt": 10004.82,
                                "pos": "37",
                                "txval": 55582.3
                              },
                              {
                                "iamt": 1403.48,
                                "pos": "23",
                                "txval": 7797.1
                              },
                              {
                                "iamt": 11569.16,
                                "pos": "33",
                                "txval": 64273
                              },
                              {
                                "iamt": 719.82,
                                "pos": "25",
                                "txval": 3999
                              },
                              {
                                "iamt": 719.82,
                                "pos": "34",
                                "txval": 3999
                              },
                              {
                                "iamt": 1439.64,
                                "pos": "22",
                                "txval": 7998
                              },
                              {
                                "iamt": 137579.65,
                                "pos": "29",
                                "txval": 764331.38
                              },
                              {
                                "iamt": 485.84,
                                "pos": "30",
                                "txval": 2699.1
                              },
                              {
                                "iamt": 683.48,
                                "pos": "21",
                                "txval": 3797.1
                              },
                              {
                                "iamt": 3922.42,
                                "pos": "19",
                                "txval": 21791.2
                              },
                              {
                                "iamt": 20935.22,
                                "pos": "27",
                                "txval": 116306.6
                              },
                              {
                                "iamt": 2446.76,
                                "pos": "32",
                                "txval": 13593.1
                              },
                              {
                                "iamt": 3094.96,
                                "pos": "97",
                                "txval": 17194.2
                              },
                              {
                                "iamt": 1907.48,
                                "pos": "03",
                                "txval": 10597.1
                              },
                              {
                                "iamt": 4084.76,
                                "pos": "08",
                                "txval": 22693.1
                              },
                              {
                                "iamt": 4911.18,
                                "pos": "09",
                                "txval": 27284.3
                              },
                              {
                                "iamt": 1691.5,
                                "pos": "16",
                                "txval": 9397.2
                              },
                              {
                                "iamt": 1925.3,
                                "pos": "20",
                                "txval": 10696.1
                              },
                              {
                                "iamt": 3345.84,
                                "pos": "06",
                                "txval": 18588
                              },
                              {
                                "iamt": 287.64,
                                "pos": "05",
                                "txval": 1598
                              },
                              {
                                "iamt": 242.84,
                                "pos": "02",
                                "txval": 1349.1
                              }
                            ]
                          },
                          "intr_ltfee": {
                            "intr_details": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "ltfee_details": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            }
                          },
                          "inward_sup": {
                            "isup_details": [
                              {
                                "inter": 7357.74,
                                "intra": 0,
                                "ty": "GST"
                              },
                              {
                                "inter": 0,
                                "intra": 0,
                                "ty": "NONGST"
                              }
                            ]
                          },
                          "itc_elg": {
                            "itc_avl": [
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "IMPG"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "IMPS"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "ISRC"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "ISD"
                              },
                              {
                                "camt": 1857.33,
                                "csamt": 0,
                                "iamt": 20756.64,
                                "samt": 1857.33,
                                "ty": "OTH"
                              }
                            ],
                            "itc_inelg": [
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "RUL"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "OTH"
                              }
                            ],
                            "itc_net": {
                              "camt": 1857.33,
                              "csamt": 0,
                              "iamt": 20756.64,
                              "samt": 1857.33
                            },
                            "itc_rev": [
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "RUL"
                              },
                              {
                                "camt": 0,
                                "csamt": 0,
                                "iamt": 0,
                                "samt": 0,
                                "ty": "OTH"
                              }
                            ]
                          },
                          "ret_period": "122023",
                          "sup_details": {
                            "isup_rev": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "osup_det": {
                              "camt": 2284.92,
                              "csamt": 0,
                              "iamt": 237746.43,
                              "samt": 2284.92,
                              "txval": 1346200.68
                            },
                            "osup_nil_exmp": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "osup_nongst": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "osup_zero": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            }
                          },
                          "tx_pmt": {
                            "pdcash": [
                              {
                                "c_intrpd": 0,
                                "c_lfeepd": 0,
                                "cpd": 0,
                                "cs_intrpd": 0,
                                "cs_lfeepd": 0,
                                "cspd": 0,
                                "i_intrpd": 0,
                                "i_lfeepd": 0,
                                "ipd": 165147,
                                "liab_ldg_id": 649677714,
                                "s_intrpd": 0,
                                "s_lfeepd": 0,
                                "spd": 0,
                                "trans_typ": 30002
                              }
                            ],
                            "pditc": {
                              "c_pdc": 2285,
                              "c_pdi": 0,
                              "cs_pdcs": 0,
                              "i_pdc": 5733,
                              "i_pdi": 61133,
                              "i_pds": 5733,
                              "liab_ldg_id": 649677714,
                              "s_pdi": 0,
                              "s_pds": 2285,
                              "trans_typ": 30002
                            },
                            "tx_py": [
                              {
                                "cess": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "cgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "igst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "liab_ldg_id": 649677714,
                                "sgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "tran_desc": "Other than Reverse Charge",
                                "trans_typ": 30002
                              },
                              {
                                "cess": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "cgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "igst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "liab_ldg_id": 649677715,
                                "sgst": {
                                  "fee": 0,
                                  "intr": 0,
                                  "tx": 0
                                },
                                "tran_desc": "Reverse Charge",
                                "trans_typ": 30003
                              }
                            ]
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "46278962-eada-4715-99e1-3f55c5ca3efb"
                    }
                  },
                  "RT-R3BQ1004 GSTR-1 not filed": {
                    "summary": "RT-R3BQ1004 GSTR-1 not filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-R3BQ1004",
                          "message": "You have not filed GSTR-1 of the selected tax period. Please file the same to enable filing of GSTR-3B."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9459d9d7-d2a7-453e-bd9d-043a713b1a8c"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Save GSTR-3B",
        "deprecated": false,
        "description": "Authenticated tax payer can save entire GSTR-3B by uploading json to GST portal",
        "operationId": "saveGstr3b",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-3B"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SaveGstr3bRequest"
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "inward_sup": {
                      "isup_details": [
                        {
                          "intra": 0,
                          "ty": "GST",
                          "inter": 0
                        },
                        {
                          "intra": 0,
                          "ty": "NONGST",
                          "inter": 0
                        }
                      ]
                    },
                    "sup_details": {
                      "osup_nil_exmp": {
                        "txval": 0
                      },
                      "osup_nongst": {
                        "txval": 0
                      },
                      "osup_zero": {
                        "csamt": 0,
                        "iamt": 0,
                        "txval": 0
                      },
                      "osup_det": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0,
                        "txval": 0
                      },
                      "isup_rev": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0,
                        "txval": 0
                      }
                    },
                    "intr_ltfee": {
                      "intr_details": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "inter_sup": {
                      "comp_details": [],
                      "uin_details": [],
                      "unreg_details": []
                    },
                    "itc_elg": {
                      "itc_avl": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "IMPG",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "IMPS",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "ISRC",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "ISD",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ],
                      "itc_rev": [
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "RUL",
                          "iamt": 0
                        },
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ],
                      "itc_net": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_inelg": [
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "RUL",
                          "iamt": 0
                        },
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ]
                    }
                  },
                  "summary": "200 Success"
                },
                "RT-R3BQ1004 GSTR-1 not filed": {
                  "value": {
                    "inward_sup": {
                      "isup_details": [
                        {
                          "intra": 0,
                          "ty": "GST",
                          "inter": 0
                        },
                        {
                          "intra": 0,
                          "ty": "NONGST",
                          "inter": 0
                        }
                      ]
                    },
                    "sup_details": {
                      "osup_nil_exmp": {
                        "txval": 0
                      },
                      "osup_nongst": {
                        "txval": 0
                      },
                      "osup_zero": {
                        "csamt": 0,
                        "iamt": 0,
                        "txval": 0
                      },
                      "osup_det": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0,
                        "txval": 0
                      },
                      "isup_rev": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0,
                        "txval": 0
                      }
                    },
                    "intr_ltfee": {
                      "intr_details": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "inter_sup": {
                      "comp_details": [],
                      "uin_details": [],
                      "unreg_details": []
                    },
                    "itc_elg": {
                      "itc_avl": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "IMPG",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "IMPS",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "ISRC",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "ISD",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ],
                      "itc_rev": [
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "RUL",
                          "iamt": 0
                        },
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ],
                      "itc_net": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_inelg": [
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "RUL",
                          "iamt": 0
                        },
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ]
                    }
                  },
                  "summary": "RT-R3BQ1004 GSTR-1 not filed"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "200 Success / RT-R3BQ1004 GSTR-1 not filed",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SaveGstr3bResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "ab2b2eae-974d-40e2-a721-8c4987af92d0"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a43cfcd6-9a48-4be9-82fd-0816070999db"
                    }
                  },
                  "RT-R3BQ1004 GSTR-1 not filed": {
                    "summary": "RT-R3BQ1004 GSTR-1 not filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-R3BQ1004",
                          "message": "You have not filed GSTR-1 of the selected tax period. Please file the same to enable filing of GSTR-3B."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "b830e36f-696a-445f-bece-d0a0be5e8c02"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-3b/{year}/{month}/auto-liability-calc": {
      "get": {
        "summary": "Get GSTR-3B Liability Auto Calc",
        "deprecated": false,
        "description": "Authenticated tax payer can upload GSTR-3B json to GST portal",
        "operationId": "getGstr3bLiabilityAutoCalc",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-3B"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "description": "JSON raw body",
                "properties": {}
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "ret_period": "122023",
                    "inward_sup": {
                      "isup_details": [
                        {
                          "intra": 0,
                          "ty": "GST",
                          "inter": 0
                        },
                        {
                          "intra": 0,
                          "ty": "NONGST",
                          "inter": 0
                        }
                      ]
                    },
                    "sup_details": {
                      "osup_nil_exmp": {
                        "txval": 0
                      },
                      "osup_nongst": {
                        "txval": 0
                      },
                      "osup_zero": {
                        "csamt": 0,
                        "iamt": 0,
                        "txval": 0
                      },
                      "osup_det": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0,
                        "txval": 0
                      },
                      "isup_rev": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0,
                        "txval": 0
                      }
                    },
                    "intr_ltfee": {
                      "intr_details": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "inter_sup": {
                      "comp_details": [],
                      "uin_details": [],
                      "unreg_details": []
                    },
                    "itc_elg": {
                      "itc_avl": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "IMPG",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "IMPS",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "ISRC",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "ISD",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ],
                      "itc_rev": [
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "RUL",
                          "iamt": 0
                        },
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ],
                      "itc_net": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_inelg": [
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "RUL",
                          "iamt": 0
                        },
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ]
                    },
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "200 Success"
                },
                "RT-R3BQ1004 GSTR-1 not filed": {
                  "value": {
                    "ret_period": "042024",
                    "inward_sup": {
                      "isup_details": [
                        {
                          "intra": 0,
                          "ty": "GST",
                          "inter": 0
                        },
                        {
                          "intra": 0,
                          "ty": "NONGST",
                          "inter": 0
                        }
                      ]
                    },
                    "sup_details": {
                      "osup_nil_exmp": {
                        "txval": 0
                      },
                      "osup_nongst": {
                        "txval": 0
                      },
                      "osup_zero": {
                        "csamt": 0,
                        "iamt": 0,
                        "txval": 0
                      },
                      "osup_det": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0,
                        "txval": 0
                      },
                      "isup_rev": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0,
                        "txval": 0
                      }
                    },
                    "intr_ltfee": {
                      "intr_details": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "inter_sup": {
                      "comp_details": [],
                      "uin_details": [],
                      "unreg_details": []
                    },
                    "itc_elg": {
                      "itc_avl": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "IMPG",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "IMPS",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "ISRC",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "ISD",
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ],
                      "itc_rev": [
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "RUL",
                          "iamt": 0
                        },
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ],
                      "itc_net": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_inelg": [
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "RUL",
                          "iamt": 0
                        },
                        {
                          "csamt": 0,
                          "samt": 0,
                          "camt": 0,
                          "ty": "OTH",
                          "iamt": 0
                        }
                      ]
                    },
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "RT-R3BQ1004 GSTR-1 not filed"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Success / RT-R3BQ1004 GSTR-1 not filed",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr3bLiabilityAutoCalcResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "r3bautopop": {
                            "error": [],
                            "liabitc": {
                              "elgitc": {
                                "itc4a1": {
                                  "det": {
                                    "itcavl": {
                                      "cess": 0,
                                      "igst": 0
                                    }
                                  },
                                  "subtotal": {
                                    "csamt": 0,
                                    "iamt": 0
                                  }
                                },
                                "itc4a3": {
                                  "det": {
                                    "itcavl": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0
                                    },
                                    "itcavl_cn": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0
                                    },
                                    "itcunavl": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0
                                    }
                                  },
                                  "subtotal": {
                                    "camt": 0,
                                    "csamt": 0,
                                    "iamt": 0,
                                    "samt": 0
                                  }
                                },
                                "itc4a4": {
                                  "det": {
                                    "itcavl": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0
                                    },
                                    "itcavl_cn": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0
                                    },
                                    "itcunavl": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0
                                    }
                                  },
                                  "subtotal": {
                                    "camt": 0,
                                    "csamt": 0,
                                    "iamt": 0,
                                    "samt": 0
                                  }
                                },
                                "itc4a5": {
                                  "det": {
                                    "itcavl": {
                                      "cess": 0,
                                      "cgst": 5550.22,
                                      "igst": 20756.64,
                                      "sgst": 5550.22
                                    },
                                    "itcavl_cn": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 82786.26,
                                      "sgst": 0
                                    },
                                    "itcunavl": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0
                                    }
                                  },
                                  "subtotal": {
                                    "camt": 5550.22,
                                    "csamt": 0,
                                    "iamt": -62029.62,
                                    "samt": 5550.22
                                  }
                                },
                                "itc4d2": {
                                  "det": {
                                    "itcunavl": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0
                                    }
                                  },
                                  "subtotal": {
                                    "camt": 0,
                                    "csamt": 0,
                                    "iamt": 0,
                                    "samt": 0
                                  }
                                }
                              },
                              "gstin": "29AAACQ3770E000",
                              "inter_sup": {
                                "osup_comp_3_2": {
                                  "det": {
                                    "tbl15b2b": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl15urp2b": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl4a": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl4c": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl9a": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl9b": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl9c": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ]
                                  },
                                  "subtotal": [
                                    {
                                      "iamt": 0,
                                      "pos": "",
                                      "txval": 0
                                    }
                                  ]
                                },
                                "osup_uin_3_2": {
                                  "det": {
                                    "tbl15b2b": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl15urp2b": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl4a": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl4c": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl9a": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl9b": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl9c": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ]
                                  },
                                  "subtotal": [
                                    {
                                      "iamt": 0,
                                      "pos": "",
                                      "txval": 0
                                    }
                                  ]
                                },
                                "osup_unreg_3_2": {
                                  "det": {
                                    "tbl10b": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl11_i_a_2": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl11_i_b_2": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl11_ii": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl15b2c": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl15urp2c": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl5a": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl7b_1": [
                                      {
                                        "iamt": 10004.82,
                                        "pos": "37",
                                        "txval": 55582.3
                                      },
                                      {
                                        "iamt": 1295.68,
                                        "pos": "18",
                                        "txval": 7198.2
                                      },
                                      {
                                        "iamt": 5596.26,
                                        "pos": "10",
                                        "txval": 31090.3
                                      },
                                      {
                                        "iamt": 1439.64,
                                        "pos": "22",
                                        "txval": 7998
                                      },
                                      {
                                        "iamt": 6459.42,
                                        "pos": "07",
                                        "txval": 35885.6
                                      },
                                      {
                                        "iamt": 485.84,
                                        "pos": "30",
                                        "txval": 2699.1
                                      },
                                      {
                                        "iamt": 3345.84,
                                        "pos": "06",
                                        "txval": 18588
                                      },
                                      {
                                        "iamt": 242.84,
                                        "pos": "02",
                                        "txval": 1349.1
                                      },
                                      {
                                        "iamt": 1925.3,
                                        "pos": "20",
                                        "txval": 10696.1
                                      },
                                      {
                                        "iamt": 137579.65,
                                        "pos": "29",
                                        "txval": 764331.38
                                      },
                                      {
                                        "iamt": 2446.76,
                                        "pos": "32",
                                        "txval": 13593.1
                                      },
                                      {
                                        "iamt": 1403.48,
                                        "pos": "23",
                                        "txval": 7797.1
                                      },
                                      {
                                        "iamt": 20935.22,
                                        "pos": "27",
                                        "txval": 116306.6
                                      },
                                      {
                                        "iamt": 683.48,
                                        "pos": "21",
                                        "txval": 3797.1
                                      },
                                      {
                                        "iamt": 3094.96,
                                        "pos": "97",
                                        "txval": 17194.2
                                      },
                                      {
                                        "iamt": 719.82,
                                        "pos": "34",
                                        "txval": 3999
                                      },
                                      {
                                        "iamt": 1907.48,
                                        "pos": "03",
                                        "txval": 10597.1
                                      },
                                      {
                                        "iamt": 4084.76,
                                        "pos": "08",
                                        "txval": 22693.1
                                      },
                                      {
                                        "iamt": 11569.16,
                                        "pos": "33",
                                        "txval": 64273
                                      },
                                      {
                                        "iamt": 9490.96,
                                        "pos": "36",
                                        "txval": 52727.5
                                      },
                                      {
                                        "iamt": 1691.5,
                                        "pos": "16",
                                        "txval": 9397.2
                                      },
                                      {
                                        "iamt": 4911.18,
                                        "pos": "09",
                                        "txval": 27284.3
                                      },
                                      {
                                        "iamt": 287.64,
                                        "pos": "05",
                                        "txval": 1598
                                      },
                                      {
                                        "iamt": 3922.42,
                                        "pos": "19",
                                        "txval": 21791.2
                                      }
                                    ],
                                    "tbl9a": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl9b": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ],
                                    "tbl9c": [
                                      {
                                        "iamt": 0,
                                        "pos": "",
                                        "txval": 0
                                      }
                                    ]
                                  },
                                  "subtotal": [
                                    {
                                      "iamt": 10004.82,
                                      "pos": "37",
                                      "txval": 55582.3
                                    },
                                    {
                                      "iamt": 1295.68,
                                      "pos": "18",
                                      "txval": 7198.2
                                    },
                                    {
                                      "iamt": 5596.26,
                                      "pos": "10",
                                      "txval": 31090.3
                                    },
                                    {
                                      "iamt": 1439.64,
                                      "pos": "22",
                                      "txval": 7998
                                    },
                                    {
                                      "iamt": 6459.42,
                                      "pos": "07",
                                      "txval": 35885.6
                                    },
                                    {
                                      "iamt": 485.84,
                                      "pos": "30",
                                      "txval": 2699.1
                                    },
                                    {
                                      "iamt": 3345.84,
                                      "pos": "06",
                                      "txval": 18588
                                    },
                                    {
                                      "iamt": 242.84,
                                      "pos": "02",
                                      "txval": 1349.1
                                    },
                                    {
                                      "iamt": 1925.3,
                                      "pos": "20",
                                      "txval": 10696.1
                                    },
                                    {
                                      "iamt": 137579.65,
                                      "pos": "29",
                                      "txval": 764331.38
                                    },
                                    {
                                      "iamt": 2446.76,
                                      "pos": "32",
                                      "txval": 13593.1
                                    },
                                    {
                                      "iamt": 1403.48,
                                      "pos": "23",
                                      "txval": 7797.1
                                    },
                                    {
                                      "iamt": 20935.22,
                                      "pos": "27",
                                      "txval": 116306.6
                                    },
                                    {
                                      "iamt": 683.48,
                                      "pos": "21",
                                      "txval": 3797.1
                                    },
                                    {
                                      "iamt": 3094.96,
                                      "pos": "97",
                                      "txval": 17194.2
                                    },
                                    {
                                      "iamt": 719.82,
                                      "pos": "34",
                                      "txval": 3999
                                    },
                                    {
                                      "iamt": 1907.48,
                                      "pos": "03",
                                      "txval": 10597.1
                                    },
                                    {
                                      "iamt": 4084.76,
                                      "pos": "08",
                                      "txval": 22693.1
                                    },
                                    {
                                      "iamt": 11569.16,
                                      "pos": "33",
                                      "txval": 64273
                                    },
                                    {
                                      "iamt": 9490.96,
                                      "pos": "36",
                                      "txval": 52727.5
                                    },
                                    {
                                      "iamt": 1691.5,
                                      "pos": "16",
                                      "txval": 9397.2
                                    },
                                    {
                                      "iamt": 4911.18,
                                      "pos": "09",
                                      "txval": 27284.3
                                    },
                                    {
                                      "iamt": 287.64,
                                      "pos": "05",
                                      "txval": 1598
                                    },
                                    {
                                      "iamt": 3922.42,
                                      "pos": "19",
                                      "txval": 21791.2
                                    }
                                  ]
                                }
                              },
                              "ret_period": "122023",
                              "sup_details": {
                                "isup_3_1d": {
                                  "det": {
                                    "itcavl": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0,
                                      "txval": 0
                                    },
                                    "itcunavl": {
                                      "cess": 0,
                                      "cgst": 0,
                                      "igst": 0,
                                      "sgst": 0,
                                      "txval": 0
                                    }
                                  },
                                  "subtotal": {
                                    "camt": 0,
                                    "csamt": 0,
                                    "iamt": 0,
                                    "samt": 0,
                                    "txval": 0
                                  }
                                },
                                "osup_3_1a": {
                                  "det": {
                                    "tbl10a": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    },
                                    "tbl10b": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl11_i_a_1": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    },
                                    "tbl11_i_a_2": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl11_i_b_1": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    },
                                    "tbl11_i_b_2": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl11_ii": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "iamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    },
                                    "tbl4a": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "iamt": 2222.3,
                                      "samt": 0,
                                      "txval": 12346.1
                                    },
                                    "tbl4b": {
                                      "txval": 0
                                    },
                                    "tbl4c": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "iamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    },
                                    "tbl5a": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl5b": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl6c": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "iamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    },
                                    "tbl7a_1": {
                                      "camt": 2284.92,
                                      "csamt": 0,
                                      "samt": 2284.92,
                                      "txval": 25388
                                    },
                                    "tbl7b_1": {
                                      "csamt": 0,
                                      "iamt": 235524.11,
                                      "txval": 1308466.58
                                    },
                                    "tbl9a": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "iamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    },
                                    "tbl9b": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "iamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    },
                                    "tbl9c": {
                                      "camt": 0,
                                      "csamt": 0,
                                      "iamt": 0,
                                      "samt": 0,
                                      "txval": 0
                                    }
                                  },
                                  "subtotal": {
                                    "camt": 2284.92,
                                    "csamt": 0,
                                    "iamt": 237746.41,
                                    "samt": 2284.92,
                                    "txval": 1346200.68
                                  }
                                },
                                "osup_3_1b": {
                                  "det": {
                                    "tbl15b2b": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl15urp2b": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl6a": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl6b": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl9a": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl9b": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    },
                                    "tbl9c": {
                                      "csamt": 0,
                                      "iamt": 0,
                                      "txval": 0
                                    }
                                  },
                                  "subtotal": {
                                    "csamt": 0,
                                    "iamt": 0,
                                    "txval": 0
                                  }
                                },
                                "osup_3_1c": {
                                  "det": {
                                    "tbl8": {
                                      "txval": 0
                                    }
                                  },
                                  "subtotal": {
                                    "txval": 0
                                  }
                                },
                                "osup_3_1e": {
                                  "det": {
                                    "tbl8": {
                                      "txval": 0
                                    }
                                  },
                                  "subtotal": {
                                    "txval": 0
                                  }
                                }
                              }
                            },
                            "r1fildt": "09-01-2024",
                            "r2bgendt": "14-01-2024",
                            "r3bgendt": "14-01-2024"
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7312c3d8-2ca7-4a0c-97bc-3f5a1ae21f7c"
                    }
                  },
                  "RT-R3BQ1004 GSTR-1 not filed": {
                    "summary": "RT-R3BQ1004 GSTR-1 not filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-R3BQ1004",
                          "message": "You have not filed GSTR-1 of the selected tax period. Please file the same to enable filing of GSTR-3B."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "40c31123-00e7-4d2a-a88a-26ad86ccdfd8"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-3b/{year}/{month}/validate": {
      "post": {
        "summary": "Validate GSTR-3B",
        "deprecated": false,
        "description": "Authenticated tax payer can upload GSTR-3B json to GST portal",
        "operationId": "validateGstr3b",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-3B"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "gstin": {
                    "type": "string",
                    "example": "24AAACQ3770E1ZP"
                  },
                  "inter_sup": {
                    "type": "object",
                    "properties": {
                      "comp_details": {
                        "type": "array",
                        "items": {},
                        "example": []
                      },
                      "uin_details": {
                        "type": "array",
                        "items": {},
                        "example": []
                      },
                      "unreg_details": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "iamt": {
                              "type": "number",
                              "example": 2958.11
                            },
                            "pos": {
                              "type": "string",
                              "example": "33"
                            },
                            "txval": {
                              "type": "number",
                              "example": 16433.99
                            }
                          }
                        },
                        "example": [
                          {
                            "iamt": 2958.11,
                            "pos": "33",
                            "txval": 16433.99
                          },
                          {
                            "iamt": 915.1,
                            "pos": "23",
                            "txval": 5083.9
                          },
                          {
                            "iamt": 1524.96,
                            "pos": "36",
                            "txval": 8472.04
                          },
                          {
                            "iamt": 304.93,
                            "pos": "03",
                            "txval": 1694.07
                          },
                          {
                            "iamt": 182.14,
                            "pos": "04",
                            "txval": 1011.86
                          },
                          {
                            "iamt": 4280.82,
                            "pos": "27",
                            "txval": 23782.18
                          },
                          {
                            "iamt": 91.07,
                            "pos": "16",
                            "txval": 505.93
                          },
                          {
                            "iamt": 1067.49,
                            "pos": "06",
                            "txval": 5930.51
                          },
                          {
                            "iamt": 915.1,
                            "pos": "18",
                            "txval": 5083.9
                          },
                          {
                            "iamt": 3412.09,
                            "pos": "07",
                            "txval": 18956.01
                          },
                          {
                            "iamt": 7574.82,
                            "pos": "29",
                            "txval": 42082.28
                          },
                          {
                            "iamt": 113.95,
                            "pos": "19",
                            "txval": 633.05
                          },
                          {
                            "iamt": 272.75,
                            "pos": "08",
                            "txval": 1515.25
                          },
                          {
                            "iamt": 1550.6,
                            "pos": "09",
                            "txval": 8614.4
                          },
                          {
                            "iamt": 113.95,
                            "pos": "20",
                            "txval": 633.05
                          },
                          {
                            "iamt": 0,
                            "pos": "10",
                            "txval": 0
                          },
                          {
                            "iamt": 113.95,
                            "pos": "21",
                            "txval": 633.05
                          },
                          {
                            "iamt": 1477.39,
                            "pos": "32",
                            "txval": 8207.71
                          }
                        ]
                      }
                    }
                  },
                  "itc_elg": {
                    "type": "object",
                    "properties": {
                      "itc_avl": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "camt": {
                              "type": "number",
                              "example": 0
                            },
                            "csamt": {
                              "type": "number",
                              "example": 0
                            },
                            "iamt": {
                              "type": "number",
                              "example": 0
                            },
                            "samt": {
                              "type": "number",
                              "example": 0
                            },
                            "ty": {
                              "type": "string",
                              "example": "IMPG"
                            }
                          }
                        },
                        "example": [
                          {
                            "camt": 0,
                            "csamt": 0,
                            "iamt": 0,
                            "samt": 0,
                            "ty": "IMPG"
                          },
                          {
                            "camt": 0,
                            "csamt": 0,
                            "iamt": 0,
                            "samt": 0,
                            "ty": "IMPS"
                          },
                          {
                            "camt": 7826.48,
                            "csamt": 0,
                            "iamt": 0,
                            "samt": 7826.48,
                            "ty": "ISRC"
                          },
                          {
                            "camt": 0,
                            "csamt": 0,
                            "iamt": 0,
                            "samt": 0,
                            "ty": "ISD"
                          },
                          {
                            "camt": 3037,
                            "csamt": 0,
                            "iamt": 15744,
                            "samt": 3037,
                            "ty": "OTH"
                          }
                        ]
                      },
                      "itc_inelg": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "camt": {
                              "type": "number",
                              "example": 0
                            },
                            "csamt": {
                              "type": "number",
                              "example": 0
                            },
                            "iamt": {
                              "type": "number",
                              "example": 0
                            },
                            "samt": {
                              "type": "number",
                              "example": 0
                            },
                            "ty": {
                              "type": "string",
                              "example": "RUL"
                            }
                          }
                        },
                        "example": [
                          {
                            "camt": 0,
                            "csamt": 0,
                            "iamt": 0,
                            "samt": 0,
                            "ty": "RUL"
                          },
                          {
                            "camt": 0,
                            "csamt": 0,
                            "iamt": 0,
                            "samt": 0,
                            "ty": "OTH"
                          }
                        ]
                      },
                      "itc_net": {
                        "type": "object",
                        "properties": {
                          "camt": {
                            "type": "number",
                            "example": 10863.48
                          },
                          "csamt": {
                            "type": "number",
                            "example": 0
                          },
                          "iamt": {
                            "type": "number",
                            "example": 15744
                          },
                          "samt": {
                            "type": "number",
                            "example": 10863.48
                          }
                        }
                      },
                      "itc_rev": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "camt": {
                              "type": "number",
                              "example": 0
                            },
                            "csamt": {
                              "type": "number",
                              "example": 0
                            },
                            "iamt": {
                              "type": "number",
                              "example": 0
                            },
                            "samt": {
                              "type": "number",
                              "example": 0
                            },
                            "ty": {
                              "type": "string",
                              "example": "RUL"
                            }
                          }
                        },
                        "example": [
                          {
                            "camt": 0,
                            "csamt": 0,
                            "iamt": 0,
                            "samt": 0,
                            "ty": "RUL"
                          },
                          {
                            "camt": 0,
                            "csamt": 0,
                            "iamt": 0,
                            "samt": 0,
                            "ty": "OTH"
                          }
                        ]
                      }
                    }
                  },
                  "ret_period": {
                    "type": "string",
                    "example": "112024"
                  },
                  "sup_details": {
                    "type": "object",
                    "properties": {
                      "isup_rev": {
                        "type": "object",
                        "properties": {
                          "camt": {
                            "type": "number",
                            "example": 7826.48
                          },
                          "csamt": {
                            "type": "number",
                            "example": 0
                          },
                          "iamt": {
                            "type": "number",
                            "example": 0
                          },
                          "samt": {
                            "type": "number",
                            "example": 7826.48
                          },
                          "txval": {
                            "type": "number",
                            "example": 86960.78
                          }
                        }
                      },
                      "osup_det": {
                        "type": "object",
                        "properties": {
                          "camt": {
                            "type": "number",
                            "example": 7477.04
                          },
                          "csamt": {
                            "type": "number",
                            "example": 0
                          },
                          "iamt": {
                            "type": "number",
                            "example": 33219.15
                          },
                          "samt": {
                            "type": "number",
                            "example": 7477.04
                          },
                          "txval": {
                            "type": "number",
                            "example": 267629.65
                          }
                        }
                      },
                      "osup_nil_exmp": {
                        "type": "object",
                        "properties": {
                          "camt": {
                            "type": "number",
                            "example": 0
                          },
                          "csamt": {
                            "type": "number",
                            "example": 0
                          },
                          "iamt": {
                            "type": "number",
                            "example": 0
                          },
                          "samt": {
                            "type": "number",
                            "example": 0
                          },
                          "txval": {
                            "type": "number",
                            "example": 0
                          }
                        }
                      },
                      "osup_nongst": {
                        "type": "object",
                        "properties": {
                          "camt": {
                            "type": "number",
                            "example": 0
                          },
                          "csamt": {
                            "type": "number",
                            "example": 0
                          },
                          "iamt": {
                            "type": "number",
                            "example": 0
                          },
                          "samt": {
                            "type": "number",
                            "example": 0
                          },
                          "txval": {
                            "type": "number",
                            "example": 0
                          }
                        }
                      },
                      "osup_zero": {
                        "type": "object",
                        "properties": {
                          "camt": {
                            "type": "number",
                            "example": 0
                          },
                          "csamt": {
                            "type": "number",
                            "example": 0
                          },
                          "iamt": {
                            "type": "number",
                            "example": 0
                          },
                          "samt": {
                            "type": "number",
                            "example": 0
                          },
                          "txval": {
                            "type": "number",
                            "example": 0
                          }
                        }
                      }
                    }
                  }
                }
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "ret_period": "112024",
                    "gstin": "24AAACQ3770E1ZP",
                    "sup_details": {
                      "osup_zero": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_nil_exmp": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_nongst": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_det": {
                        "samt": 7477.04,
                        "csamt": 0,
                        "txval": 267629.65,
                        "camt": 7477.04,
                        "iamt": 33219.15
                      },
                      "isup_rev": {
                        "samt": 7826.48,
                        "csamt": 0,
                        "txval": 86960.78,
                        "camt": 7826.48,
                        "iamt": 0
                      }
                    },
                    "inter_sup": {
                      "unreg_details": [
                        {
                          "pos": "33",
                          "txval": 16433.99,
                          "iamt": 2958.11
                        },
                        {
                          "pos": "23",
                          "txval": 5083.9,
                          "iamt": 915.1
                        },
                        {
                          "pos": "36",
                          "txval": 8472.04,
                          "iamt": 1524.96
                        },
                        {
                          "pos": "03",
                          "txval": 1694.07,
                          "iamt": 304.93
                        },
                        {
                          "pos": "04",
                          "txval": 1011.86,
                          "iamt": 182.14
                        },
                        {
                          "pos": "27",
                          "txval": 23782.18,
                          "iamt": 4280.82
                        },
                        {
                          "pos": "16",
                          "txval": 505.93,
                          "iamt": 91.07
                        },
                        {
                          "pos": "06",
                          "txval": 5930.51,
                          "iamt": 1067.49
                        },
                        {
                          "pos": "18",
                          "txval": 5083.9,
                          "iamt": 915.1
                        },
                        {
                          "pos": "07",
                          "txval": 18956.01,
                          "iamt": 3412.09
                        },
                        {
                          "pos": "29",
                          "txval": 42082.28,
                          "iamt": 7574.82
                        },
                        {
                          "pos": "19",
                          "txval": 633.05,
                          "iamt": 113.95
                        },
                        {
                          "pos": "08",
                          "txval": 1515.25,
                          "iamt": 272.75
                        },
                        {
                          "pos": "09",
                          "txval": 8614.4,
                          "iamt": 1550.6
                        },
                        {
                          "pos": "20",
                          "txval": 633.05,
                          "iamt": 113.95
                        },
                        {
                          "pos": "10",
                          "txval": 0,
                          "iamt": 0
                        },
                        {
                          "pos": "21",
                          "txval": 633.05,
                          "iamt": 113.95
                        },
                        {
                          "pos": "32",
                          "txval": 8207.71,
                          "iamt": 1477.39
                        }
                      ],
                      "comp_details": [],
                      "uin_details": []
                    },
                    "itc_elg": {
                      "itc_avl": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "IMPG",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "IMPS",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 7826.48,
                          "csamt": 0,
                          "ty": "ISRC",
                          "camt": 7826.48,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "ISD",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 3037,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 3037,
                          "iamt": 15744
                        }
                      ],
                      "itc_net": {
                        "samt": 10863.48,
                        "csamt": 0,
                        "camt": 10863.48,
                        "iamt": 15744
                      },
                      "itc_rev": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "RUL",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 0,
                          "iamt": 0
                        }
                      ],
                      "itc_inelg": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "RUL",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 0,
                          "iamt": 0
                        }
                      ]
                    }
                  },
                  "summary": "200 Success"
                },
                "Validate GSTR-3B": {
                  "value": {
                    "gstin": "24AAACQ3770E1ZP",
                    "inter_sup": {
                      "comp_details": [],
                      "uin_details": [],
                      "unreg_details": [
                        {
                          "iamt": 2958.11,
                          "pos": "33",
                          "txval": 16433.99
                        },
                        {
                          "iamt": 915.1,
                          "pos": "23",
                          "txval": 5083.9
                        },
                        {
                          "iamt": 1524.96,
                          "pos": "36",
                          "txval": 8472.04
                        },
                        {
                          "iamt": 304.93,
                          "pos": "03",
                          "txval": 1694.07
                        },
                        {
                          "iamt": 182.14,
                          "pos": "04",
                          "txval": 1011.86
                        },
                        {
                          "iamt": 4280.82,
                          "pos": "27",
                          "txval": 23782.18
                        },
                        {
                          "iamt": 91.07,
                          "pos": "16",
                          "txval": 505.93
                        },
                        {
                          "iamt": 1067.49,
                          "pos": "06",
                          "txval": 5930.51
                        },
                        {
                          "iamt": 915.1,
                          "pos": "18",
                          "txval": 5083.9
                        },
                        {
                          "iamt": 3412.09,
                          "pos": "07",
                          "txval": 18956.01
                        },
                        {
                          "iamt": 7574.82,
                          "pos": "29",
                          "txval": 42082.28
                        },
                        {
                          "iamt": 113.95,
                          "pos": "19",
                          "txval": 633.05
                        },
                        {
                          "iamt": 272.75,
                          "pos": "08",
                          "txval": 1515.25
                        },
                        {
                          "iamt": 1550.6,
                          "pos": "09",
                          "txval": 8614.4
                        },
                        {
                          "iamt": 113.95,
                          "pos": "20",
                          "txval": 633.05
                        },
                        {
                          "iamt": 0,
                          "pos": "10",
                          "txval": 0
                        },
                        {
                          "iamt": 113.95,
                          "pos": "21",
                          "txval": 633.05
                        },
                        {
                          "iamt": 1477.39,
                          "pos": "32",
                          "txval": 8207.71
                        }
                      ]
                    },
                    "itc_elg": {
                      "itc_avl": [
                        {
                          "camt": 0,
                          "csamt": 0,
                          "iamt": 0,
                          "samt": 0,
                          "ty": "IMPG"
                        },
                        {
                          "camt": 0,
                          "csamt": 0,
                          "iamt": 0,
                          "samt": 0,
                          "ty": "IMPS"
                        },
                        {
                          "camt": 7826.48,
                          "csamt": 0,
                          "iamt": 0,
                          "samt": 7826.48,
                          "ty": "ISRC"
                        },
                        {
                          "camt": 0,
                          "csamt": 0,
                          "iamt": 0,
                          "samt": 0,
                          "ty": "ISD"
                        },
                        {
                          "camt": 3037,
                          "csamt": 0,
                          "iamt": 15744,
                          "samt": 3037,
                          "ty": "OTH"
                        }
                      ],
                      "itc_inelg": [
                        {
                          "camt": 0,
                          "csamt": 0,
                          "iamt": 0,
                          "samt": 0,
                          "ty": "RUL"
                        },
                        {
                          "camt": 0,
                          "csamt": 0,
                          "iamt": 0,
                          "samt": 0,
                          "ty": "OTH"
                        }
                      ],
                      "itc_net": {
                        "camt": 10863.48,
                        "csamt": 0,
                        "iamt": 15744,
                        "samt": 10863.48
                      },
                      "itc_rev": [
                        {
                          "camt": 0,
                          "csamt": 0,
                          "iamt": 0,
                          "samt": 0,
                          "ty": "RUL"
                        },
                        {
                          "camt": 0,
                          "csamt": 0,
                          "iamt": 0,
                          "samt": 0,
                          "ty": "OTH"
                        }
                      ]
                    },
                    "ret_period": "112024",
                    "sup_details": {
                      "isup_rev": {
                        "camt": 7826.48,
                        "csamt": 0,
                        "iamt": 0,
                        "samt": 7826.48,
                        "txval": 86960.78
                      },
                      "osup_det": {
                        "camt": 7477.04,
                        "csamt": 0,
                        "iamt": 33219.15,
                        "samt": 7477.04,
                        "txval": 267629.65
                      },
                      "osup_nil_exmp": {
                        "camt": 0,
                        "csamt": 0,
                        "iamt": 0,
                        "samt": 0,
                        "txval": 0
                      },
                      "osup_nongst": {
                        "camt": 0,
                        "csamt": 0,
                        "iamt": 0,
                        "samt": 0,
                        "txval": 0
                      },
                      "osup_zero": {
                        "camt": 0,
                        "csamt": 0,
                        "iamt": 0,
                        "samt": 0,
                        "txval": 0
                      }
                    }
                  },
                  "summary": "Validate GSTR-3B"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "data": {
                          "type": "object",
                          "properties": {
                            "elgitc": {
                              "type": "object",
                              "properties": {
                                "itc4a3": {
                                  "type": "object",
                                  "properties": {
                                    "error_fields": {
                                      "type": "array",
                                      "items": {
                                        "type": "string",
                                        "example": "camt"
                                      },
                                      "example": [
                                        "camt",
                                        "samt"
                                      ]
                                    }
                                  }
                                },
                                "itc4a5": {
                                  "type": "object",
                                  "properties": {
                                    "error_fields": {
                                      "type": "array",
                                      "items": {
                                        "type": "string",
                                        "example": "iamt"
                                      },
                                      "example": [
                                        "iamt",
                                        "camt",
                                        "samt"
                                      ]
                                    }
                                  }
                                }
                              }
                            },
                            "error_message": {
                              "type": "string",
                              "example": "The below fields are significantly different from the system computed value."
                            },
                            "gstin": {
                              "type": "string",
                              "example": "24AAACQ3770E1ZP"
                            },
                            "isValid": {
                              "type": "string",
                              "example": "N"
                            },
                            "ret_period": {
                              "type": "string",
                              "example": "112024"
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "1"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1734591883000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "0f47ce78-c5b8-43d2-a23a-980d77d665b9"
                    }
                  }
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "elgitc": {
                            "itc4a3": {
                              "error_fields": [
                                "camt",
                                "samt"
                              ]
                            },
                            "itc4a5": {
                              "error_fields": [
                                "iamt",
                                "camt",
                                "samt"
                              ]
                            }
                          },
                          "error_message": "The below fields are significantly different from the system computed value.",
                          "gstin": "24AAACQ3770E1ZP",
                          "isValid": "N",
                          "ret_period": "112024"
                        },
                        "status_cd": "1"
                      },
                      "timestamp": 1734591883000,
                      "transaction_id": "0f47ce78-c5b8-43d2-a23a-980d77d665b9"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-3b/{year}/{month}/offset-liability": {
      "post": {
        "summary": "Offset Liability",
        "deprecated": false,
        "description": "Authenticated tax payer can upload GSTR-3B json to GST portal",
        "operationId": "gstr3bOffsetLiability",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-3B"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Gstr3bOffsetLiabilityRequest"
              },
              "examples": {
                "RT-3BGV1005 Invalid return period": {
                  "value": {
                    "pdcash": [
                      {
                        "liab_ldg_id": 0,
                        "trans_typ": 30002,
                        "ipd": 24217,
                        "cpd": 0,
                        "spd": 0,
                        "cspd": 0,
                        "i_intrpd": 0,
                        "c_intrpd": 0,
                        "s_intrpd": 0,
                        "cs_intrpd": 0,
                        "c_lfeepd": 0,
                        "s_lfeepd": 0
                      },
                      {
                        "liab_ldg_id": 0,
                        "trans_typ": 0,
                        "ipd": 0,
                        "cpd": 0,
                        "spd": 0,
                        "cspd": 0,
                        "i_intrpd": 0,
                        "c_intrpd": 0,
                        "s_intrpd": 0,
                        "cs_intrpd": 0,
                        "c_lfeepd": 0,
                        "s_lfeepd": 0
                      }
                    ],
                    "pditc": {
                      "liab_ldg_id": 0,
                      "trans_typ": 30002,
                      "i_pdi": 421,
                      "i_pdc": 1181,
                      "i_pds": 1181,
                      "c_pdi": 0,
                      "c_pdc": 0,
                      "s_pdi": 0,
                      "s_pds": 0,
                      "cs_pdcs": 0
                    }
                  },
                  "summary": "RT-3BGV1005 Invalid return period"
                },
                "200 Partial or excess payment is not allowed": {
                  "value": {
                    "pdcash": [
                      {
                        "liab_ldg_id": 0,
                        "trans_typ": 30002,
                        "ipd": 207,
                        "cpd": 0,
                        "spd": 0,
                        "cspd": 0,
                        "i_intrpd": 0,
                        "c_intrpd": 0,
                        "s_intrpd": 0,
                        "cs_intrpd": 0,
                        "c_lfeepd": 0,
                        "s_lfeepd": 0
                      },
                      {
                        "liab_ldg_id": 0,
                        "trans_typ": 30003,
                        "ipd": 0,
                        "cpd": 7826,
                        "spd": 7826,
                        "cspd": 0,
                        "i_intrpd": 0,
                        "c_intrpd": 0,
                        "s_intrpd": 0,
                        "cs_intrpd": 0,
                        "c_lfeepd": 0,
                        "s_lfeepd": 0
                      }
                    ],
                    "pditc": {
                      "liab_ldg_id": 0,
                      "trans_typ": 30002,
                      "i_pdi": 15744,
                      "i_pdc": 12795,
                      "i_pds": 4473,
                      "c_pdi": 0,
                      "c_pdc": 7477,
                      "s_pdi": 0,
                      "s_pds": 7477,
                      "cs_pdcs": 0
                    }
                  },
                  "summary": "200 Partial or excess payment is not allowed"
                },
                "200 Payment of tax done": {
                  "value": {
                    "pdcash": [
                      {
                        "liab_ldg_id": 0,
                        "trans_typ": 30002,
                        "ipd": 108051,
                        "cpd": 0,
                        "spd": 0,
                        "cspd": 0,
                        "i_intrpd": 0,
                        "c_intrpd": 0,
                        "s_intrpd": 0,
                        "cs_intrpd": 0,
                        "c_lfeepd": 0,
                        "s_lfeepd": 0
                      },
                      {
                        "liab_ldg_id": 0,
                        "trans_typ": 30003,
                        "ipd": 0,
                        "cpd": 9000,
                        "spd": 9000,
                        "cspd": 0,
                        "i_intrpd": 0,
                        "c_intrpd": 0,
                        "s_intrpd": 0,
                        "cs_intrpd": 0,
                        "c_lfeepd": 0,
                        "s_lfeepd": 0
                      }
                    ],
                    "pditc": {
                      "liab_ldg_id": 0,
                      "trans_typ": 30002,
                      "i_pdi": 218140,
                      "i_pdc": 25257,
                      "i_pds": 25257,
                      "c_pdi": 0,
                      "c_pdc": 8127,
                      "s_pdi": 0,
                      "s_pds": 8127,
                      "cs_pdcs": 0
                    },
                    "nettaxpay": [
                      {
                        "trans_typ": 30002,
                        "trans_desc": "Other than reverse charge",
                        "liab_ldg_id": 0,
                        "sgst": {
                          "intr": 0,
                          "tx": 8127,
                          "fee": 0
                        },
                        "cgst": {
                          "intr": 0,
                          "tx": 8127,
                          "fee": 0
                        },
                        "cess": {
                          "intr": 0,
                          "tx": 0,
                          "fee": 0
                        },
                        "igst": {
                          "intr": 0,
                          "tx": 376705,
                          "fee": 0
                        }
                      },
                      {
                        "trans_typ": 30003,
                        "trans_desc": "Reverse charge",
                        "liab_ldg_id": 0,
                        "sgst": {
                          "intr": 0,
                          "tx": 9000,
                          "fee": 0
                        },
                        "cgst": {
                          "intr": 0,
                          "tx": 9000,
                          "fee": 0
                        },
                        "cess": {
                          "intr": 0,
                          "tx": 0,
                          "fee": 0
                        },
                        "igst": {
                          "intr": 0,
                          "tx": 0,
                          "fee": 0
                        }
                      }
                    ]
                  },
                  "summary": "200 Payment of tax done"
                },
                "Request Example": {
                  "value": {
                    "pdcash": [
                      {
                        "liab_ldg_id": 0,
                        "trans_typ": 30002,
                        "ipd": 108051,
                        "cpd": 0,
                        "spd": 0,
                        "cspd": 0,
                        "i_intrpd": 0,
                        "c_intrpd": 0,
                        "s_intrpd": 0,
                        "cs_intrpd": 0,
                        "c_lfeepd": 0,
                        "s_lfeepd": 0
                      },
                      {
                        "liab_ldg_id": 0,
                        "trans_typ": 30003,
                        "ipd": 0,
                        "cpd": 9000,
                        "spd": 9000,
                        "cspd": 0,
                        "i_intrpd": 0,
                        "c_intrpd": 0,
                        "s_intrpd": 0,
                        "cs_intrpd": 0,
                        "c_lfeepd": 0,
                        "s_lfeepd": 0
                      }
                    ],
                    "pditc": {
                      "liab_ldg_id": 0,
                      "trans_typ": 30002,
                      "i_pdi": 218140,
                      "i_pdc": 25257,
                      "i_pds": 25257,
                      "c_pdi": 0,
                      "c_pdc": 8127,
                      "s_pdi": 0,
                      "s_pds": 8127,
                      "cs_pdcs": 0
                    },
                    "nettaxpay": [
                      {
                        "trans_typ": 30002,
                        "trans_desc": "Other than reverse charge",
                        "liab_ldg_id": 0,
                        "sgst": {
                          "intr": 0,
                          "tx": 8127,
                          "fee": 0
                        },
                        "cgst": {
                          "intr": 0,
                          "tx": 8127,
                          "fee": 0
                        },
                        "cess": {
                          "intr": 0,
                          "tx": 0,
                          "fee": 0
                        },
                        "igst": {
                          "intr": 0,
                          "tx": 376705,
                          "fee": 0
                        }
                      },
                      {
                        "trans_typ": 30003,
                        "trans_desc": "Reverse charge",
                        "liab_ldg_id": 0,
                        "sgst": {
                          "intr": 0,
                          "tx": 9000,
                          "fee": 0
                        },
                        "cgst": {
                          "intr": 0,
                          "tx": 9000,
                          "fee": 0
                        },
                        "cess": {
                          "intr": 0,
                          "tx": 0,
                          "fee": 0
                        },
                        "igst": {
                          "intr": 0,
                          "tx": 0,
                          "fee": 0
                        }
                      }
                    ]
                  },
                  "summary": "Request Example"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "RT-3BGV1005 Invalid return period / 200 Partial or excess payment is not allowed / 200 Payment of tax done",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Gstr3bOffsetLiabilityResponse"
                },
                "examples": {
                  "RT-3BGV1005 Invalid return period": {
                    "summary": "RT-3BGV1005 Invalid return period",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-3BGV1005",
                          "message": "Return period is invalid. If error persists quote error number RT-3BGV1005 when you contact customer care for quick resolution"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "71c5bead-7e71-4abf-8754-6e71180c0060"
                    }
                  },
                  "200 Partial or excess payment is not allowed": {
                    "summary": "200 Partial or excess payment is not allowed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-3BAS1070",
                          "message": "PARTIAL/EXCESS payment is not allowed.Please try again.If error persists quote error number RT-3BAS1070 when you contact customer care for quick resolution."
                        }
                      },
                      "timestamp": 1734593654000,
                      "transaction_id": "4f1382a4-d2ec-4903-b655-f8ff41e4db13"
                    }
                  },
                  "200 Payment of tax done": {
                    "summary": "200 Payment of tax done",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "Message": "Payment of tax successfully done"
                        }
                      },
                      "timestamp": 1734602406000,
                      "transaction_id": "a9981461-3ddf-485e-bc25-eb5b51ab4646"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-3b/{year}/{month}/file": {
      "post": {
        "summary": "File GSTR-3B",
        "deprecated": false,
        "description": "Authenticated tax payer can upload GSTR-3B json to GST portal",
        "operationId": "fileGstr3b",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-3B"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pan",
            "in": "query",
            "description": "PAN of the authorized signatory",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{pan}}"
            }
          },
          {
            "name": "otp",
            "in": "query",
            "description": "Generated EVC OTP",
            "required": true,
            "schema": {
              "type": "string",
              "example": "575757"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/FileGstr3bRequest"
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "tx_pmt": {
                      "net_tax_pay": [
                        {
                          "sgst": {
                            "intr": 0,
                            "tx": 4841,
                            "fee": 0
                          },
                          "liab_ldg_id": 0,
                          "tran_desc": "Other than Reverse Charge",
                          "cgst": {
                            "intr": 0,
                            "tx": 4841,
                            "fee": 0
                          },
                          "cess": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "igst": {
                            "intr": 0,
                            "tx": 259471,
                            "fee": 0
                          },
                          "trans_typ": 30002
                        },
                        {
                          "sgst": {
                            "intr": 0,
                            "tx": 9000,
                            "fee": 0
                          },
                          "liab_ldg_id": 0,
                          "tran_desc": "Reverse charge and supplies made u/s 9(5)",
                          "cgst": {
                            "intr": 0,
                            "tx": 9000,
                            "fee": 0
                          },
                          "cess": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "igst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "trans_typ": 30003
                        }
                      ],
                      "adjnegliab": [],
                      "pdnls": [],
                      "pdcash": [
                        {
                          "liab_ldg_id": 757163094,
                          "spd": 0,
                          "c_intrpd": 0,
                          "i_lfeepd": 0,
                          "cspd": 0,
                          "s_intrpd": 0,
                          "trans_typ": 30002,
                          "i_intrpd": 0,
                          "s_lfeepd": 0,
                          "cpd": 0,
                          "c_lfeepd": 0,
                          "cs_intrpd": 0,
                          "cs_lfeepd": 0,
                          "ipd": 44357
                        },
                        {
                          "liab_ldg_id": 757163095,
                          "spd": 9000,
                          "c_intrpd": 0,
                          "i_lfeepd": 0,
                          "cspd": 0,
                          "s_intrpd": 0,
                          "trans_typ": 30003,
                          "i_intrpd": 0,
                          "s_lfeepd": 0,
                          "cpd": 9000,
                          "c_lfeepd": 0,
                          "cs_intrpd": 0,
                          "cs_lfeepd": 0,
                          "ipd": 0
                        }
                      ],
                      "pditc": {
                        "s_pds": 4841,
                        "liab_ldg_id": 757163094,
                        "c_pdi": 0,
                        "cs_pdcs": 0,
                        "s_pdi": 0,
                        "i_pdi": 182450,
                        "c_pdc": 4841,
                        "i_pdc": 16332,
                        "i_pds": 16332,
                        "trans_typ": 30002
                      },
                      "tx_py": [
                        {
                          "sgst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "liab_ldg_id": 757163094,
                          "tran_desc": "Other than Reverse Charge",
                          "cgst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "cess": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "igst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "trans_typ": 30002
                        },
                        {
                          "sgst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "liab_ldg_id": 757163095,
                          "tran_desc": "Reverse charge and supplies made u/s 9(5)",
                          "cgst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "cess": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "igst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "trans_typ": 30003
                        }
                      ]
                    },
                    "eco_dtls": {
                      "eco_reg_sup": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "eco_sup": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "sup_details": {
                      "osup_zero": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_nil_exmp": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_nongst": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_det": {
                        "samt": 4841.23,
                        "csamt": 0,
                        "txval": 1495299.69,
                        "camt": 4841.23,
                        "iamt": 259471.16
                      },
                      "isup_rev": {
                        "samt": 9000,
                        "csamt": 0,
                        "txval": 100000,
                        "camt": 9000,
                        "iamt": 0
                      }
                    },
                    "intr_ltfee": {
                      "ltfee_details": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "intr_details": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "inter_sup": {
                      "unreg_details": [
                        {
                          "pos": "27",
                          "txval": 846.61,
                          "iamt": 152.39
                        },
                        {
                          "pos": "07",
                          "txval": 1693.22,
                          "iamt": 304.78
                        },
                        {
                          "pos": "29",
                          "txval": 149013.05,
                          "iamt": 26822.27
                        }
                      ],
                      "comp_details": [
                        {
                          "pos": "33",
                          "txval": 1157.31,
                          "iamt": 208.32
                        }
                      ],
                      "uin_details": []
                    },
                    "itc_elg": {
                      "itc_avl": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "IMPG",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "IMPS",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 9000,
                          "csamt": 0,
                          "ty": "ISRC",
                          "camt": 9000,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "ISD",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 12173,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 12173,
                          "iamt": 182450
                        }
                      ],
                      "itc_net": {
                        "samt": 21173,
                        "csamt": 0,
                        "camt": 21173,
                        "iamt": 182450
                      },
                      "itc_rev": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "RUL",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 0,
                          "iamt": 0
                        }
                      ],
                      "itc_inelg": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "RUL",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 0,
                          "iamt": 0
                        }
                      ]
                    }
                  },
                  "summary": "200 Success"
                },
                "200 You cannot file Nil return": {
                  "value": {},
                  "summary": "200 You cannot file Nil return"
                },
                "Request Example": {
                  "value": {
                    "tx_pmt": {
                      "net_tax_pay": [
                        {
                          "sgst": {
                            "intr": 0,
                            "tx": 4841,
                            "fee": 0
                          },
                          "liab_ldg_id": 0,
                          "tran_desc": "Other than Reverse Charge",
                          "cgst": {
                            "intr": 0,
                            "tx": 4841,
                            "fee": 0
                          },
                          "cess": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "igst": {
                            "intr": 0,
                            "tx": 259471,
                            "fee": 0
                          },
                          "trans_typ": 30002
                        },
                        {
                          "sgst": {
                            "intr": 0,
                            "tx": 9000,
                            "fee": 0
                          },
                          "liab_ldg_id": 0,
                          "tran_desc": "Reverse charge and supplies made u/s 9(5)",
                          "cgst": {
                            "intr": 0,
                            "tx": 9000,
                            "fee": 0
                          },
                          "cess": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "igst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "trans_typ": 30003
                        }
                      ],
                      "adjnegliab": [],
                      "pdnls": [],
                      "pdcash": [
                        {
                          "liab_ldg_id": 757163094,
                          "spd": 0,
                          "c_intrpd": 0,
                          "i_lfeepd": 0,
                          "cspd": 0,
                          "s_intrpd": 0,
                          "trans_typ": 30002,
                          "i_intrpd": 0,
                          "s_lfeepd": 0,
                          "cpd": 0,
                          "c_lfeepd": 0,
                          "cs_intrpd": 0,
                          "cs_lfeepd": 0,
                          "ipd": 44357
                        },
                        {
                          "liab_ldg_id": 757163095,
                          "spd": 9000,
                          "c_intrpd": 0,
                          "i_lfeepd": 0,
                          "cspd": 0,
                          "s_intrpd": 0,
                          "trans_typ": 30003,
                          "i_intrpd": 0,
                          "s_lfeepd": 0,
                          "cpd": 9000,
                          "c_lfeepd": 0,
                          "cs_intrpd": 0,
                          "cs_lfeepd": 0,
                          "ipd": 0
                        }
                      ],
                      "pditc": {
                        "s_pds": 4841,
                        "liab_ldg_id": 757163094,
                        "c_pdi": 0,
                        "cs_pdcs": 0,
                        "s_pdi": 0,
                        "i_pdi": 182450,
                        "c_pdc": 4841,
                        "i_pdc": 16332,
                        "i_pds": 16332,
                        "trans_typ": 30002
                      },
                      "tx_py": [
                        {
                          "sgst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "liab_ldg_id": 757163094,
                          "tran_desc": "Other than Reverse Charge",
                          "cgst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "cess": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "igst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "trans_typ": 30002
                        },
                        {
                          "sgst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "liab_ldg_id": 757163095,
                          "tran_desc": "Reverse charge and supplies made u/s 9(5)",
                          "cgst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "cess": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "igst": {
                            "intr": 0,
                            "tx": 0,
                            "fee": 0
                          },
                          "trans_typ": 30003
                        }
                      ]
                    },
                    "eco_dtls": {
                      "eco_reg_sup": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "eco_sup": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "sup_details": {
                      "osup_zero": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_nil_exmp": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_nongst": {
                        "samt": 0,
                        "csamt": 0,
                        "txval": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "osup_det": {
                        "samt": 4841.23,
                        "csamt": 0,
                        "txval": 1495299.69,
                        "camt": 4841.23,
                        "iamt": 259471.16
                      },
                      "isup_rev": {
                        "samt": 9000,
                        "csamt": 0,
                        "txval": 100000,
                        "camt": 9000,
                        "iamt": 0
                      }
                    },
                    "intr_ltfee": {
                      "ltfee_details": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "intr_details": {
                        "samt": 0,
                        "csamt": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "inter_sup": {
                      "unreg_details": [
                        {
                          "pos": "27",
                          "txval": 846.61,
                          "iamt": 152.39
                        },
                        {
                          "pos": "07",
                          "txval": 1693.22,
                          "iamt": 304.78
                        },
                        {
                          "pos": "29",
                          "txval": 149013.05,
                          "iamt": 26822.27
                        }
                      ],
                      "comp_details": [
                        {
                          "pos": "33",
                          "txval": 1157.31,
                          "iamt": 208.32
                        }
                      ],
                      "uin_details": []
                    },
                    "itc_elg": {
                      "itc_avl": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "IMPG",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "IMPS",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 9000,
                          "csamt": 0,
                          "ty": "ISRC",
                          "camt": 9000,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "ISD",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 12173,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 12173,
                          "iamt": 182450
                        }
                      ],
                      "itc_net": {
                        "samt": 21173,
                        "csamt": 0,
                        "camt": 21173,
                        "iamt": 182450
                      },
                      "itc_rev": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "RUL",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 0,
                          "iamt": 0
                        }
                      ],
                      "itc_inelg": [
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "RUL",
                          "camt": 0,
                          "iamt": 0
                        },
                        {
                          "samt": 0,
                          "csamt": 0,
                          "ty": "OTH",
                          "camt": 0,
                          "iamt": 0
                        }
                      ]
                    }
                  },
                  "summary": "Request Example"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "200 Success / 200 You cannot file Nil return",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FileGstr3bResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "ack_num": "AB2410242527396 19/11/2024 16:23"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "72da34f0-d6d1-4056-92e1-734fc29f0249"
                    }
                  },
                  "200 You cannot file Nil return": {
                    "summary": "200 You cannot file Nil return",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-3BAS1027",
                          "message": "There is a checksum mismatch or You cannot file Nil return as there are already saved values in 3B. If error persists quote error number RT-3BAS1027 when you contact customer care for quick resolution."
                        }
                      },
                      "timestamp": 1734603529000,
                      "transaction_id": "8df2a844-6c40-4da1-9792-334214734b85"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-4-annual/{year}/{month}/proceed": {
      "post": {
        "summary": "File GSTR-4 Annual",
        "deprecated": false,
        "description": "",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-4"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Year e.g. 2020",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Month e.g. 01",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pan",
            "in": "query",
            "description": "`required` PAN number of authorized signatory",
            "required": true,
            "example": "{{pan}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "otp",
            "in": "query",
            "description": "`required` Generated EVC",
            "required": true,
            "example": "123123",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "gstin": {
                    "type": "string"
                  },
                  "fp": {
                    "type": "string"
                  },
                  "isnil": {
                    "type": "string"
                  },
                  "chksum": {
                    "type": "string"
                  },
                  "agg_turnover": {
                    "type": "number"
                  },
                  "impsupsmry": {
                    "type": "object",
                    "properties": {
                      "b2bor": {
                        "type": "object",
                        "properties": {
                          "chksum": {
                            "type": "string"
                          },
                          "ttlrec": {
                            "type": "integer"
                          },
                          "ttlval": {
                            "type": "integer"
                          },
                          "ttligst": {
                            "type": "integer"
                          },
                          "ttlcgst": {
                            "type": "integer"
                          },
                          "ttlsgst": {
                            "type": "integer"
                          },
                          "ttlcess": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "chksum",
                          "ttlrec",
                          "ttlval",
                          "ttligst",
                          "ttlcgst",
                          "ttlsgst",
                          "ttlcess"
                        ]
                      },
                      "b2br": {
                        "type": "object",
                        "properties": {
                          "chksum": {
                            "type": "string"
                          },
                          "ttlrec": {
                            "type": "integer"
                          },
                          "ttlval": {
                            "type": "integer"
                          },
                          "ttligst": {
                            "type": "integer"
                          },
                          "ttlcgst": {
                            "type": "integer"
                          },
                          "ttlsgst": {
                            "type": "integer"
                          },
                          "ttlcess": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "chksum",
                          "ttlrec",
                          "ttlval",
                          "ttligst",
                          "ttlcgst",
                          "ttlsgst",
                          "ttlcess"
                        ]
                      },
                      "b2bur": {
                        "type": "object",
                        "properties": {
                          "chksum": {
                            "type": "string"
                          },
                          "ttlrec": {
                            "type": "integer"
                          },
                          "ttlval": {
                            "type": "number"
                          },
                          "ttligst": {
                            "type": "integer"
                          },
                          "ttlcgst": {
                            "type": "integer"
                          },
                          "ttlsgst": {
                            "type": "integer"
                          },
                          "ttlcess": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "chksum",
                          "ttlrec",
                          "ttlval",
                          "ttligst",
                          "ttlcgst",
                          "ttlsgst",
                          "ttlcess"
                        ]
                      },
                      "imps": {
                        "type": "object",
                        "properties": {
                          "chksum": {
                            "type": "string"
                          },
                          "ttlrec": {
                            "type": "integer"
                          },
                          "ttlval": {
                            "type": "integer"
                          },
                          "ttligst": {
                            "type": "integer"
                          },
                          "ttlcgst": {
                            "type": "integer"
                          },
                          "ttlsgst": {
                            "type": "integer"
                          },
                          "ttlcess": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "chksum",
                          "ttlrec",
                          "ttlval",
                          "ttligst",
                          "ttlcgst",
                          "ttlsgst",
                          "ttlcess"
                        ]
                      }
                    },
                    "required": [
                      "b2bor",
                      "b2br",
                      "b2bur",
                      "imps"
                    ]
                  },
                  "cmpsmry": {
                    "type": "object",
                    "properties": {
                      "out_sup": {
                        "type": "object",
                        "properties": {
                          "tax_val": {
                            "type": "integer"
                          },
                          "camt": {
                            "type": "integer"
                          },
                          "samt": {
                            "type": "integer"
                          },
                          "iamt": {
                            "type": "integer"
                          },
                          "csamt": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "tax_val",
                          "camt",
                          "samt",
                          "iamt",
                          "csamt"
                        ]
                      },
                      "in_sup": {
                        "type": "object",
                        "properties": {
                          "tax_val": {
                            "type": "integer"
                          },
                          "camt": {
                            "type": "integer"
                          },
                          "samt": {
                            "type": "integer"
                          },
                          "iamt": {
                            "type": "integer"
                          },
                          "csamt": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "tax_val",
                          "camt",
                          "samt",
                          "iamt",
                          "csamt"
                        ]
                      },
                      "intr_pay": {
                        "type": "object",
                        "properties": {
                          "camt": {
                            "type": "integer"
                          },
                          "samt": {
                            "type": "integer"
                          },
                          "iamt": {
                            "type": "integer"
                          },
                          "csamt": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "camt",
                          "samt",
                          "iamt",
                          "csamt"
                        ]
                      },
                      "tax_pay": {
                        "type": "object",
                        "properties": {
                          "tax_val": {
                            "type": "integer"
                          },
                          "camt": {
                            "type": "integer"
                          },
                          "samt": {
                            "type": "integer"
                          },
                          "iamt": {
                            "type": "integer"
                          },
                          "csamt": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "tax_val",
                          "camt",
                          "samt",
                          "iamt",
                          "csamt"
                        ]
                      },
                      "isnil": {
                        "type": "string"
                      },
                      "chksum": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "out_sup",
                      "in_sup",
                      "intr_pay",
                      "tax_pay",
                      "isnil",
                      "chksum"
                    ]
                  },
                  "inoutsup": {
                    "type": "object",
                    "properties": {
                      "outsupply": {
                        "type": "object",
                        "properties": {
                          "txval": {
                            "type": "number"
                          },
                          "iamt": {
                            "type": "integer"
                          },
                          "camt": {
                            "type": "number"
                          },
                          "samt": {
                            "type": "number"
                          },
                          "csamt": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "txval",
                          "iamt",
                          "camt",
                          "samt",
                          "csamt"
                        ]
                      },
                      "insupply": {
                        "type": "object",
                        "properties": {
                          "txval": {
                            "type": "number"
                          },
                          "iamt": {
                            "type": "integer"
                          },
                          "camt": {
                            "type": "integer"
                          },
                          "samt": {
                            "type": "integer"
                          },
                          "csamt": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "txval",
                          "iamt",
                          "camt",
                          "samt",
                          "csamt"
                        ]
                      }
                    },
                    "required": [
                      "outsupply",
                      "insupply"
                    ]
                  },
                  "tdstcssmry": {
                    "type": "object",
                    "properties": {
                      "ttlrec": {
                        "type": "integer"
                      },
                      "gross_val": {
                        "type": "integer"
                      },
                      "camt": {
                        "type": "integer"
                      },
                      "samt": {
                        "type": "integer"
                      }
                    },
                    "required": [
                      "ttlrec",
                      "gross_val",
                      "camt",
                      "samt"
                    ]
                  },
                  "paymenttax": {
                    "type": "object",
                    "properties": {
                      "tx_py": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "trans_desc": {
                              "type": "string"
                            },
                            "trancd": {
                              "type": "integer"
                            },
                            "sgst": {
                              "type": "integer"
                            },
                            "cgst": {
                              "type": "integer"
                            },
                            "cess": {
                              "type": "integer"
                            },
                            "igst": {
                              "type": "integer"
                            }
                          },
                          "required": [
                            "trans_desc",
                            "trancd",
                            "sgst",
                            "cgst",
                            "cess",
                            "igst"
                          ]
                        }
                      },
                      "cmp_pd": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "trans_desc": {
                              "type": "string"
                            },
                            "trancd": {
                              "type": "integer"
                            },
                            "sgst": {
                              "type": "integer"
                            },
                            "cgst": {
                              "type": "integer"
                            },
                            "cess": {
                              "type": "integer"
                            },
                            "igst": {
                              "type": "integer"
                            }
                          },
                          "required": [
                            "trans_desc",
                            "trancd",
                            "sgst",
                            "cgst",
                            "cess",
                            "igst"
                          ]
                        }
                      },
                      "neg_liab": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "bal_pay": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "trandate": {
                              "type": "string"
                            },
                            "trancd": {
                              "type": "integer"
                            },
                            "ipd": {
                              "type": "integer"
                            },
                            "cpd": {
                              "type": "integer"
                            },
                            "spd": {
                              "type": "integer"
                            },
                            "cspd": {
                              "type": "integer"
                            },
                            "s_lfeepd": {
                              "type": "integer"
                            },
                            "c_lfeepd": {
                              "type": "integer"
                            }
                          },
                          "required": [
                            "trandate",
                            "trancd",
                            "ipd",
                            "cpd",
                            "spd",
                            "cspd"
                          ]
                        }
                      }
                    },
                    "required": [
                      "tx_py",
                      "cmp_pd",
                      "neg_liab",
                      "bal_pay"
                    ]
                  },
                  "offset": {
                    "type": "object",
                    "properties": {
                      "bal_paid": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "trancd": {
                              "type": "integer"
                            },
                            "trandate": {
                              "type": "string"
                            },
                            "ipd": {
                              "type": "integer"
                            },
                            "cpd": {
                              "type": "integer"
                            },
                            "spd": {
                              "type": "integer"
                            },
                            "cspd": {
                              "type": "integer"
                            },
                            "i_intrpd": {
                              "type": "integer"
                            },
                            "c_intrpd": {
                              "type": "integer"
                            },
                            "s_intrpd": {
                              "type": "integer"
                            },
                            "cs_intrpd": {
                              "type": "integer"
                            },
                            "s_lfeepd": {
                              "type": "integer"
                            },
                            "c_lfeepd": {
                              "type": "integer"
                            }
                          },
                          "required": [
                            "trancd",
                            "trandate",
                            "ipd",
                            "cpd",
                            "spd",
                            "cspd"
                          ]
                        }
                      }
                    },
                    "required": [
                      "bal_paid"
                    ]
                  }
                },
                "required": [
                  "gstin",
                  "fp",
                  "isnil",
                  "chksum",
                  "agg_turnover",
                  "impsupsmry",
                  "cmpsmry",
                  "inoutsup",
                  "tdstcssmry",
                  "paymenttax",
                  "offset"
                ]
              },
              "examples": {
                "GSTR-4 Annual Proceed to File": {
                  "value": {
                    "gstin": "08AUGGC1893FDD5",
                    "ret_period": "032020"
                  },
                  "summary": "GSTR-4 Annual Proceed to File"
                },
                "File GSTR-4 Annual": {
                  "value": {
                    "gstin": "33AACCA8120ECZZ",
                    "fp": "032020",
                    "isnil": "N",
                    "chksum": "4aaa130c143ee5c9bffa7c48b490893d021b7609c58c3229cf76a5d8d2095a1d",
                    "agg_turnover": 1000012345678.95,
                    "impsupsmry": {
                      "b2bor": {
                        "chksum": "21d153d2a9af0870ca2b39aca548639c9fdc7f5a213c3e2ca47235dbebb24809",
                        "ttlrec": 0,
                        "ttlval": 0,
                        "ttligst": 0,
                        "ttlcgst": 0,
                        "ttlsgst": 0,
                        "ttlcess": 0
                      },
                      "b2br": {
                        "chksum": "21d153d2a9af0870ca2b39aca548639c9fdc7f5a213c3e2ca47235dbebb24809",
                        "ttlrec": 0,
                        "ttlval": 0,
                        "ttligst": 0,
                        "ttlcgst": 0,
                        "ttlsgst": 0,
                        "ttlcess": 0
                      },
                      "b2bur": {
                        "chksum": "ef0b5dfda2241ef3f2e83e144e422b1c17e7b9987d328ae7d7eff02bbb85371d",
                        "ttlrec": 1,
                        "ttlval": 5001234567890.12,
                        "ttligst": 21,
                        "ttlcgst": 0,
                        "ttlsgst": 0,
                        "ttlcess": 10
                      },
                      "imps": {
                        "chksum": "8e01d0ec4bd20135346e72c9629c047c4257d41b66fee41d6f57526484e33fa8",
                        "ttlrec": 1,
                        "ttlval": 700,
                        "ttligst": 21,
                        "ttlcgst": 0,
                        "ttlsgst": 0,
                        "ttlcess": 10
                      }
                    },
                    "cmpsmry": {
                      "out_sup": {
                        "tax_val": 0,
                        "camt": 0,
                        "samt": 0,
                        "iamt": 0,
                        "csamt": 0
                      },
                      "in_sup": {
                        "tax_val": 0,
                        "camt": 0,
                        "samt": 0,
                        "iamt": 0,
                        "csamt": 0
                      },
                      "intr_pay": {
                        "camt": 0,
                        "samt": 0,
                        "iamt": 0,
                        "csamt": 0
                      },
                      "tax_pay": {
                        "tax_val": 0,
                        "camt": 0,
                        "samt": 0,
                        "iamt": 0,
                        "csamt": 0
                      },
                      "isnil": "Y",
                      "chksum": "6fe856b88464e3a4bcdf4867e7c68370e2ae7408de498e9e106996f1eaa61a3d"
                    },
                    "inoutsup": {
                      "outsupply": {
                        "txval": 5001234570690.12,
                        "iamt": 0,
                        "camt": 50012345720.9,
                        "samt": 50012345720.9,
                        "csamt": 0
                      },
                      "insupply": {
                        "txval": 5001234568590.12,
                        "iamt": 42,
                        "camt": 0,
                        "samt": 0,
                        "csamt": 20
                      }
                    },
                    "tdstcssmry": {
                      "ttlrec": 0,
                      "gross_val": 0,
                      "camt": 0,
                      "samt": 0
                    },
                    "paymenttax": {
                      "tx_py": [
                        {
                          "trans_desc": "Reverse charge",
                          "trancd": 30003,
                          "sgst": 0,
                          "cgst": 0,
                          "cess": 20,
                          "igst": 42
                        },
                        {
                          "trans_desc": "Other than Reverse charge",
                          "trancd": 30002,
                          "sgst": 50012345721,
                          "cgst": 50012345721,
                          "cess": 0,
                          "igst": 0
                        }
                      ],
                      "cmp_pd": [
                        {
                          "trans_desc": "Reverse charge",
                          "trancd": 30003,
                          "sgst": 0,
                          "cgst": 0,
                          "cess": 0,
                          "igst": 0
                        },
                        {
                          "trans_desc": "Other than Reverse charge",
                          "trancd": 30002,
                          "sgst": 0,
                          "cgst": 0,
                          "cess": 0,
                          "igst": 0
                        }
                      ],
                      "neg_liab": [],
                      "bal_pay": [
                        {
                          "trandate": "13-06-2020",
                          "trancd": 30002,
                          "ipd": 0,
                          "cpd": 50012345721,
                          "spd": 50012345721,
                          "cspd": 0,
                          "s_lfeepd": 1075,
                          "c_lfeepd": 1075
                        },
                        {
                          "trandate": "13-06-2020",
                          "trancd": 30003,
                          "ipd": 42,
                          "cpd": 0,
                          "spd": 0,
                          "cspd": 20
                        }
                      ]
                    },
                    "offset": {
                      "bal_paid": [
                        {
                          "trancd": 30002,
                          "trandate": "13-06-2020",
                          "ipd": 0,
                          "cpd": 50012345721,
                          "spd": 50012345721,
                          "cspd": 0,
                          "i_intrpd": 0,
                          "c_intrpd": 0,
                          "s_intrpd": 0,
                          "cs_intrpd": 0,
                          "s_lfeepd": 1075,
                          "c_lfeepd": 1075
                        },
                        {
                          "trancd": 30003,
                          "trandate": "13-06-2020",
                          "ipd": 42,
                          "cpd": 0,
                          "spd": 0,
                          "cspd": 20
                        }
                      ]
                    }
                  },
                  "summary": "File GSTR-4 Annual"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-4-annual/summary": {
      "get": {
        "summary": "Get GSTR-4 Annual Summary",
        "deprecated": false,
        "description": "",
        "tags": [],
        "parameters": [
          {
            "name": "financial_period",
            "in": "query",
            "description": "eg. FY 2021-22",
            "required": true,
            "example": "{{financial_year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-4-annual/in-out-supply": {
      "get": {
        "summary": "Get GSTR-4 Annual Inward Outward Supply",
        "deprecated": false,
        "description": "",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-4"
        ],
        "parameters": [
          {
            "name": "financial_period",
            "in": "query",
            "description": "eg. 2021-22",
            "required": true,
            "example": "032023",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-4-annual/tdscmp-summary": {
      "get": {
        "summary": "Get GSTR-4 Annual CMP 08 and TDSTCS Summary",
        "deprecated": false,
        "description": "",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-4"
        ],
        "parameters": [
          {
            "name": "financial_period",
            "in": "query",
            "description": "eg. 2021-22",
            "required": true,
            "example": "{{financial_year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-4-annual/{year}/{month}": {
      "post": {
        "summary": "Save GSTR-4 Annual",
        "deprecated": false,
        "description": "",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-4"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Year e.g. 2020",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Month e.g. 01",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "gstin": {
                    "type": "string"
                  },
                  "agg_turnover": {
                    "type": "integer"
                  },
                  "fp": {
                    "type": "string"
                  },
                  "isnil": {
                    "type": "string"
                  },
                  "isreset": {
                    "type": "string"
                  },
                  "b2bor": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "type": "string"
                        },
                        "pos": {
                          "type": "string"
                        },
                        "itms": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "rt": {
                                "type": "integer"
                              },
                              "txval": {
                                "type": "integer"
                              },
                              "iamt": {
                                "type": "integer"
                              },
                              "camt": {
                                "type": "integer"
                              },
                              "samt": {
                                "type": "integer"
                              },
                              "csamt": {
                                "type": "integer"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "b2br": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "type": "string"
                        },
                        "pos": {
                          "type": "string"
                        },
                        "itms": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "rt": {
                                "type": "integer"
                              },
                              "txval": {
                                "type": "integer"
                              },
                              "iamt": {
                                "type": "integer"
                              },
                              "camt": {
                                "type": "integer"
                              },
                              "samt": {
                                "type": "integer"
                              },
                              "csamt": {
                                "type": "integer"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "b2bur": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "rchrg": {
                          "type": "string"
                        },
                        "itms": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "samt": {
                                "type": "integer"
                              },
                              "csamt": {
                                "type": "integer"
                              },
                              "rt": {
                                "type": "integer"
                              },
                              "txval": {
                                "type": "integer"
                              },
                              "camt": {
                                "type": "integer"
                              },
                              "iamt": {
                                "type": "integer"
                              }
                            }
                          }
                        },
                        "pos": {
                          "type": "string"
                        },
                        "trdnm": {
                          "type": "string"
                        },
                        "sply_ty": {
                          "type": "string"
                        },
                        "cpan": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "imps": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "itms": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "csamt": {
                                "type": "integer"
                              },
                              "rt": {
                                "type": "integer"
                              },
                              "txval": {
                                "type": "integer"
                              },
                              "iamt": {
                                "type": "integer"
                              }
                            }
                          }
                        },
                        "pos": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "outsupply": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "rt": {
                          "type": "integer"
                        },
                        "txval": {
                          "type": "integer"
                        }
                      },
                      "required": [
                        "rt",
                        "txval"
                      ]
                    }
                  }
                },
                "required": [
                  "gstin",
                  "agg_turnover",
                  "fp",
                  "isnil",
                  "isreset",
                  "b2bor",
                  "b2br",
                  "b2bur",
                  "imps",
                  "outsupply"
                ]
              },
              "examples": {
                "Save GSTR-4 Annual": {
                  "value": {
                    "gstin": "33ABCTN6051A1Z2",
                    "agg_turnover": 10000,
                    "fp": "032020",
                    "isnil": "N",
                    "isreset": "N",
                    "b2bor": [
                      {
                        "ctin": "01AABCE2207R1Z5",
                        "pos": "06",
                        "itms": [
                          {
                            "rt": 5,
                            "txval": 10000,
                            "iamt": 0,
                            "camt": 500,
                            "samt": 900,
                            "csamt": 500
                          }
                        ]
                      }
                    ],
                    "b2br": [
                      {
                        "ctin": "01AABCE2207R1Z5",
                        "pos": "06",
                        "itms": [
                          {
                            "rt": 5,
                            "txval": 10000,
                            "iamt": 0,
                            "camt": 500,
                            "samt": 900,
                            "csamt": 500
                          }
                        ]
                      }
                    ],
                    "b2bur": [
                      {
                        "rchrg": "N",
                        "itms": [
                          {
                            "samt": 0,
                            "csamt": 10,
                            "rt": 3,
                            "txval": 700,
                            "camt": 0,
                            "iamt": 21
                          }
                        ],
                        "pos": "07",
                        "trdnm": "ABC Ltd",
                        "sply_ty": "INTER",
                        "cpan": "AABCE2207R"
                      }
                    ],
                    "imps": [
                      {
                        "itms": [
                          {
                            "csamt": 10,
                            "rt": 3,
                            "txval": 700,
                            "iamt": 21
                          }
                        ],
                        "pos": "35"
                      }
                    ],
                    "outsupply": [
                      {
                        "rt": 0,
                        "txval": 700
                      },
                      {
                        "rt": 1,
                        "txval": 700
                      },
                      {
                        "rt": 2,
                        "txval": 700
                      },
                      {
                        "rt": 5,
                        "txval": 700
                      },
                      {
                        "rt": 6,
                        "txval": 700
                      }
                    ]
                  },
                  "summary": "Save GSTR-4 Annual"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-9/auto-calculated": {
      "get": {
        "summary": "GSTR-9 Auto Calculated Details",
        "deprecated": false,
        "description": "",
        "operationId": "gstr9AutoCalculatedDetails",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-9"
        ],
        "parameters": [
          {
            "name": "financial_year",
            "in": "query",
            "description": "Financial year. E.g., FY 2023-24",
            "required": true,
            "example": "FY 2024-25",
            "schema": {
              "type": "string",
              "example": "{{financial_year}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "GSTR-1/GSTR-3B not filed / Invalid Return Period / 200 Success / RT-9AS-1007 Processing summary calculation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Gstr9AutoCalculatedDetailsResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "aggTurnover": 34376971.41,
                          "fp": "032024",
                          "gstin": "29AAACQ3770E000",
                          "hsnMinLen": 6,
                          "table4": {
                            "amd_neg": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "amd_pos": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "at": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "b2b": {
                              "camt": 222404.68,
                              "csamt": 0,
                              "iamt": 50984.24,
                              "samt": 222404.68,
                              "txval": 2754408.56
                            },
                            "b2c": {
                              "camt": 33512.24,
                              "csamt": 0,
                              "iamt": 5701789.17,
                              "samt": 33512.24,
                              "txval": 32048951.84
                            },
                            "chksum": "dc742365e7c5c9dcc4efd3ff3fc77a2cc1d94339747f780fd2d7382d76af0c82",
                            "cr_nt": {
                              "camt": 8.76,
                              "csamt": 0,
                              "iamt": 76732.5,
                              "samt": 8.76,
                              "txval": 426388.99
                            },
                            "deemed": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "dr_nt": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "ecom": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "exp": {
                              "csamt": 0,
                              "iamt": 0,
                              "txval": 0
                            },
                            "rchrg": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0,
                              "txval": 0
                            },
                            "sez": {
                              "csamt": 0,
                              "iamt": 0,
                              "txval": 0
                            }
                          },
                          "table5": {
                            "amd_neg": {
                              "txval": 0
                            },
                            "amd_pos": {
                              "txval": 0
                            },
                            "chksum": "7a1def7ba17e36641074355a875c30e52d7485bbd60a8bbda9bc73afd88620e7",
                            "cr_nt": {
                              "txval": 0
                            },
                            "dr_nt": {
                              "txval": 0
                            },
                            "ecom_14": {
                              "txval": 0
                            },
                            "exmt": {
                              "txval": 0
                            },
                            "nil": {
                              "txval": 0
                            },
                            "non_gst": {
                              "txval": 0
                            },
                            "rchrg": {
                              "txval": 0
                            },
                            "sez": {
                              "txval": 0
                            },
                            "zero_rtd": {
                              "txval": 0
                            }
                          },
                          "table6": {
                            "chksum": "470acfff6eb2bff7726b8b0b64f0ecf2b0afced07877cb5d8e93135ed78e61c2",
                            "isd": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "itc_3b": {
                              "camt": 169941.56,
                              "csamt": 0,
                              "iamt": 826797.78,
                              "samt": 169941.56
                            },
                            "tran1": {
                              "camt": 0,
                              "samt": 0
                            },
                            "tran2": {
                              "camt": 0,
                              "samt": 0
                            }
                          },
                          "table8": {
                            "chksum": "9a318de4f9f555678af075a05be280be0f25f7b82dc1051ee76319e7a90dde81",
                            "itc_2b": {
                              "camt": 176819.92,
                              "csamt": 0,
                              "iamt": 818942.78,
                              "samt": 176819.92
                            }
                          },
                          "table9": {
                            "camt": {
                              "tax_paid_itc_camt": 61419,
                              "tax_paid_itc_iamt": 16529,
                              "txpaid_cash": 177960,
                              "txpyble": 255908
                            },
                            "chksum": "6612865879bd1f0ab456808c75c5402e6974c9ff6a51154777d1880fec82f041",
                            "csamt": {
                              "tax_paid_itc_csamt": 0,
                              "txpaid_cash": 0,
                              "txpyble": 0
                            },
                            "fee": {
                              "txpaid_cash": 50,
                              "txpyble": 50
                            },
                            "iamt": {
                              "tax_paid_itc_camt": 108521,
                              "tax_paid_itc_iamt": 824879,
                              "tax_paid_itc_samt": 108521,
                              "txpaid_cash": 4669454,
                              "txpyble": 5711375
                            },
                            "intr": {
                              "txpaid_cash": 0,
                              "txpyble": 0
                            },
                            "samt": {
                              "tax_paid_itc_iamt": 16529,
                              "tax_paid_itc_samt": 61419,
                              "txpaid_cash": 177960,
                              "txpyble": 255908
                            }
                          }
                        }
                      },
                      "timestamp": 1734687822000,
                      "transaction_id": "68db5ea8-f76b-4cad-97b6-507e46f0f283"
                    }
                  },
                  "GSTR-1/GSTR-3B not filed": {
                    "summary": "GSTR-1/GSTR-3B not filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-9AS-1008",
                          "message": "To file your annual return, filing of all applicable returns/statements (GSTR-1 and GSTR-3B) are mandatory. File your pending applicable return(s)/ statement(s) and try again."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "5861772e-a418-4897-b652-6b1d8c32d185"
                    }
                  },
                  "Invalid Return Period": {
                    "summary": "Invalid Return Period",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-9AV-1005",
                          "message": "Invalid Return Period"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "3a834acf-1c9d-4c57-8bcc-fde024401d77"
                    }
                  },
                  "RT-9AS-1007 Processing summary calculation": {
                    "summary": "RT-9AS-1007 Processing summary calculation",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-9AS-1007",
                          "message": "System computed summary is in progress. Please check after some time."
                        }
                      },
                      "timestamp": 1747049687199,
                      "transaction_id": "281a073e-56d4-4993-bef7-32f5a588f82d"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-9/table-8a": {
      "get": {
        "summary": "Section 8A Details",
        "deprecated": false,
        "description": "",
        "operationId": "gstr9Section8aDetails",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-9"
        ],
        "parameters": [
          {
            "name": "financial_year",
            "in": "query",
            "description": "Financial year. E.g., FY 2023-24",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{financial_year}}"
            }
          },
          {
            "name": "file_number",
            "in": "query",
            "description": "'optional' eg. 2 To be sent when there are multiple files",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{file_number}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "No records found / 200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Gstr9Section8aDetailsResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 13.05,
                                  "idt": "08-05-2023",
                                  "inum": "IN-11380",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 260.95,
                                  "val": 274
                                }
                              ],
                              "filingdt": "16-06-2023",
                              "rtnPrd": "062023",
                              "stin": "08ABCPP2123E2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3813.56,
                                  "idt": "19-12-2023",
                                  "inum": "OPV/997000175687",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 21186.44,
                                  "val": 25000
                                }
                              ],
                              "filingdt": "11-01-2024",
                              "rtnPrd": "122023",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2037.42,
                                  "idt": "30-11-2023",
                                  "inum": "4857105379",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 11319,
                                  "val": 13356.42
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 24.64,
                                  "idt": "30-11-2023",
                                  "inum": "4858858876",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 136.9,
                                  "val": 161.54
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 601.13,
                                  "idt": "31-05-2023",
                                  "inum": "NPBL/23-24/189",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3339.6,
                                  "val": 3940.73
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "27ABCCN3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "15-03-2024",
                                  "inum": "NPS/0324/0090274",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 565.76,
                                  "idt": "31-03-2024",
                                  "inum": "4XCFPHNO3URQ0324",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3143.12,
                                  "val": 4834.68
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7834.15,
                                  "idt": "31-03-2024",
                                  "inum": "GSDKTASVXEXU0324",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 43523.03,
                                  "val": 55950.85
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 80.2,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "03-10-2023",
                                  "inum": "VPDL-331",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 80.2,
                                  "txval": 1336.62,
                                  "val": 1497
                                }
                              ],
                              "filingdt": "09-01-2024",
                              "rtnPrd": "122023",
                              "stin": "24ABCPM7123B2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 944.01,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "SC/07/22-23",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 944.01,
                                  "txval": 10489,
                                  "val": 12377
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCPD8123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1082.49,
                                  "idt": "31-05-2023",
                                  "inum": "4XCFPHNO3URQ0523",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 6013.82,
                                  "val": 7680.57
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5702.56,
                                  "idt": "31-05-2023",
                                  "inum": "GSDKTASVXEXU0523",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 31680.87,
                                  "val": 40754.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 11.52,
                                  "idt": "31-05-2023",
                                  "inum": "JAOX75S6ZBWE0523",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 64,
                                  "val": 76.08
                                }
                              ],
                              "filingdt": "11-06-2023",
                              "rtnPrd": "052023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0.04,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "10-08-2023",
                                  "inum": "0138231000202443",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.04,
                                  "txval": 0.5,
                                  "val": 0.58
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCI1123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 518.4,
                                  "idt": "10-03-2024",
                                  "inum": "102324322476",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2880,
                                  "val": 3398.4
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "33ABCCZ4123M2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5.82,
                                  "idt": "02-03-2023",
                                  "inum": "SBM/RP/03/2924",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 32.33,
                                  "val": 38.15
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2.97,
                                  "idt": "02-03-2023",
                                  "inum": "SBM/RP/03/3041",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16.51,
                                  "val": 19.48
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 6.23,
                                  "idt": "03-03-2023",
                                  "inum": "SBM/RP/03/3732",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 34.59,
                                  "val": 40.82
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.48,
                                  "idt": "04-03-2023",
                                  "inum": "SBM/RP/03/4201",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.22,
                                  "val": 9.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.48,
                                  "idt": "04-03-2023",
                                  "inum": "SBM/RP/03/4202",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.22,
                                  "val": 9.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.48,
                                  "idt": "04-03-2023",
                                  "inum": "SBM/RP/03/4203",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.22,
                                  "val": 9.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.48,
                                  "idt": "04-03-2023",
                                  "inum": "SBM/RP/03/4204",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.22,
                                  "val": 9.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.48,
                                  "idt": "04-03-2023",
                                  "inum": "SBM/RP/03/4329",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.22,
                                  "val": 9.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.48,
                                  "idt": "04-03-2023",
                                  "inum": "SBM/RP/03/4330",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.22,
                                  "val": 9.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.48,
                                  "idt": "04-03-2023",
                                  "inum": "SBM/RP/03/4388",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.22,
                                  "val": 9.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.48,
                                  "idt": "04-03-2023",
                                  "inum": "SBM/RP/03/4429",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.22,
                                  "val": 9.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2.1,
                                  "idt": "07-03-2023",
                                  "inum": "SBM/RP/03/5748",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 11.66,
                                  "val": 13.76
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 12.46,
                                  "idt": "12-03-2023",
                                  "inum": "SBM/RP/03/8027",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 69.24,
                                  "val": 81.7
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 116.1,
                                  "idt": "15-03-2023",
                                  "inum": "SBM/RP/03/9057",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 645,
                                  "val": 761.1
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 8.88,
                                  "idt": "18-03-2023",
                                  "inum": "SBM/RP/03/10729",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 49.32,
                                  "val": 58.2
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1.47,
                                  "idt": "31-03-2023",
                                  "inum": "SBM/RP/03/17232",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8.19,
                                  "val": 9.66
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5.82,
                                  "idt": "31-03-2023",
                                  "inum": "SBM/RP/03/17287",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 32.33,
                                  "val": 38.15
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 6.2,
                                  "idt": "02-04-2023",
                                  "inum": "SBM/RP/04/3031",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 34.43,
                                  "val": 40.63
                                }
                              ],
                              "filingdt": "12-04-2023",
                              "rtnPrd": "042023",
                              "stin": "27ABCCS4123A2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-07-2023",
                                  "inum": "HT2424I000537885",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-07-2023",
                                  "inum": "HT2424I000578920",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "10-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1943.49,
                                  "idt": "31-07-2023",
                                  "inum": "MCOB/7/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 10797.2,
                                  "val": 12740.69
                                }
                              ],
                              "filingdt": "12-10-2023",
                              "rtnPrd": "092023",
                              "stin": "27ABCFM0123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 907,
                                  "idt": "30-06-2023",
                                  "inum": "07",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 5039,
                                  "val": 5946
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "29ABCFK6123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3196.8,
                                  "idt": "11-07-2023",
                                  "inum": "102324089975",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 17760,
                                  "val": 20956.8
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 604.8,
                                  "idt": "12-07-2023",
                                  "inum": "102324091511",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3360,
                                  "val": 3964.8
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 211.82,
                                  "idt": "24-07-2023",
                                  "inum": "102324100992",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1176.77,
                                  "val": 1388.59
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 52.95,
                                  "idt": "24-07-2023",
                                  "inum": "102324101389",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 294.19,
                                  "val": 347.14
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 50.17,
                                  "idt": "25-07-2023",
                                  "inum": "102324102340",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 278.71,
                                  "val": 328.88
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 17349.78,
                                  "idt": "03-10-2023",
                                  "inum": "AIN2324002362900",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 96387.64,
                                  "val": 113737.42
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 198,
                                  "idt": "10-11-2023",
                                  "inum": "NPS/1124/0088338",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1100,
                                  "val": 1298
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 22.95,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-01-2024",
                                  "inum": "GIN0003685",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 22.95,
                                  "txval": 255,
                                  "val": 301
                                }
                              ],
                              "filingdt": "10-02-2024",
                              "rtnPrd": "012024",
                              "stin": "24ABCPK3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3258.67,
                                  "idt": "31-03-2024",
                                  "inum": "4946138137",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 18103.74,
                                  "val": 21362.41
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 49.28,
                                  "idt": "31-03-2024",
                                  "inum": "4946552508",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 273.8,
                                  "val": 323.08
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "04-09-2023",
                                  "inum": "29CH230911940",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 216,
                                  "idt": "27-09-2023",
                                  "inum": "29CH2309102158",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1200,
                                  "val": 1416
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "12-09-2023",
                                  "inum": "29CH230948037",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "29ABCCZ3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 14811.97,
                                  "idt": "31-07-2023",
                                  "inum": "19",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 82288.73,
                                  "val": 97100.7
                                }
                              ],
                              "filingdt": "08-08-2023",
                              "rtnPrd": "072023",
                              "stin": "29ABCPS7123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 127,
                                  "idt": "30-11-2023",
                                  "inum": "4XCFPHNO3URQ1123",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 707.46,
                                  "val": 1290.99
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5234,
                                  "idt": "30-11-2023",
                                  "inum": "GSDKTASVXEXU1123",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 29078.51,
                                  "val": 38390.23
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 374,
                                  "idt": "06-09-2023",
                                  "inum": "MH1232409BY43553",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 7484,
                                  "val": 7858
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "27ABCCI2123B1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7313.94,
                                  "idt": "13-10-2023",
                                  "inum": "4072324270268",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 40633,
                                  "val": 47946.94
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCI7123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 259.2,
                                  "idt": "30-09-2023",
                                  "inum": "24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1440,
                                  "val": 1699
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "29ABCFK6123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 287.93,
                                  "idt": "30-06-2023",
                                  "inum": "MCOB/5/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1599.6,
                                  "val": 1887.53
                                }
                              ],
                              "filingdt": "12-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCFM0123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-04-2023",
                                  "inum": "HT2424I000091052",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "10-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-10-2023",
                                  "inum": "GJI0609327233250",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-10-2023",
                                  "inum": "GJI0609327264426",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-02-2024",
                                  "inum": "HT2424I001837631",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-02-2024",
                                  "inum": "HT2424I001883780",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "09-03-2024",
                              "rtnPrd": "022024",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 287.93,
                                  "idt": "30-06-2023",
                                  "inum": "JUNE/11/2023-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1599.6,
                                  "val": 1887.53
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCFA5123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 5591.67,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "28",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 5591.67,
                                  "txval": 62129.66,
                                  "val": 73313
                                },
                                {
                                  "camt": 675,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "29",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 675,
                                  "txval": 7500,
                                  "val": 8850
                                }
                              ],
                              "filingdt": "07-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0.27,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "11-03-2024",
                                  "inum": "0138241093375842",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.27,
                                  "txval": 3,
                                  "val": 3.54
                                },
                                {
                                  "camt": 0.9,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "11-03-2024",
                                  "inum": "0138241093377836",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.9,
                                  "txval": 10,
                                  "val": 11.8
                                }
                              ],
                              "filingdt": "10-04-2024",
                              "rtnPrd": "032024",
                              "stin": "24ABCCI1123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 144.72,
                                  "idt": "23-04-2023",
                                  "inum": "DEL4-432488",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 804,
                                  "val": 948.72
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "06ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 287.93,
                                  "idt": "30-09-2023",
                                  "inum": "KBA/23-24/0110",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1599.6,
                                  "val": 1888
                                }
                              ],
                              "filingdt": "10-10-2023",
                              "rtnPrd": "092023",
                              "stin": "22ABCPB7123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5049,
                                  "idt": "24-05-2023",
                                  "inum": "CG/22/2023-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 28050,
                                  "val": 33099
                                }
                              ],
                              "filingdt": "08-06-2023",
                              "rtnPrd": "052023",
                              "stin": "08ABCCC4123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 657.19,
                                  "idt": "31-07-2023",
                                  "inum": "LPTI/23-24/012",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3651.07,
                                  "val": 4308.26
                                }
                              ],
                              "filingdt": "09-08-2023",
                              "rtnPrd": "072023",
                              "stin": "08ABCFL8123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 25.75,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "04-09-2023",
                                  "inum": "AMD2-2170403",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 25.75,
                                  "txval": 286.06,
                                  "val": 337.56
                                },
                                {
                                  "camt": 22.22,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "04-09-2023",
                                  "inum": "AMD2-2170408",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 22.22,
                                  "txval": 246.87,
                                  "val": 291.31
                                },
                                {
                                  "camt": 22.26,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-09-2023",
                                  "inum": "AMD2-2380984",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 22.26,
                                  "txval": 247.28,
                                  "val": 291.8
                                },
                                {
                                  "camt": 51.06,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-09-2023",
                                  "inum": "AMD2-2380985",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 51.06,
                                  "txval": 567.38,
                                  "val": 669.5
                                },
                                {
                                  "camt": 24.45,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "25-10-2023",
                                  "inum": "RN1/AMD2-890391",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 24.45,
                                  "txval": 271.66,
                                  "val": 320.56
                                },
                                {
                                  "camt": 9.81,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "25-10-2023",
                                  "inum": "RN1/FAMA-16557",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 9.81,
                                  "txval": 108.95,
                                  "val": 128.57
                                }
                              ],
                              "filingdt": "12-10-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1334.79,
                                  "idt": "09-08-2023",
                                  "inum": "CC/23-24/334",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 7415.5,
                                  "val": 8750.29
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1662.71,
                                  "idt": "18-08-2023",
                                  "inum": "INV/23-24/0459",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 9237.29,
                                  "val": 10900
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "07ABCCS8123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 72,
                                  "idt": "31-08-2023",
                                  "inum": "INV-23/24-011",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 400,
                                  "val": 472
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "23ABCPG7123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 14.24,
                                  "idt": "18-07-2023",
                                  "inum": "QSBK-4745",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 284.76,
                                  "val": 299
                                }
                              ],
                              "filingdt": "19-08-2023",
                              "rtnPrd": "082023",
                              "stin": "33ABCPV0123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 403,
                                  "idt": "07-11-2023",
                                  "inum": "135004",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2240,
                                  "val": 2643
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 888.64,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "09-03-2024",
                                  "inum": "422331842",
                                  "inv_typ": "R",
                                  "iseligible": "N",
                                  "pos": "09",
                                  "rchrg": "N",
                                  "reason": "POS and supplier state are same but recipient state is different",
                                  "samt": 888.64,
                                  "txval": 14810.64,
                                  "val": 16587.92
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "09ABCCS0123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 604.8,
                                  "idt": "10-10-2023",
                                  "inum": "102324172803",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3360,
                                  "val": 3964.8
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 43.2,
                                  "idt": "10-08-2023",
                                  "inum": "NPS/0824/0085728",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 240,
                                  "val": 283.2
                                }
                              ],
                              "filingdt": "10-09-2023",
                              "rtnPrd": "082023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 20646.14,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "CSM23096",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 20646.14,
                                  "txval": 229401.56,
                                  "val": 270694
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCFC3123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-10-2023",
                                  "inum": "HT2424I001059236",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-10-2023",
                                  "inum": "HT2424I001100962",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "09-11-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.73,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "27-09-2023",
                                  "inum": "VPDL-290",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.73,
                                  "txval": 445.54,
                                  "val": 499
                                }
                              ],
                              "filingdt": "09-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCPM7123B2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 34.56,
                                  "idt": "30-04-2023",
                                  "inum": "2023-24-0007",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 192,
                                  "val": 227
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "27ABCCB0123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 28.9,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-06-2023",
                                  "inum": "AMD2-889667",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 28.9,
                                  "txval": 321.18,
                                  "val": 378.98
                                },
                                {
                                  "camt": 44,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-06-2023",
                                  "inum": "AMD2-890391",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 44,
                                  "txval": 888.71,
                                  "val": 976.71
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 52.62,
                                  "idt": "09-06-2023",
                                  "inum": "BOM5-1008576",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 292.38,
                                  "val": 345
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 86.44,
                                  "idt": "19-06-2023",
                                  "inum": "BOM5-1168283",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 480.16,
                                  "val": 566.6
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 554.67,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "104/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 554.67,
                                  "txval": 6163,
                                  "val": 7272
                                },
                                {
                                  "camt": 12341.88,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "106/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 12341.88,
                                  "txval": 137132,
                                  "val": 161815
                                }
                              ],
                              "filingdt": "19-07-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCPM2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7779.5,
                                  "idt": "20-10-2023",
                                  "inum": "BOM5-360167",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 43219.49,
                                  "val": 50998.99
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCD6123Q1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 289.52,
                                  "idt": "10-10-2023",
                                  "inum": "QSOP-51802",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1608.48,
                                  "val": 1898
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "29ABCCH5123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9000,
                                  "idt": "01-05-2023",
                                  "inum": "52",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50000,
                                  "val": 59000
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "29ABCCH9123B1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-07-2023",
                                  "inum": "GJI0606322728222",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-07-2023",
                                  "inum": "GJI0606322808011",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "10-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4.5,
                                  "idt": "10-01-2024",
                                  "inum": "KB00000857063314",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25,
                                  "val": 29.5
                                }
                              ],
                              "filingdt": "10-02-2024",
                              "rtnPrd": "012024",
                              "stin": "27ABCCK4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1690.2,
                                  "idt": "17-07-2023",
                                  "inum": "4072324270159",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 9390,
                                  "val": 11080.2
                                }
                              ],
                              "filingdt": "10-08-2023",
                              "rtnPrd": "072023",
                              "stin": "27ABCCI7123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 94.98,
                                  "idt": "08-09-2023",
                                  "inum": "IN-2813",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 527.72,
                                  "val": 622.7
                                }
                              ],
                              "filingdt": "09-10-2023",
                              "rtnPrd": "092023",
                              "stin": "07ABCPN6123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 432.11,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "04-11-2023",
                                  "inum": "C24E232400054985",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 432.11,
                                  "txval": 4801.2,
                                  "val": 5665.42
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "24ABCCJ6123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 344.97,
                                  "idt": "10-01-2024",
                                  "inum": "GST232400248",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1916.5,
                                  "val": 2261.47
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9,
                                  "idt": "31-01-2024",
                                  "inum": "POFLJAN141663",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50,
                                  "val": 59
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9,
                                  "idt": "31-01-2024",
                                  "inum": "POFLJAN141664",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50,
                                  "val": 59
                                }
                              ],
                              "filingdt": "10-02-2024",
                              "rtnPrd": "012024",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 328,
                                  "idt": "10-05-2023",
                                  "inum": "101915",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1820,
                                  "val": 2148
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 13,
                                  "idt": "16-05-2023",
                                  "inum": "102294",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 70,
                                  "val": 83
                                }
                              ],
                              "filingdt": "10-06-2023",
                              "rtnPrd": "052023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 24.64,
                                  "idt": "31-07-2023",
                                  "inum": "4771757217",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 136.9,
                                  "val": 161.54
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3497,
                                  "idt": "31-07-2023",
                                  "inum": "4778170402",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 19427.78,
                                  "val": 22924.78
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 94.45,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "06-09-2023",
                                  "inum": "241J2U3VI0923001",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 94.45,
                                  "txval": 3778,
                                  "val": 5028
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCCS9123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 515.75,
                                  "idt": "21-08-2023",
                                  "inum": "RKSV202324035",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2865.29,
                                  "val": 3381.04
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 396.12,
                                  "idt": "21-08-2023",
                                  "inum": "RKSV202324036",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2200.66,
                                  "val": 2596.78
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4587.19,
                                  "idt": "21-08-2023",
                                  "inum": "RKSV202324037",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25484.41,
                                  "val": 30071.6
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "27ABCCR3123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 428,
                                  "idt": "10-03-2024",
                                  "inum": "160722",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2380,
                                  "val": 2808
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-02-2024",
                                  "inum": "GJI0601433024436",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-02-2024",
                                  "inum": "GJI0601433140075",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "10-03-2024",
                              "rtnPrd": "022024",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 42538.26,
                                  "idt": "02-04-2023",
                                  "inum": "AIN2324000158149",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 236323.68,
                                  "val": 278861.94
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 43.2,
                                  "idt": "12-05-2023",
                                  "inum": "NPS/0524/0070220",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 240,
                                  "val": 283.2
                                }
                              ],
                              "filingdt": "10-06-2023",
                              "rtnPrd": "052023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 365.26,
                                  "idt": "31-08-2023",
                                  "inum": "NPBL/23-24/525",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2029.2,
                                  "val": 2394.46
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "27ABCCN3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 35.1,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-12-2023",
                                  "inum": "GIN0003609",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 35.1,
                                  "txval": 390,
                                  "val": 460
                                }
                              ],
                              "filingdt": "10-01-2024",
                              "rtnPrd": "122023",
                              "stin": "24ABCPK3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-04-2023",
                                  "inum": "GJI0603317946811",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "10-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 472.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-08-2023",
                                  "inum": "SI-62",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 472.5,
                                  "txval": 5250,
                                  "val": 6195
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCPS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2227.12,
                                  "idt": "06-06-2023",
                                  "inum": "2023-24/SRA-203",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 12372.88,
                                  "val": 14600
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCCV5123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 25759.87,
                                  "idt": "31-07-2023",
                                  "inum": "NBJ/QUICK/2324/6",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 143110.37,
                                  "val": 168870.24
                                }
                              ],
                              "filingdt": "09-08-2023",
                              "rtnPrd": "072023",
                              "stin": "27ABCPJ3123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 226.44,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-05-2023",
                                  "inum": "IN-2535",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 226.44,
                                  "txval": 2516.1,
                                  "val": 2968.98
                                }
                              ],
                              "filingdt": "10-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCCS2123L1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 25.14,
                                  "idt": "20-07-2023",
                                  "inum": "IN-31435",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 502.86,
                                  "val": 528
                                }
                              ],
                              "filingdt": "18-08-2023",
                              "rtnPrd": "082023",
                              "stin": "08ABCPP2123E2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1900.8,
                                  "idt": "10-09-2023",
                                  "inum": "102324144785",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 10560,
                                  "val": 12460.8
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 604.8,
                                  "idt": "10-11-2023",
                                  "inum": "102324201415",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3360,
                                  "val": 3964.8
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 432,
                                  "idt": "11-11-2023",
                                  "inum": "102324201876",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2400,
                                  "val": 2832
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1014.92,
                                  "idt": "30-06-2023",
                                  "inum": "16",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 5638.44,
                                  "val": 6653
                                }
                              ],
                              "filingdt": "09-07-2023",
                              "rtnPrd": "062023",
                              "stin": "09ABCFG3123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 11.7,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-03-2024",
                                  "inum": "GIN0003737",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 11.7,
                                  "txval": 130,
                                  "val": 154
                                },
                                {
                                  "camt": 11.7,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-03-2024",
                                  "inum": "GIN0003803",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 11.7,
                                  "txval": 130,
                                  "val": 154
                                }
                              ],
                              "filingdt": "09-04-2024",
                              "rtnPrd": "032024",
                              "stin": "24ABCPK3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 403,
                                  "idt": "10-02-2024",
                                  "inum": "154495",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2240,
                                  "val": 2643
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 179.96,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-08-2023",
                                  "inum": "SC/11/22-23",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 179.96,
                                  "txval": 1999.5,
                                  "val": 2359
                                }
                              ],
                              "filingdt": "09-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCPD8123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5522.41,
                                  "idt": "23-06-2023",
                                  "inum": "4072324270118",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 30680.07,
                                  "val": 36202.48
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCCI7123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-11-2023",
                                  "inum": "GJI0610328731610",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-11-2023",
                                  "inum": "GJI0610328949812",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "10-12-2023",
                              "rtnPrd": "112023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 518.4,
                                  "idt": "10-01-2024",
                                  "inum": "102324259840",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2880,
                                  "val": 3398.4
                                }
                              ],
                              "filingdt": "11-02-2024",
                              "rtnPrd": "012024",
                              "stin": "33ABCCZ4123M2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 373.43,
                                  "idt": "16-05-2023",
                                  "inum": "IN-633",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2074.6,
                                  "val": 2448.04
                                }
                              ],
                              "filingdt": "13-07-2023",
                              "rtnPrd": "062023",
                              "stin": "07ABCPS6123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3813.56,
                                  "idt": "17-08-2023",
                                  "inum": "OPV/997000167532",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 21186.44,
                                  "val": 25000
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4770,
                                  "idt": "29-01-2024",
                                  "inum": "INV-000848",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 26500,
                                  "val": 31270
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 360,
                                  "idt": "31-01-2024",
                                  "inum": "INV-000864",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2000,
                                  "val": 2960
                                }
                              ],
                              "filingdt": "09-02-2024",
                              "rtnPrd": "012024",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 2465.22,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "07-09-2023",
                                  "inum": "FBBL2424B19152",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 2465.22,
                                  "txval": 27391.3,
                                  "val": 32321.74
                                },
                                {
                                  "camt": 2700,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "21-09-2023",
                                  "inum": "FBBL2424B20408",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 2700,
                                  "txval": 30000,
                                  "val": 35400
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-09-2023",
                                  "inum": "HT2424I000884841",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-09-2023",
                                  "inum": "HT2424I000929346",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "10-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5166.36,
                                  "idt": "13-10-2023",
                                  "inum": "2/23-24/QK",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 28702,
                                  "val": 33868.36
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "07ABCCC9123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 24.64,
                                  "idt": "31-01-2024",
                                  "inum": "4903253966",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 136.9,
                                  "val": 161.54
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2888.65,
                                  "idt": "31-01-2024",
                                  "inum": "4904466326",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16048.06,
                                  "val": 18936.71
                                }
                              ],
                              "filingdt": "11-02-2024",
                              "rtnPrd": "012024",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 1147.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-08-2023",
                                  "inum": "53",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 1147.5,
                                  "txval": 12750,
                                  "val": 15045
                                },
                                {
                                  "camt": 162,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-08-2023",
                                  "inum": "54",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 162,
                                  "txval": 1800,
                                  "val": 2124
                                },
                                {
                                  "camt": 2970,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-09-2023",
                                  "inum": "59",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 2970,
                                  "txval": 33000,
                                  "val": 38940
                                }
                              ],
                              "filingdt": "10-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-06-2023",
                                  "inum": "HT2424I000378017",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-06-2023",
                                  "inum": "HT2424I000401613",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1223.71,
                                  "idt": "30-06-2023",
                                  "inum": "INV-23/24-005",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 6798.4,
                                  "val": 8022.11
                                }
                              ],
                              "filingdt": "09-07-2023",
                              "rtnPrd": "062023",
                              "stin": "23ABCPG7123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3036.08,
                                  "idt": "31-08-2023",
                                  "inum": "4793848650",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16867.12,
                                  "val": 19903.2
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 24.64,
                                  "idt": "31-08-2023",
                                  "inum": "4796335794",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 136.9,
                                  "val": 161.54
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 450,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-10-2023",
                                  "inum": "68",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 450,
                                  "txval": 5000,
                                  "val": 5900
                                },
                                {
                                  "camt": 472.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-10-2023",
                                  "inum": "69",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 472.5,
                                  "txval": 5250,
                                  "val": 6195
                                }
                              ],
                              "filingdt": "09-11-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1193.4,
                                  "idt": "07-06-2023",
                                  "inum": "29CH23061036",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 6630,
                                  "val": 7823.4
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "29ABCCZ3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3047.8,
                                  "idt": "15-04-2023",
                                  "inum": "S59823V000029179",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16932.2,
                                  "val": 19979.98
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 76.12,
                                  "idt": "15-04-2023",
                                  "inum": "S59823V000029180",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 422.88,
                                  "val": 499
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "27ABCCI3123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 648.16,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "15-05-2023",
                                  "inum": "C24E232400039546",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 648.16,
                                  "txval": 7201.8,
                                  "val": 8498.12
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCCI6123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 9.4,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "22-05-2023",
                                  "inum": "FAMA-5014",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 9.4,
                                  "txval": 376.2,
                                  "val": 395
                                }
                              ],
                              "filingdt": "10-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCCV4123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 20.63,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-05-2023",
                                  "inum": "GJI0604319491086",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 20.63,
                                  "txval": 229.23,
                                  "val": 270.49
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-05-2023",
                                  "inum": "GJI0604319611626",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "11-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2912.97,
                                  "idt": "30-06-2023",
                                  "inum": "NBJ/QUICK/2324/1",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16183.16,
                                  "val": 19096.13
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCPJ3123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 135,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "09-01-2024",
                                  "inum": "71A",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 135,
                                  "txval": 1500,
                                  "val": 1770
                                }
                              ],
                              "filingdt": "12-04-2024",
                              "rtnPrd": "032024",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "12-02-2024",
                                  "inum": "NPS/0224/0089675",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 466,
                                  "idt": "10-08-2023",
                                  "inum": "117152",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2590,
                                  "val": 3056
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 161,
                                  "idt": "04-09-2023",
                                  "inum": "I270000010062467",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3220,
                                  "val": 3381
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "27ABCCT8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 67.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "02-11-2023",
                                  "inum": "23-24/114",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 67.5,
                                  "txval": 750,
                                  "val": 885
                                }
                              ],
                              "filingdt": "10-12-2023",
                              "rtnPrd": "112023",
                              "stin": "24ABCPD9123Q1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 161.96,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-09-2023",
                                  "inum": "CSM23121",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 161.96,
                                  "txval": 1799.55,
                                  "val": 2123
                                },
                                {
                                  "camt": 161.96,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-09-2023",
                                  "inum": "CSM23129",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 161.96,
                                  "txval": 1799.55,
                                  "val": 2123
                                }
                              ],
                              "filingdt": "02-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCFC3123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 85.12,
                                  "idt": "26-04-2023",
                                  "inum": "BOM7-345149",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 472.88,
                                  "val": 558
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "27ABCCC8123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4008.42,
                                  "idt": "13-09-2023",
                                  "inum": "DEL4-2071398",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 22268.99,
                                  "val": 26277.41
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 202.67,
                                  "idt": "12-09-2023",
                                  "inum": "DEL5-2597464",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1125.96,
                                  "val": 1328.63
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "06ABCCA0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 232.52,
                                  "idt": "29-02-2024",
                                  "inum": "4XCFPHNO3URQ0224",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1291.77,
                                  "val": 1832.84
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7247.67,
                                  "idt": "29-02-2024",
                                  "inum": "GSDKTASVXEXU0224",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 40264.83,
                                  "val": 52457.38
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 504.58,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "04-09-2023",
                                  "inum": "SALE-5545659",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 504.58,
                                  "txval": 8409.6,
                                  "val": 9419
                                },
                                {
                                  "camt": 980.12,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-09-2023",
                                  "inum": "SALE-5545688",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 980.12,
                                  "txval": 10890.2,
                                  "val": 12850
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCCP6123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "12-12-2023",
                                  "inum": "NPS/1224/0088766",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                }
                              ],
                              "filingdt": "10-01-2024",
                              "rtnPrd": "122023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 225,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "06-06-2023",
                                  "inum": "35",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 225,
                                  "txval": 2500,
                                  "val": 2950
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCFM8123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 490,
                                  "idt": "22-08-2023",
                                  "inum": "MH1232408BT06155",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 9800,
                                  "val": 10290
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "27ABCCI2123B1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 16758.86,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "10",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 16758.86,
                                  "txval": 186209.52,
                                  "val": 219727.24
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCFP7123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4437.3,
                                  "idt": "10-10-2023",
                                  "inum": "BOM5-3694362",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 24651.7,
                                  "val": 29089
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCC8123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 12.68,
                                  "idt": "22-05-2023",
                                  "inum": "IN-1374",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 253.51,
                                  "val": 266.2
                                }
                              ],
                              "filingdt": "20-07-2023",
                              "rtnPrd": "072023",
                              "stin": "07ABCPB3123L1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 698.59,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "09-06-2023",
                                  "inum": "51",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 698.59,
                                  "txval": 7762.16,
                                  "val": 9160
                                }
                              ],
                              "filingdt": "13-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCPS2123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 2700,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "22-12-2023",
                                  "inum": "FBBL2424B29715",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 2700,
                                  "txval": 30000,
                                  "val": 35400
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-12-2023",
                                  "inum": "HT2424I001454703",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-12-2023",
                                  "inum": "HT2424I001485717",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "10-01-2024",
                              "rtnPrd": "122023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 28.68,
                                  "idt": "22-08-2023",
                                  "inum": "G06AI24I02073513",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 159.32,
                                  "val": 188
                                }
                              ],
                              "filingdt": "19-09-2023",
                              "rtnPrd": "092023",
                              "stin": "06ABCCM5123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0.04,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "11-09-2023",
                                  "inum": "0138231016004656",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.04,
                                  "txval": 0.5,
                                  "val": 0.58
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCCI1123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2160,
                                  "idt": "22-12-2023",
                                  "inum": "PAN-V/27/424",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 12000,
                                  "val": 14160
                                }
                              ],
                              "filingdt": "11-01-2024",
                              "rtnPrd": "122023",
                              "stin": "27ABCCU4123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 14949.36,
                                  "idt": "29-04-2023",
                                  "inum": "NPBL/23-24/97",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 83052,
                                  "val": 98001.36
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "27ABCCN3123G2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1181.3,
                                  "idt": "31-08-2023",
                                  "inum": "4XCFPHNO3URQ0823",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 6562.76,
                                  "val": 9192.78
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5834.18,
                                  "idt": "31-08-2023",
                                  "inum": "GSDKTASVXEXU0823",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 32412.09,
                                  "val": 42117.3
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 22.5,
                                  "idt": "31-08-2023",
                                  "inum": "JAOX75S6ZBWE0823",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 125,
                                  "val": 147.79
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 17533.07,
                                  "idt": "03-09-2023",
                                  "inum": "AIN2324002005072",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 97405.93,
                                  "val": 114939
                                }
                              ],
                              "filingdt": "10-10-2023",
                              "rtnPrd": "092023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3015.35,
                                  "idt": "31-05-2023",
                                  "inum": "4732287528",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16751.97,
                                  "val": 19767.32
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9.54,
                                  "idt": "31-05-2023",
                                  "inum": "4733543476",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 52.99,
                                  "val": 62.53
                                }
                              ],
                              "filingdt": "11-06-2023",
                              "rtnPrd": "052023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 50.36,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "21-04-2023",
                                  "inum": "IN-9",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 50.36,
                                  "txval": 839.28,
                                  "val": 940
                                }
                              ],
                              "filingdt": "19-05-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCPG8123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7.63,
                                  "idt": "31-05-2023",
                                  "inum": "PNOFLMAY108116",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 42.37,
                                  "val": 50
                                }
                              ],
                              "filingdt": "10-06-2023",
                              "rtnPrd": "052023",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 712.62,
                                  "idt": "30-06-2023",
                                  "inum": "KBA/23-24/0105",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3959,
                                  "val": 4672
                                }
                              ],
                              "filingdt": "08-07-2023",
                              "rtnPrd": "062023",
                              "stin": "22ABCPB7123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 160.65,
                                  "idt": "27-04-2023",
                                  "inum": "102324024110",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 892.5,
                                  "val": 1053.15
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 691.2,
                                  "idt": "27-04-2023",
                                  "inum": "102324024122",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3840,
                                  "val": 4531.2
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 4885.2,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "19-04-2023",
                                  "inum": "01",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 4885.2,
                                  "txval": 54280,
                                  "val": 64050
                                }
                              ],
                              "filingdt": "10-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCPK5123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1496.86,
                                  "idt": "31-12-2023",
                                  "inum": "4XCFPHNO3URQ1223",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8315.9,
                                  "val": 12711.98
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7384.13,
                                  "idt": "31-12-2023",
                                  "inum": "GSDKTASVXEXU1223",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 41022.9,
                                  "val": 52865.55
                                }
                              ],
                              "filingdt": "11-01-2024",
                              "rtnPrd": "122023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 61.03,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-07-2023",
                                  "inum": "PRN-724",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 61.03,
                                  "txval": 1876.95,
                                  "val": 1999
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCFG9123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 648.16,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "06-08-2023",
                                  "inum": "C24E232400103909",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 648.16,
                                  "txval": 7201.8,
                                  "val": 8498.12
                                }
                              ],
                              "filingdt": "09-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCI6123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 43.63,
                                  "idt": "22-05-2023",
                                  "inum": "BOM5-275744",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 242.37,
                                  "val": 286
                                }
                              ],
                              "filingdt": "11-06-2023",
                              "rtnPrd": "052023",
                              "stin": "27ABCCV4123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 13722.62,
                                  "idt": "02-06-2023",
                                  "inum": "AIN2324000699169",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 76236.78,
                                  "val": 89959.4
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 561.05,
                                  "idt": "02-06-2023",
                                  "inum": "AIN2324000699374",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3116.94,
                                  "val": 3677.99
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 48846.11,
                                  "idt": "30-04-2023",
                                  "inum": "CF/23-24/2452",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 271367.25,
                                  "val": 320213.36
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "29ABCCP2123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 64.35,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-10-2023",
                                  "inum": "GIN0003480",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 64.35,
                                  "txval": 715,
                                  "val": 843
                                }
                              ],
                              "filingdt": "06-11-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCPK3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 648.16,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "03-02-2024",
                                  "inum": "C24E232400231668",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 648.16,
                                  "txval": 7201.8,
                                  "val": 8498.12
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "24ABCCI6123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2014.52,
                                  "idt": "30-06-2023",
                                  "inum": "NPBL/23-24/292",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 11191.8,
                                  "val": 13206.32
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCCN3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 163.8,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-08-2023",
                                  "inum": "GIN0003354",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 163.8,
                                  "txval": 1820,
                                  "val": 2148
                                },
                                {
                                  "camt": 292.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-09-2023",
                                  "inum": "GIN0003409",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 292.5,
                                  "txval": 3250,
                                  "val": 3834
                                }
                              ],
                              "filingdt": "16-09-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCPK3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 403,
                                  "idt": "10-12-2023",
                                  "inum": "141519",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2240,
                                  "val": 2643
                                }
                              ],
                              "filingdt": "11-01-2024",
                              "rtnPrd": "122023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 202.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-04-2023",
                                  "inum": "1",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 202.5,
                                  "txval": 2250,
                                  "val": 2655
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 190.6,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "29-05-2023",
                                  "inum": "AMD2-309020",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 190.6,
                                  "txval": 2117.8,
                                  "val": 2499
                                }
                              ],
                              "filingdt": "11-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCCR3123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 22.86,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "20-08-2023",
                                  "inum": "AMD2-1973971",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 22.86,
                                  "txval": 253.94,
                                  "val": 299.66
                                },
                                {
                                  "camt": 66.96,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "07-08-2023",
                                  "inum": "FAMA-55308",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 66.96,
                                  "txval": 743.89,
                                  "val": 877.8
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4.5,
                                  "idt": "01-08-2023",
                                  "inum": "KB00000775597477",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25,
                                  "val": 29.5
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4.5,
                                  "idt": "01-08-2023",
                                  "inum": "KB00000776450652",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25,
                                  "val": 29.5
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4.5,
                                  "idt": "01-08-2023",
                                  "inum": "KB00000776469932",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25,
                                  "val": 29.5
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4.5,
                                  "idt": "01-08-2023",
                                  "inum": "KB00000781110442",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25,
                                  "val": 29.5
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "27ABCCK4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 305.09,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-09-2023",
                                  "inum": "AL/1741/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 305.09,
                                  "txval": 3389.84,
                                  "val": 4000
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCFA9123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 67.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-11-2023",
                                  "inum": "SI-73",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 67.5,
                                  "txval": 750,
                                  "val": 885
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "24ABCPS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 37.8,
                                  "idt": "11-09-2023",
                                  "inum": "NPS/0924/0087477",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 210,
                                  "val": 247.8
                                }
                              ],
                              "filingdt": "10-10-2023",
                              "rtnPrd": "092023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 14.34,
                                  "idt": "06-09-2023",
                                  "inum": "G06AI24I02331183",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 79.66,
                                  "val": 94
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 175.42,
                                  "idt": "02-09-2023",
                                  "inum": "M06AI24I09447019",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 974.58,
                                  "val": 1150
                                }
                              ],
                              "filingdt": "20-10-2023",
                              "rtnPrd": "102023",
                              "stin": "06ABCCM5123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 146.25,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "04-07-2023",
                                  "inum": "GIN0003237",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 146.25,
                                  "txval": 1625,
                                  "val": 1917
                                },
                                {
                                  "camt": 526.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "GIN0003277",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 526.5,
                                  "txval": 5850,
                                  "val": 6902
                                }
                              ],
                              "filingdt": "10-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCPK3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 3792,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "16-08-2023",
                                  "inum": "SUT00000143",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 3792,
                                  "txval": 63200,
                                  "val": 70784
                                }
                              ],
                              "filingdt": "13-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCPP4123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 731.97,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "CSM23038",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 731.97,
                                  "txval": 8133,
                                  "val": 9597
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCFC3123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5628.2,
                                  "idt": "07-04-2023",
                                  "inum": "VN0323D8815",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 31267.8,
                                  "val": 36896
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "33ABCCV9123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 440.65,
                                  "idt": "04-10-2023",
                                  "inum": "RKSV202324053",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2448.03,
                                  "val": 2888.68
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1533.53,
                                  "idt": "04-10-2023",
                                  "inum": "RKSV202324054",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8519.62,
                                  "val": 10053.15
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 50087.37,
                                  "idt": "19-10-2023",
                                  "inum": "RKSV202324056",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 278263.14,
                                  "val": 328350.51
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCR3123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 852.48,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "22-08-2023",
                                  "inum": "SALE-5545606",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 852.48,
                                  "txval": 9472.05,
                                  "val": 11177
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCP6123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 14.77,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "22-05-2023",
                                  "inum": "AMD2-661445",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 14.77,
                                  "txval": 164.11,
                                  "val": 193.65
                                },
                                {
                                  "camt": 21.09,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-05-2023",
                                  "inum": "FAMA-12895",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 21.09,
                                  "txval": 234.33,
                                  "val": 276.51
                                },
                                {
                                  "camt": 21.1,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-05-2023",
                                  "inum": "FAMA-12896",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 21.1,
                                  "txval": 234.44,
                                  "val": 276.64
                                },
                                {
                                  "camt": 22.45,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-05-2023",
                                  "inum": "FAMA-12898",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 22.45,
                                  "txval": 249.44,
                                  "val": 294.34
                                },
                                {
                                  "camt": 23.15,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-05-2023",
                                  "inum": "FAMA-12899",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 23.15,
                                  "txval": 257.22,
                                  "val": 303.52
                                },
                                {
                                  "camt": 21.09,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-05-2023",
                                  "inum": "FAMA-12902",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 21.09,
                                  "txval": 234.33,
                                  "val": 276.51
                                },
                                {
                                  "camt": 18.89,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-05-2023",
                                  "inum": "FAMA-16556",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 18.89,
                                  "txval": 209.89,
                                  "val": 247.67
                                },
                                {
                                  "camt": 9.81,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-05-2023",
                                  "inum": "FAMA-16557",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 9.81,
                                  "txval": 108.95,
                                  "val": 128.57
                                },
                                {
                                  "camt": 18.89,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-05-2023",
                                  "inum": "FAMA-16563",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 18.89,
                                  "txval": 209.89,
                                  "val": 247.67
                                },
                                {
                                  "camt": 20.92,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-05-2023",
                                  "inum": "FAMA-16564",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 20.92,
                                  "txval": 232.39,
                                  "val": 274.23
                                },
                                {
                                  "camt": 49.2,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "22-05-2023",
                                  "inum": "FAMA-22535",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 49.2,
                                  "txval": 546.67,
                                  "val": 645.07
                                },
                                {
                                  "camt": 40.6,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "22-05-2023",
                                  "inum": "FAMA-22536",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 40.6,
                                  "txval": 451.05,
                                  "val": 532.25
                                },
                                {
                                  "camt": 22.85,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "22-05-2023",
                                  "inum": "FAMA-22537",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 22.85,
                                  "txval": 253.94,
                                  "val": 299.64
                                }
                              ],
                              "filingdt": "11-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1798.91,
                                  "idt": "30-09-2023",
                                  "inum": "4XCFPHNO3URQ0923",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 9993.96,
                                  "val": 13280
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5125.55,
                                  "idt": "30-09-2023",
                                  "inum": "GSDKTASVXEXU0923",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 28475.27,
                                  "val": 37114.14
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 450,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-10-2023",
                                  "inum": "76",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 450,
                                  "txval": 5000,
                                  "val": 5900
                                },
                                {
                                  "camt": 472.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-10-2023",
                                  "inum": "77",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 472.5,
                                  "txval": 5250,
                                  "val": 6195
                                }
                              ],
                              "filingdt": "13-01-2024",
                              "rtnPrd": "122023",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-08-2023",
                                  "inum": "GJI0607324263526",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 1317.45,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-08-2023",
                                  "inum": "GJI0607324396033",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 1317.45,
                                  "txval": 14638.28,
                                  "val": 17273.18
                                }
                              ],
                              "filingdt": "10-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3085.53,
                                  "idt": "13-02-2024",
                                  "inum": "RKSV202324100",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 17141.81,
                                  "val": 20227.34
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "27ABCCR3123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 301.27,
                                  "idt": "07-05-2023",
                                  "inum": "QSIM-3424",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1673.73,
                                  "val": 1975
                                }
                              ],
                              "filingdt": "20-06-2023",
                              "rtnPrd": "062023",
                              "stin": "36ABCPB6123B2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 25856.1,
                                  "idt": "31-07-2023",
                                  "inum": "02",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 143645,
                                  "val": 169501
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "36ABCPH8123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 18.58,
                                  "idt": "31-10-2023",
                                  "inum": "NPBL/23-24/781",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 103.2,
                                  "val": 121.78
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCN3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 10.68,
                                  "idt": "27-03-2023",
                                  "inum": "M06AI23I19191184",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 59.32,
                                  "val": 70
                                }
                              ],
                              "filingdt": "20-04-2023",
                              "rtnPrd": "042023",
                              "stin": "06ABCCM5123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 24.64,
                                  "idt": "30-06-2023",
                                  "inum": "4753242020",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 136.9,
                                  "val": 161.54
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3296.16,
                                  "idt": "30-06-2023",
                                  "inum": "4757260492",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 18312,
                                  "val": 21608.16
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 383.3,
                                  "idt": "25-04-2023",
                                  "inum": "TPLB-372",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2129.45,
                                  "val": 2512.75
                                }
                              ],
                              "filingdt": "15-05-2023",
                              "rtnPrd": "052023",
                              "stin": "07ABCPG6123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 183.05,
                                  "idt": "20-04-2023",
                                  "inum": "INV/23-24/046",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1016.95,
                                  "val": 1200
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "07ABCCS8123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 353,
                                  "idt": "10-06-2023",
                                  "inum": "105675",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1960,
                                  "val": 2313
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4.54,
                                  "idt": "30-09-2023",
                                  "inum": "NPBL/23-24/647",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25.2,
                                  "val": 29.74
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "27ABCCN3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 9.1,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-06-2023",
                                  "inum": "AMD2-801397",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 9.1,
                                  "txval": 100.8,
                                  "val": 119
                                },
                                {
                                  "camt": 61.8,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-06-2023",
                                  "inum": "AMD2-801426",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 61.8,
                                  "txval": 686.4,
                                  "val": 810
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCCC8123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 495,
                                  "idt": "25-09-2023",
                                  "inum": "CG/77/2023-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2750,
                                  "val": 3245
                                }
                              ],
                              "filingdt": "10-10-2023",
                              "rtnPrd": "092023",
                              "stin": "08ABCCC4123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 14555.24,
                                  "idt": "03-05-2023",
                                  "inum": "AIN2324000564657",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 80862.43,
                                  "val": 95417.67
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 287.93,
                                  "idt": "31-08-2023",
                                  "inum": "NBJ/QUICK/2324/7",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1599.6,
                                  "val": 1887.53
                                }
                              ],
                              "filingdt": "09-09-2023",
                              "rtnPrd": "082023",
                              "stin": "27ABCPJ3123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1221,
                                  "idt": "31-03-2024",
                                  "inum": "PAN-V/27/629",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 6786,
                                  "val": 8007
                                }
                              ],
                              "filingdt": "10-04-2024",
                              "rtnPrd": "032024",
                              "stin": "27ABCCU4123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 28871.64,
                                  "idt": "31-05-2023",
                                  "inum": "CF/23-24/9233",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 160398,
                                  "val": 189269.64
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5185.12,
                                  "idt": "31-05-2023",
                                  "inum": "CF/23-24/13032",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 28806.2,
                                  "val": 33991.32
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "29ABCCP2123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 20914.46,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "14-08-2023",
                                  "inum": "FSR/671",
                                  "inv_typ": "R",
                                  "iseligible": "N",
                                  "pos": "08",
                                  "rchrg": "N",
                                  "reason": "POS and supplier state are same but recipient state is different",
                                  "samt": 20914.46,
                                  "txval": 306088.2,
                                  "val": 347917
                                }
                              ],
                              "filingdt": "14-09-2023",
                              "rtnPrd": "092023",
                              "stin": "08ABCCR9123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 43.2,
                                  "idt": "12-06-2023",
                                  "inum": "NPS/0624/0072368",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 240,
                                  "val": 283.2
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 13033.75,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "SI-58",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 13033.75,
                                  "txval": 144819.49,
                                  "val": 170887
                                },
                                {
                                  "camt": 675,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "SI-59",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 675,
                                  "txval": 7500,
                                  "val": 8850
                                },
                                {
                                  "camt": 1692.43,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "SI-55",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 1692.43,
                                  "txval": 18804.75,
                                  "val": 22189.61
                                },
                                {
                                  "camt": 1012.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "SI-56",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 1012.5,
                                  "txval": 11250,
                                  "val": 13275
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCPS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 13.68,
                                  "idt": "22-05-2023",
                                  "inum": "IN-9920",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 273.52,
                                  "val": 287.2
                                }
                              ],
                              "filingdt": "20-06-2023",
                              "rtnPrd": "062023",
                              "stin": "36ABCPT5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 198.15,
                                  "idt": "19-06-2023",
                                  "inum": "VZJJ-1113",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1100.85,
                                  "val": 1299
                                }
                              ],
                              "filingdt": "06-07-2023",
                              "rtnPrd": "062023",
                              "stin": "07ABCPR7123B1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-01-2024",
                                  "inum": "GJI0612331631268",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-01-2024",
                                  "inum": "GJI0612331790004",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "10-02-2024",
                              "rtnPrd": "012024",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 495.87,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "07-04-2023",
                                  "inum": "5",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 495.87,
                                  "txval": 5509.69,
                                  "val": 6502
                                }
                              ],
                              "filingdt": "12-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCPS2123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2197.29,
                                  "idt": "31-12-2023",
                                  "inum": "4883379355",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 12207.14,
                                  "val": 14404.43
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 24.64,
                                  "idt": "31-12-2023",
                                  "inum": "4884148871",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 136.9,
                                  "val": 161.54
                                }
                              ],
                              "filingdt": "11-01-2024",
                              "rtnPrd": "122023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 178.47,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-05-2023",
                                  "inum": "A040166",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 178.47,
                                  "txval": 1983,
                                  "val": 2340
                                }
                              ],
                              "filingdt": "06-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCPS5123Q1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5365.65,
                                  "idt": "30-06-2023",
                                  "inum": "4XCFPHNO3URQ0623",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 29809.19,
                                  "val": 39038.74
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5523.18,
                                  "idt": "30-06-2023",
                                  "inum": "GSDKTASVXEXU0623",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 30684.33,
                                  "val": 40052.51
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 10.26,
                                  "idt": "30-06-2023",
                                  "inum": "JAOX75S6ZBWE0623",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 57,
                                  "val": 67.35
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 389.34,
                                  "idt": "13-10-2023",
                                  "inum": "BSPL/10/2023/1",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2163,
                                  "val": 2552
                                }
                              ],
                              "filingdt": "18-11-2023",
                              "rtnPrd": "112023",
                              "stin": "29ABCCB3123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 8.01,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "21-04-2023",
                                  "inum": "AMD2-35067",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 8.01,
                                  "txval": 89,
                                  "val": 105.02
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCCC9123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 250,
                                  "idt": "02-09-2023",
                                  "inum": "DL1232409BO08526",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 5000,
                                  "val": 5250
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "07ABCCI2123B1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 37.8,
                                  "idt": "11-10-2023",
                                  "inum": "NPS/1024/0087903",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 210,
                                  "val": 247.8
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7313.94,
                                  "idt": "10-01-2024",
                                  "inum": "4072324270415",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 40633,
                                  "val": 47946.94
                                }
                              ],
                              "filingdt": "08-02-2024",
                              "rtnPrd": "012024",
                              "stin": "27ABCCI7123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 19010.07,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "SC/08/22-23",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 19010.07,
                                  "txval": 211223,
                                  "val": 249243
                                }
                              ],
                              "filingdt": "09-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCPD8123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 89.04,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-04-2023",
                                  "inum": "T-00021",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 89.04,
                                  "txval": 971.97,
                                  "val": 1150
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCPP0123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-08-2023",
                                  "inum": "HT2424I000703207",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-08-2023",
                                  "inum": "HT2424I000744692",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "10-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 140,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "22-08-2023",
                                  "inum": "GJ1232408AN74872",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 140,
                                  "txval": 5600,
                                  "val": 5880
                                },
                                {
                                  "camt": 12,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "24-08-2023",
                                  "inum": "GJ1232408AN97102",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 12,
                                  "txval": 476,
                                  "val": 500
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCI2123B1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 67.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "11-04-2023",
                                  "inum": "SI-51",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 67.5,
                                  "txval": 750,
                                  "val": 885
                                }
                              ],
                              "filingdt": "09-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCPS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 41.03,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "03-10-2023",
                                  "inum": "AMD2-1593434",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 41.03,
                                  "txval": 455.92,
                                  "val": 537.98
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCCA0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 4.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "11-07-2023",
                                  "inum": "0138230984461919",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 4.5,
                                  "txval": 50,
                                  "val": 59
                                },
                                {
                                  "camt": 0.27,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "25-07-2023",
                                  "inum": "0138230991136020",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.27,
                                  "txval": 3,
                                  "val": 3.54
                                },
                                {
                                  "camt": 0.27,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "25-07-2023",
                                  "inum": "0138230991139152",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.27,
                                  "txval": 3,
                                  "val": 3.54
                                },
                                {
                                  "camt": 0.13,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "25-07-2023",
                                  "inum": "0138230991140041",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.13,
                                  "txval": 1.5,
                                  "val": 1.76
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCCI1123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1483.14,
                                  "idt": "30-06-2023",
                                  "inum": "16",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8239.68,
                                  "val": 9722.82
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "29ABCPS7123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 464.83,
                                  "idt": "31-10-2023",
                                  "inum": "4XCFPHNO3URQ1023",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2582.39,
                                  "val": 3504.63
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 6521.67,
                                  "idt": "31-10-2023",
                                  "inum": "GSDKTASVXEXU1023",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 36231.51,
                                  "val": 47442.52
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 10.8,
                                  "idt": "31-10-2023",
                                  "inum": "JAOX75S6ZBWE1023",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 60,
                                  "val": 70.86
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1884.08,
                                  "idt": "01-06-2023",
                                  "inum": "102324054272",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 10467.1,
                                  "val": 12351.18
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 132.48,
                                  "idt": "19-06-2023",
                                  "inum": "102324070659",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 736,
                                  "val": 868.48
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 43.2,
                                  "idt": "27-06-2023",
                                  "inum": "102324076852",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 240,
                                  "val": 283.2
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-12-2023",
                                  "inum": "GJI0611330220210",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-12-2023",
                                  "inum": "GJI0611330353886",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "10-01-2024",
                              "rtnPrd": "122023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2931.84,
                                  "idt": "30-06-2023",
                                  "inum": "DSCO23-05",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16288,
                                  "val": 19220
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "23ABCPS6123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2891.05,
                                  "idt": "29-02-2024",
                                  "inum": "4920754353",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16061.39,
                                  "val": 18952.44
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 32.29,
                                  "idt": "29-02-2024",
                                  "inum": "4923772439",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 179.39,
                                  "val": 211.68
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 518.4,
                                  "idt": "11-02-2024",
                                  "inum": "102324292621",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2880,
                                  "val": 3398.4
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 261,
                                  "idt": "13-02-2024",
                                  "inum": "102324294840",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1450,
                                  "val": 1711
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 517.29,
                                  "idt": "21-02-2024",
                                  "inum": "102324302882",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2873.85,
                                  "val": 3391.14
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "33ABCCZ4123M2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2676.24,
                                  "idt": "30-04-2023",
                                  "inum": "4714101460",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 14868,
                                  "val": 17544.24
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 440.15,
                                  "idt": "08-01-2024",
                                  "inum": "QK/23-24/3",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2445.26,
                                  "val": 2885.41
                                }
                              ],
                              "filingdt": "10-02-2024",
                              "rtnPrd": "012024",
                              "stin": "07ABCCC9123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3399.49,
                                  "idt": "02-08-2023",
                                  "inum": "AIN2324001422532",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 18886.05,
                                  "val": 22285.54
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 53585.47,
                                  "idt": "03-08-2023",
                                  "inum": "AIN2324001574266",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 297697.06,
                                  "val": 351282.53
                                }
                              ],
                              "filingdt": "08-09-2023",
                              "rtnPrd": "082023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9,
                                  "idt": "31-07-2023",
                                  "inum": "PNOFLJUL69478",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50,
                                  "val": 59
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 13568.58,
                                  "idt": "31-07-2023",
                                  "inum": "JULY/03/2023-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 75381,
                                  "val": 88949.58
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "27ABCFA5123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 67.88,
                                  "idt": "03-10-2023",
                                  "inum": "IN-1896",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 377.12,
                                  "val": 445
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "36ABCPD3123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 299.93,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-05-2023",
                                  "inum": "HT2424I000210659",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 299.93,
                                  "txval": 3332.5,
                                  "val": 3932.36
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-05-2023",
                                  "inum": "HT2424I000243060",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "10-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0.04,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-02-2024",
                                  "inum": "0138241080356934",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.04,
                                  "txval": 0.5,
                                  "val": 0.58
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "24ABCCI1123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1007.82,
                                  "idt": "31-08-2023",
                                  "inum": "18",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 5599,
                                  "val": 6607
                                }
                              ],
                              "filingdt": "10-09-2023",
                              "rtnPrd": "082023",
                              "stin": "29ABCFK6123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 648.16,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "05-11-2023",
                                  "inum": "C24E232400165227",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 648.16,
                                  "txval": 7201.8,
                                  "val": 8498.12
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "24ABCCI6123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 719.78,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "1",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 719.78,
                                  "txval": 7997.6,
                                  "val": 9437
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCFP7123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-03-2024",
                                  "inum": "HT2424I002039920",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-03-2024",
                                  "inum": "HT2424I002101889",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "10-04-2024",
                              "rtnPrd": "032024",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 810,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "10",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 810,
                                  "txval": 9000,
                                  "val": 10620
                                },
                                {
                                  "camt": 599.22,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "11",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 599.22,
                                  "txval": 6658,
                                  "val": 7856
                                }
                              ],
                              "filingdt": "13-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 409.14,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "NCSI/01/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 409.14,
                                  "txval": 4546,
                                  "val": 5364
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCFN3123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 12575.34,
                                  "idt": "31-07-2023",
                                  "inum": "SPKG/GR/23-24/12",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 69863,
                                  "val": 82438
                                }
                              ],
                              "filingdt": "10-09-2023",
                              "rtnPrd": "082023",
                              "stin": "27ABCFS8123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 441,
                                  "idt": "10-09-2023",
                                  "inum": "122994",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2450,
                                  "val": 2891
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 225,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-04-2023",
                                  "inum": "AGSK-189",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 225,
                                  "txval": 2500,
                                  "val": 2950
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCFA4123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 175.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-12-2023",
                                  "inum": "23-24/126",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 175.5,
                                  "txval": 1950,
                                  "val": 2301
                                }
                              ],
                              "filingdt": "11-01-2024",
                              "rtnPrd": "122023",
                              "stin": "24ABCPD9123Q1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 90,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "09-11-2023",
                                  "inum": "108",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 90,
                                  "txval": 1000,
                                  "val": 1180
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "24ABCPB1123L1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 503.82,
                                  "idt": "30-06-2023",
                                  "inum": "SPKG/GR/23-24/09",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2799,
                                  "val": 3303
                                }
                              ],
                              "filingdt": "08-07-2023",
                              "rtnPrd": "062023",
                              "stin": "27ABCFS8123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 432.11,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "02-02-2024",
                                  "inum": "C24E232400078295",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 432.11,
                                  "txval": 4801.2,
                                  "val": 5665.42
                                }
                              ],
                              "filingdt": "11-03-2024",
                              "rtnPrd": "022024",
                              "stin": "24ABCCJ6123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 403,
                                  "idt": "10-10-2023",
                                  "inum": "129030",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2240,
                                  "val": 2643
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 390.3,
                                  "idt": "31-01-2024",
                                  "inum": "4XCFPHNO3URQ0124",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2168.36,
                                  "val": 2888.86
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 6257.33,
                                  "idt": "31-01-2024",
                                  "inum": "GSDKTASVXEXU0124",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 34762.92,
                                  "val": 45437.69
                                }
                              ],
                              "filingdt": "11-02-2024",
                              "rtnPrd": "012024",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 657.19,
                                  "idt": "11-10-2023",
                                  "inum": "LPTI/23-24/020",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3651.08,
                                  "val": 4308.27
                                }
                              ],
                              "filingdt": "03-11-2023",
                              "rtnPrd": "102023",
                              "stin": "08ABCFL8123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 43.2,
                                  "idt": "11-07-2023",
                                  "inum": "NPS/0724/0083717",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 240,
                                  "val": 283.2
                                }
                              ],
                              "filingdt": "09-08-2023",
                              "rtnPrd": "072023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 337.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "29-02-2024",
                                  "inum": "SI-75",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 337.5,
                                  "txval": 3750,
                                  "val": 4425
                                }
                              ],
                              "filingdt": "14-03-2024",
                              "rtnPrd": "032024",
                              "stin": "24ABCPS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 146.34,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "02-06-2023",
                                  "inum": "TG/04567",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 146.34,
                                  "txval": 1626,
                                  "val": 1919
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCPS9123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7200,
                                  "idt": "12-06-2023",
                                  "inum": "132",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 40000,
                                  "val": 47200
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "29ABCCH9123B1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-06-2023",
                                  "inum": "GJI0605321082147",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-06-2023",
                                  "inum": "GJI0605321217713",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "10-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 107.96,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-08-2023",
                                  "inum": "11",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 107.96,
                                  "txval": 1199.6,
                                  "val": 1415.52
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCFP7123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 432.11,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "06-08-2023",
                                  "inum": "C24E232400038902",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 432.11,
                                  "txval": 4801.2,
                                  "val": 5665.42
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCJ6123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1567.8,
                                  "idt": "17-10-2023",
                                  "inum": "GST232400140",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8710,
                                  "val": 0
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2.75,
                                  "idt": "26-10-2023",
                                  "inum": "GST232400182",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 15.25,
                                  "val": 0
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2160,
                                  "idt": "13-10-2023",
                                  "inum": "OPV/997000171571",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 12000,
                                  "val": 0
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9,
                                  "idt": "31-10-2023",
                                  "inum": "POFOCT23-114595",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50,
                                  "val": 59
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9,
                                  "idt": "31-10-2023",
                                  "inum": "POFOCT23-114596",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50,
                                  "val": 59
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 51.84,
                                  "idt": "18-05-2023",
                                  "inum": "102324042192",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 288,
                                  "val": 339.84
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 40.32,
                                  "idt": "20-05-2023",
                                  "inum": "102324044040",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 224,
                                  "val": 264.32
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 864,
                                  "idt": "26-05-2023",
                                  "inum": "102324049111",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 4800,
                                  "val": 5664
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 30114.03,
                                  "idt": "31-07-2023",
                                  "inum": "4XCFPHNO3URQ0723",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 167300.14,
                                  "val": 288449.1
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7166.22,
                                  "idt": "31-07-2023",
                                  "inum": "GSDKTASVXEXU0723",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 39812.32,
                                  "val": 50201.47
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2.7,
                                  "idt": "31-07-2023",
                                  "inum": "JAOX75S6ZBWE0723",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 15,
                                  "val": 18.21
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 33631.02,
                                  "idt": "31-07-2023",
                                  "inum": "DSCO23-07",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 186839,
                                  "val": 220470
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "23ABCPS6123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-11-2023",
                                  "inum": "HT2424I001250725",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-11-2023",
                                  "inum": "HT2424I001298625",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "09-12-2023",
                              "rtnPrd": "112023",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1395.76,
                                  "idt": "05-06-2023",
                                  "inum": "INV/23-24/0145",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 7754.24,
                                  "val": 9150
                                }
                              ],
                              "filingdt": "11-07-2023",
                              "rtnPrd": "062023",
                              "stin": "07ABCCS8123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 15300,
                                  "idt": "04-04-2023",
                                  "inum": "OPV/997000157981",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 85000,
                                  "val": 100300
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7.63,
                                  "idt": "21-04-2023",
                                  "inum": "POFLAPR23-9017",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 42.37,
                                  "val": 50
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4.5,
                                  "idt": "20-10-2023",
                                  "inum": "KB00000804129619",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25,
                                  "val": 29.5
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCK4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 416,
                                  "idt": "09-04-2023",
                                  "inum": "98316",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2310,
                                  "val": 2726
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 22934.16,
                                  "idt": "31-07-2023",
                                  "inum": "KBA/23-24/0107",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 127412,
                                  "val": 150346
                                }
                              ],
                              "filingdt": "06-08-2023",
                              "rtnPrd": "072023",
                              "stin": "22ABCPB7123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 54,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-06-2023",
                                  "inum": "23-24/26",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 54,
                                  "txval": 600,
                                  "val": 708
                                }
                              ],
                              "filingdt": "09-07-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCPD9123Q1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 10466.28,
                                  "idt": "31-07-2023",
                                  "inum": "08",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 58146,
                                  "val": 68612
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 8386.38,
                                  "idt": "31-07-2023",
                                  "inum": "09",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 46591,
                                  "val": 54977
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2490.48,
                                  "idt": "31-07-2023",
                                  "inum": "10",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 13836,
                                  "val": 16326
                                }
                              ],
                              "filingdt": "10-08-2023",
                              "rtnPrd": "072023",
                              "stin": "29ABCFK6123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 16458.01,
                                  "idt": "02-07-2023",
                                  "inum": "AIN2324001050737",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 91433.39,
                                  "val": 107891.4
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2261.78,
                                  "idt": "02-07-2023",
                                  "inum": "AIN2324001083110",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 12565.47,
                                  "val": 14827.25
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 961.11,
                                  "idt": "02-07-2023",
                                  "inum": "AIN2324001103415",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 5339.48,
                                  "val": 6300.59
                                }
                              ],
                              "filingdt": "10-08-2023",
                              "rtnPrd": "072023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 10418.76,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "NCSI/02/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 10418.76,
                                  "txval": 115764,
                                  "val": 136602
                                },
                                {
                                  "camt": 4906.26,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-07-2023",
                                  "inum": "NCSI/03/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 4906.26,
                                  "txval": 54514,
                                  "val": 64327
                                }
                              ],
                              "filingdt": "09-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCFN3123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-03-2024",
                                  "inum": "GJI0602434209671",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-03-2024",
                                  "inum": "GJI0602434393073",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "09-04-2024",
                              "rtnPrd": "032024",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 98.83,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "03-07-2023",
                                  "inum": "AMD2-1236660",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 98.83,
                                  "txval": 1098.07,
                                  "val": 1295.75
                                },
                                {
                                  "camt": 23.02,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-07-2023",
                                  "inum": "AMD2-1649385",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 23.02,
                                  "txval": 255.78,
                                  "val": 301.82
                                },
                                {
                                  "camt": 45.8,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "07-07-2023",
                                  "inum": "FAMA-42750",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 45.8,
                                  "txval": 508.9,
                                  "val": 600.5
                                },
                                {
                                  "camt": 23.57,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-07-2023",
                                  "inum": "FAMA-47683",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 23.57,
                                  "txval": 261.87,
                                  "val": 309
                                },
                                {
                                  "camt": 30.49,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-07-2023",
                                  "inum": "FAMA-50930",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 30.49,
                                  "txval": 338.8,
                                  "val": 399.78
                                },
                                {
                                  "camt": 48.29,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-07-2023",
                                  "inum": "FAMA-50931",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 48.29,
                                  "txval": 536.56,
                                  "val": 633.13
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "24ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 518.4,
                                  "idt": "10-12-2023",
                                  "inum": "102324229636",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2880,
                                  "val": 3398.4
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 432,
                                  "idt": "11-12-2023",
                                  "inum": "102324230047",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2400,
                                  "val": 2832
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 50.17,
                                  "idt": "25-12-2023",
                                  "inum": "102324243574",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 278.71,
                                  "val": 328.88
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 44.59,
                                  "idt": "27-12-2023",
                                  "inum": "102324245907",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 247.74,
                                  "val": 292.33
                                }
                              ],
                              "filingdt": "11-01-2024",
                              "rtnPrd": "122023",
                              "stin": "33ABCCZ4123M2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 2970,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-09-2023",
                                  "inum": "SI-65",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 2970,
                                  "txval": 33000,
                                  "val": 38940
                                },
                                {
                                  "camt": 450,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-09-2023",
                                  "inum": "SI-66",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 450,
                                  "txval": 5000,
                                  "val": 5900
                                },
                                {
                                  "camt": 67.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-09-2023",
                                  "inum": "SI-67",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 67.5,
                                  "txval": 750,
                                  "val": 885
                                },
                                {
                                  "camt": 405,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-10-2023",
                                  "inum": "SI-71",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 405,
                                  "txval": 4500,
                                  "val": 5310
                                }
                              ],
                              "filingdt": "19-10-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCPS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 288,
                                  "idt": "02-12-2023",
                                  "inum": "08",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 1600,
                                  "val": 1887
                                }
                              ],
                              "filingdt": "08-01-2024",
                              "rtnPrd": "122023",
                              "stin": "36ABCPH8123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "04-09-2023",
                                  "inum": "VFB/23-24/1645",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "04-09-2023",
                                  "inum": "VFB/23-24/2002",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "08-09-2023",
                                  "inum": "VFB/23-24/3558",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                }
                              ],
                              "filingdt": "18-10-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCV5123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1890,
                                  "idt": "21-12-2023",
                                  "inum": "INV-000764",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 10500,
                                  "val": 12390
                                }
                              ],
                              "filingdt": "10-01-2024",
                              "rtnPrd": "122023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1087.24,
                                  "idt": "31-07-2023",
                                  "inum": "NPBL/23-24/407",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 6040.2,
                                  "val": 7127.44
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "27ABCCN3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 135,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-05-2023",
                                  "inum": "8",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 135,
                                  "txval": 1500,
                                  "val": 1770
                                }
                              ],
                              "filingdt": "10-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 75.6,
                                  "idt": "10-04-2023",
                                  "inum": "NPS/0324/0068898",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 420,
                                  "val": 495.6
                                }
                              ],
                              "filingdt": "10-05-2023",
                              "rtnPrd": "042023",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 74.25,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-11-2023",
                                  "inum": "GIN0003545",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 74.25,
                                  "txval": 825,
                                  "val": 973
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "24ABCPK3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 714.21,
                                  "idt": "30-04-2023",
                                  "inum": "4XCFPHNO3URQ0423",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3967.82,
                                  "val": 5350.18
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 6642.77,
                                  "idt": "30-04-2023",
                                  "inum": "GSDKTASVXEXU0423",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 36904.27,
                                  "val": 46955.98
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-04-2023",
                                  "inum": "JAOX75S6ZBWE0423",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 0.02,
                                  "val": 0.35
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "29ABCCR4123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 432.11,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "16-05-2023",
                                  "inum": "C24E232400013805",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 432.11,
                                  "txval": 4801.2,
                                  "val": 5665.42
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCCJ6123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 98.4,
                                  "idt": "09-07-2023",
                                  "inum": "DEL4-2019366",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 546.65,
                                  "val": 645.05
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "06ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 477.46,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "21-09-2023",
                                  "inum": "DTP349/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 477.46,
                                  "txval": 5305.08,
                                  "val": 6260
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCCG5123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 720,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "02-09-2023",
                                  "inum": "GFFON23-24-957",
                                  "inv_typ": "R",
                                  "iseligible": "N",
                                  "pos": "27",
                                  "rchrg": "N",
                                  "reason": "POS and supplier state are same but recipient state is different",
                                  "samt": 720,
                                  "txval": 8000,
                                  "val": 9440
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "27ABCAI1123Q1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 16585.42,
                                  "idt": "31-07-2023",
                                  "inum": "24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 92141.2,
                                  "val": 108727
                                }
                              ],
                              "filingdt": "08-08-2023",
                              "rtnPrd": "072023",
                              "stin": "09ABCFG3123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 67.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-05-2023",
                                  "inum": "SI-53",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 67.5,
                                  "txval": 750,
                                  "val": 885
                                }
                              ],
                              "filingdt": "12-06-2023",
                              "rtnPrd": "062023",
                              "stin": "24ABCPS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3110.4,
                                  "idt": "11-08-2023",
                                  "inum": "102324118287",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 17280,
                                  "val": 20390.4
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 24.64,
                                  "idt": "31-10-2023",
                                  "inum": "4839766970",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 136.9,
                                  "val": 161.54
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2042.3,
                                  "idt": "31-10-2023",
                                  "inum": "4842024967",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 11346.13,
                                  "val": 13388.43
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 403,
                                  "idt": "10-01-2024",
                                  "inum": "148132",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2240,
                                  "val": 2643
                                }
                              ],
                              "filingdt": "11-02-2024",
                              "rtnPrd": "012024",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 559.49,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-04-2023",
                                  "inum": "71",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 559.49,
                                  "txval": 6250.95,
                                  "val": 7370
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCPS2123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4932.59,
                                  "idt": "29-09-2023",
                                  "inum": "GST232400081",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 27403.3,
                                  "val": 32335.89
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9,
                                  "idt": "30-09-2023",
                                  "inum": "POFLSEP116583",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50,
                                  "val": 59
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 26.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-09-2023",
                                  "inum": "GJI0608325913037",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 26.91,
                                  "txval": 299,
                                  "val": 352.82
                                },
                                {
                                  "camt": 900,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "01-09-2023",
                                  "inum": "GJI0608326026701",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 900,
                                  "txval": 10000,
                                  "val": 11800
                                }
                              ],
                              "filingdt": "10-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCCB2123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 118.04,
                                  "idt": "30-11-2023",
                                  "inum": "NPBL/23-24/905",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 655.8,
                                  "val": 773.8
                                }
                              ],
                              "filingdt": "11-12-2023",
                              "rtnPrd": "112023",
                              "stin": "27ABCCN3123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "12-01-2024",
                                  "inum": "HT2424I001636778",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                },
                                {
                                  "camt": 359.91,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "18-01-2024",
                                  "inum": "HT2424I001691887",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 359.91,
                                  "txval": 3999,
                                  "val": 4718.82
                                }
                              ],
                              "filingdt": "09-02-2024",
                              "rtnPrd": "012024",
                              "stin": "24ABCCB2123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 73.22,
                                  "idt": "20-03-2023",
                                  "inum": "DEL5-7439395",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 406.78,
                                  "val": 480
                                }
                              ],
                              "filingdt": "20-04-2023",
                              "rtnPrd": "042023",
                              "stin": "06ABCCC8123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1830.51,
                                  "idt": "01-03-2024",
                                  "inum": "CC/23-24/1042",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 10169.49,
                                  "val": 12000
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "07ABCCS8123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 1290.43,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "08-04-2023",
                                  "inum": "124/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 1290.43,
                                  "txval": 21507.22,
                                  "val": 24409
                                },
                                {
                                  "camt": 1052.95,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "21-04-2023",
                                  "inum": "302/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 1052.95,
                                  "txval": 17549.1,
                                  "val": 19655
                                }
                              ],
                              "filingdt": "13-05-2023",
                              "rtnPrd": "042023",
                              "stin": "24ABCFU6123B1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9000,
                                  "idt": "10-04-2023",
                                  "inum": "INV-100423001",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50000,
                                  "val": 59000
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3600,
                                  "idt": "12-04-2023",
                                  "inum": "INV-110423010",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 20000,
                                  "val": 23600
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "07ABCCS0123R2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 22036.5,
                                  "idt": "31-03-2024",
                                  "inum": "IN/22-23/0705",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 122425,
                                  "val": 144461.5
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "29ABCCS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "07-09-2023",
                                  "inum": "O/23-24/10806",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "07-09-2023",
                                  "inum": "O/23-24/10855",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "07-09-2023",
                                  "inum": "O/23-24/11089",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "14-09-2023",
                                  "inum": "O/23-24/29943",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "07ABCCS8123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 41.18,
                                  "idt": "31-03-2024",
                                  "inum": "GST232400324",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 228.75,
                                  "val": 269.93
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3050.85,
                                  "idt": "09-03-2024",
                                  "inum": "OPV/997000180424",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16949.15,
                                  "val": 20000
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 4500,
                                  "idt": "23-03-2024",
                                  "inum": "OPV/997000181302",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 25000,
                                  "val": 29500
                                }
                              ],
                              "filingdt": "11-04-2024",
                              "rtnPrd": "032024",
                              "stin": "27ABCCN2123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 2059.32,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "11-08-2023",
                                  "inum": "AO/CAVP/2324/151",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 2059.32,
                                  "txval": 22881.36,
                                  "val": 27000
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCC6123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 198,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "09-09-2023",
                                  "inum": "23-24/82",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 198,
                                  "txval": 2200,
                                  "val": 2596
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCPD9123Q1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 22036.5,
                                  "idt": "15-09-2023",
                                  "inum": "IN/22-23/0406",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 122425,
                                  "val": 144461.5
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "29ABCCS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 54,
                                  "idt": "16-01-2024",
                                  "inum": "NPS/0124/0089294",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 300,
                                  "val": 354
                                }
                              ],
                              "filingdt": "10-02-2024",
                              "rtnPrd": "012024",
                              "stin": "27ABCCI0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 85.54,
                                  "idt": "30-04-2023",
                                  "inum": "LPTI/23-24/007",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 475.21,
                                  "val": 560.75
                                }
                              ],
                              "filingdt": "04-05-2023",
                              "rtnPrd": "042023",
                              "stin": "08ABCFL8123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 24.64,
                                  "idt": "30-09-2023",
                                  "inum": "4818672007",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 136.9,
                                  "val": 161.54
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 2116.8,
                                  "idt": "30-09-2023",
                                  "inum": "4820163570",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 11760,
                                  "val": 13876.8
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "06ABCCG0123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 454,
                                  "idt": "10-07-2023",
                                  "inum": "111639",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2520,
                                  "val": 2974
                                }
                              ],
                              "filingdt": "11-08-2023",
                              "rtnPrd": "072023",
                              "stin": "29ABCCR4123K1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 8.92,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "03-10-2023",
                                  "inum": "AMD2-2346492",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 8.92,
                                  "txval": 99.15,
                                  "val": 116.99
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCCC8123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 17038.11,
                                  "idt": "31-07-2023",
                                  "inum": "INV-23/24-006",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 94656.16,
                                  "val": 111694.27
                                }
                              ],
                              "filingdt": "10-08-2023",
                              "rtnPrd": "072023",
                              "stin": "23ABCPG7123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 16.2,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "28-05-2023",
                                  "inum": "0316/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 16.2,
                                  "txval": 180,
                                  "val": 212
                                }
                              ],
                              "filingdt": "10-06-2023",
                              "rtnPrd": "052023",
                              "stin": "24ABCPP1123D1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 674.2,
                                  "idt": "30-10-2023",
                                  "inum": "CC/23-24/597",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3745.56,
                                  "val": 4419.76
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 995.34,
                                  "idt": "31-10-2023",
                                  "inum": "INV/23-24/0761",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 5529.66,
                                  "val": 6525
                                }
                              ],
                              "filingdt": "10-11-2023",
                              "rtnPrd": "102023",
                              "stin": "07ABCCS8123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 53.24,
                                  "idt": "27-04-2023",
                                  "inum": "RNU0-552",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 295.76,
                                  "val": 349
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "06ABCPJ4123N1YZ"
                            }
                          ],
                          "b2ba": [
                            {
                              "documents": [
                                {
                                  "camt": 0.09,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-10-2023",
                                  "inum": "76",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "oidt": "30-10-2023",
                                  "oinum": "76",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.09,
                                  "txval": 1,
                                  "val": 1
                                },
                                {
                                  "camt": 0.09,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "31-10-2023",
                                  "inum": "77",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "oidt": "31-10-2023",
                                  "oinum": "77",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0.09,
                                  "txval": 1,
                                  "val": 1
                                }
                              ],
                              "filingdt": "12-04-2024",
                              "rtnPrd": "032024",
                              "stin": "24ABCPL3123J1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "25-10-2023",
                                  "inum": "RN1/FAMA-16557",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "oidt": "25-10-2023",
                                  "oinum": "RN1/FAMA-16557",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 0.01,
                                  "val": 0.01
                                }
                              ],
                              "filingdt": "10-01-2024",
                              "rtnPrd": "122023",
                              "stin": "24ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 346.77,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "30-06-2023",
                                  "inum": "NCSI/01/23-24",
                                  "inv_typ": "R",
                                  "iseligible": "Y",
                                  "oidt": "30-06-2023",
                                  "oinum": "NCSI/01/23-24",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 346.77,
                                  "txval": 3853,
                                  "val": 4547
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCFN3123E1YZ"
                            }
                          ],
                          "cdn": [
                            {
                              "documents": [
                                {
                                  "camt": 3.55,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "07-09-2023",
                                  "inum": "242J2U3VI0923002",
                                  "iseligible": "Y",
                                  "nt_dt": "07-09-2023",
                                  "nt_num": "242J2U3VI0923002",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 3.55,
                                  "txval": 142,
                                  "val": 149.1
                                },
                                {
                                  "camt": 14.3,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "07-09-2023",
                                  "inum": "242J2U3VI0923003",
                                  "iseligible": "Y",
                                  "nt_dt": "07-09-2023",
                                  "nt_num": "242J2U3VI0923003",
                                  "ntty": "D",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 14.3,
                                  "txval": 572,
                                  "val": 600.6
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "24ABCCS9123P1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 372.91,
                                  "idt": "25-12-2022",
                                  "inum": "ACN2223000090881",
                                  "iseligible": "Y",
                                  "nt_dt": "25-12-2022",
                                  "nt_num": "ACN2223000090881",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2071.72,
                                  "val": 2444.63
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 372.85,
                                  "idt": "29-12-2022",
                                  "inum": "ACN2223000091866",
                                  "iseligible": "Y",
                                  "nt_dt": "29-12-2022",
                                  "nt_num": "ACN2223000091866",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2071.38,
                                  "val": 2444.23
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 657.19,
                                  "idt": "16-08-2023",
                                  "inum": "CN-LPTI/23-24/03",
                                  "iseligible": "Y",
                                  "nt_dt": "16-08-2023",
                                  "nt_num": "CN-LPTI/23-24/03",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3651.07,
                                  "val": 4308.26
                                }
                              ],
                              "filingdt": "08-09-2023",
                              "rtnPrd": "082023",
                              "stin": "08ABCFL8123G1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 373.43,
                                  "idt": "16-05-2023",
                                  "inum": "143",
                                  "iseligible": "Y",
                                  "nt_dt": "16-05-2023",
                                  "nt_num": "143",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2074.6,
                                  "val": 2448.04
                                }
                              ],
                              "filingdt": "13-07-2023",
                              "rtnPrd": "062023",
                              "stin": "07ABCPS6123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 561.05,
                                  "idt": "13-12-2023",
                                  "inum": "ACN2324000103340",
                                  "iseligible": "Y",
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103340",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 3116.94,
                                  "val": 3677.99
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 961.11,
                                  "idt": "13-12-2023",
                                  "inum": "ACN2324000103368",
                                  "iseligible": "Y",
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103368",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 5339.48,
                                  "val": 6300.59
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 46380.95,
                                  "idt": "13-12-2023",
                                  "inum": "ACN2324000103394",
                                  "iseligible": "Y",
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103394",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 257671.97,
                                  "val": 304052.92
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 17349.93,
                                  "idt": "13-12-2023",
                                  "inum": "ACN2324000103426",
                                  "iseligible": "Y",
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103426",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 96388.48,
                                  "val": 113738.41
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 17533.22,
                                  "idt": "13-12-2023",
                                  "inum": "ACN2324000103435",
                                  "iseligible": "Y",
                                  "nt_dt": "13-12-2023",
                                  "nt_num": "ACN2324000103435",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 97406.76,
                                  "val": 114939.98
                                }
                              ],
                              "filingdt": "11-01-2024",
                              "rtnPrd": "122023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 22.85,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "20-08-2023",
                                  "inum": "FAMA-C-2322",
                                  "iseligible": "Y",
                                  "nt_dt": "20-08-2023",
                                  "nt_num": "FAMA-C-2322",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 22.85,
                                  "txval": 253.94,
                                  "val": 299.64
                                }
                              ],
                              "filingdt": "11-09-2023",
                              "rtnPrd": "082023",
                              "stin": "24ABCCR0123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 893.35,
                                  "idt": "25-09-2023",
                                  "inum": "DEL4-C-321750",
                                  "iseligible": "Y",
                                  "nt_dt": "25-09-2023",
                                  "nt_num": "DEL4-C-321750",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 4963.06,
                                  "val": 5856.41
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 3000.81,
                                  "idt": "30-09-2023",
                                  "inum": "DEL4-C-331555",
                                  "iseligible": "Y",
                                  "nt_dt": "30-09-2023",
                                  "nt_num": "DEL4-C-331555",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 16671.18,
                                  "val": 19671.99
                                }
                              ],
                              "filingdt": "11-10-2023",
                              "rtnPrd": "092023",
                              "stin": "06ABCCA0123E1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 440.65,
                                  "idt": "04-10-2023",
                                  "inum": "RKSVCN202324002",
                                  "iseligible": "Y",
                                  "nt_dt": "04-10-2023",
                                  "nt_num": "RKSVCN202324002",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2448.03,
                                  "val": 2888.68
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1533.53,
                                  "idt": "04-10-2023",
                                  "inum": "RKSVCN202324003",
                                  "iseligible": "Y",
                                  "nt_dt": "04-10-2023",
                                  "nt_num": "RKSVCN202324003",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 8519.62,
                                  "val": 10053.15
                                }
                              ],
                              "filingdt": "11-11-2023",
                              "rtnPrd": "102023",
                              "stin": "27ABCCR3123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 854.24,
                                  "idt": "20-04-2023",
                                  "inum": "CN/23-24/04",
                                  "iseligible": "Y",
                                  "nt_dt": "20-04-2023",
                                  "nt_num": "CN/23-24/04",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 4745.76,
                                  "val": 5600
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "07ABCCS8123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 5185.12,
                                  "idt": "31-05-2023",
                                  "inum": "CN/23-24/22",
                                  "iseligible": "Y",
                                  "nt_dt": "31-05-2023",
                                  "nt_num": "CN/23-24/22",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 28806.2,
                                  "val": 33991.32
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "29ABCCP2123R1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7313.94,
                                  "idt": "09-01-2024",
                                  "inum": "4072324270414",
                                  "iseligible": "Y",
                                  "nt_dt": "09-01-2024",
                                  "nt_num": "4072324270414",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 40633,
                                  "val": 47946.94
                                }
                              ],
                              "filingdt": "08-02-2024",
                              "rtnPrd": "012024",
                              "stin": "27ABCCI7123M1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 1959.29,
                                  "idt": "16-08-2023",
                                  "inum": "ACN2324000052220",
                                  "iseligible": "Y",
                                  "nt_dt": "16-08-2023",
                                  "nt_num": "ACN2324000052220",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 10884.93,
                                  "val": 12844.22
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 503.56,
                                  "idt": "16-08-2023",
                                  "inum": "ACN2324000052224",
                                  "iseligible": "Y",
                                  "nt_dt": "16-08-2023",
                                  "nt_num": "ACN2324000052224",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2797.54,
                                  "val": 3301.1
                                },
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 7204.52,
                                  "idt": "16-08-2023",
                                  "inum": "ACN2324000052253",
                                  "iseligible": "Y",
                                  "nt_dt": "16-08-2023",
                                  "nt_num": "ACN2324000052253",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 40025.09,
                                  "val": 47229.61
                                }
                              ],
                              "filingdt": "08-09-2023",
                              "rtnPrd": "082023",
                              "stin": "07ABCCA9123A1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 431.82,
                                  "idt": "07-08-2023",
                                  "inum": "KBA/CR/23-24/01",
                                  "iseligible": "Y",
                                  "nt_dt": "07-08-2023",
                                  "nt_num": "KBA/CR/23-24/01",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 2399,
                                  "val": 2831
                                }
                              ],
                              "filingdt": "07-09-2023",
                              "rtnPrd": "082023",
                              "stin": "22ABCPB7123N1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 72,
                                  "idt": "30-09-2023",
                                  "inum": "CN-00001",
                                  "iseligible": "Y",
                                  "nt_dt": "30-09-2023",
                                  "nt_num": "CN-00001",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 400,
                                  "val": 472
                                }
                              ],
                              "filingdt": "07-10-2023",
                              "rtnPrd": "092023",
                              "stin": "23ABCPG7123H1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 51.84,
                                  "idt": "18-05-2023",
                                  "inum": "102324CN-00920",
                                  "iseligible": "Y",
                                  "nt_dt": "18-05-2023",
                                  "nt_num": "102324CN-00920",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 288,
                                  "val": 339.84
                                }
                              ],
                              "filingdt": "09-06-2023",
                              "rtnPrd": "052023",
                              "stin": "33ABCCZ5123C1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 67.5,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "15-09-2023",
                                  "inum": "SCN-2",
                                  "iseligible": "Y",
                                  "nt_dt": "15-09-2023",
                                  "nt_num": "SCN-2",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 67.5,
                                  "txval": 750,
                                  "val": 885
                                }
                              ],
                              "filingdt": "19-10-2023",
                              "rtnPrd": "102023",
                              "stin": "24ABCPS8123F1YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 0,
                                  "csamt": 0,
                                  "iamt": 9000,
                                  "idt": "12-04-2023",
                                  "inum": "CN-00118",
                                  "iseligible": "Y",
                                  "nt_dt": "12-04-2023",
                                  "nt_num": "CN-00118",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 0,
                                  "txval": 50000,
                                  "val": 59000
                                }
                              ],
                              "filingdt": "11-05-2023",
                              "rtnPrd": "042023",
                              "stin": "07ABCCS0123R2YZ"
                            },
                            {
                              "documents": [
                                {
                                  "camt": 349.7,
                                  "csamt": 0,
                                  "iamt": 0,
                                  "idt": "15-01-2024",
                                  "inum": "FBBL2424C7793",
                                  "iseligible": "Y",
                                  "nt_dt": "15-01-2024",
                                  "nt_num": "FBBL2424C7793",
                                  "ntty": "C",
                                  "pos": "24",
                                  "rchrg": "N",
                                  "reason": "",
                                  "samt": 349.7,
                                  "txval": 3885.59,
                                  "val": 4584.99
                                }
                              ],
                              "filingdt": "09-02-2024",
                              "rtnPrd": "012024",
                              "stin": "24ABCCB2123G1YZ"
                            }
                          ],
                          "docid": 1,
                          "fy": "2023-24",
                          "gstin": "29ABCCQ3123E0YZ"
                        }
                      },
                      "timestamp": 1734692043000,
                      "transaction_id": "17e311e7-1e20-4587-9da5-2fd2bc943152"
                    }
                  },
                  "No records found": {
                    "summary": "No records found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-9AG-1019",
                          "message": "No records found for the provided inputs"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "cdadbb0a-b4a7-4d7b-ae8b-4658022c4a7d"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-9/save": {
      "post": {
        "summary": "Save GSTR-9",
        "deprecated": false,
        "description": "",
        "operationId": "saveGstr9",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-9"
        ],
        "parameters": [
          {
            "name": "financial_year",
            "in": "query",
            "description": "Financial year. E.g., FY 2023-24",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{financial_year}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SaveGstr9Request"
              },
              "examples": {
                "GSTR-1/GSTR-3B not filed": {
                  "value": {
                    "fp": "032024",
                    "table4": {
                      "b2c": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "b2b": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "exp": {
                        "txval": 1000,
                        "iamt": 20,
                        "csamt": 20
                      },
                      "sez": {
                        "txval": 1000,
                        "iamt": 20,
                        "csamt": 20
                      },
                      "deemed": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "at": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rchrg": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "cr_nt": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "dr_nt": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "amd_pos": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "amd_neg": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table5": {
                      "zero_rtd": {
                        "txval": 1000
                      },
                      "sez": {
                        "txval": 1000
                      },
                      "rchrg": {
                        "txval": 1000
                      },
                      "exmt": {
                        "txval": 1000
                      },
                      "nil": {
                        "txval": 1000
                      },
                      "non_gst": {
                        "txval": 1000
                      },
                      "cr_nt": {
                        "txval": 1000
                      },
                      "dr_nt": {
                        "txval": 1000
                      },
                      "amd_pos": {
                        "txval": 1000
                      },
                      "amd_neg": {
                        "txval": 1000
                      }
                    },
                    "table6": {
                      "supp_non_rchrg": [
                        {
                          "itc_typ": "ip",
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ],
                      "supp_rchrg_unreg": [
                        {
                          "itc_typ": "ip",
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ],
                      "supp_rchrg_reg": [
                        {
                          "itc_typ": "ip",
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ],
                      "iog": [
                        {
                          "itc_typ": "ip",
                          "iamt": 20,
                          "csamt": 20
                        }
                      ],
                      "ios": {
                        "iamt": 20,
                        "csamt": 20
                      },
                      "isd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_clmd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "tran1": {
                        "camt": 20,
                        "samt": 20
                      },
                      "tran2": {
                        "camt": 20,
                        "samt": 20
                      },
                      "other": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table7": {
                      "rule37": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rule39": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rule42": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rule43": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "sec17": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "revsl_tran1": {
                        "camt": 20,
                        "samt": 20
                      },
                      "revsl_tran2": {
                        "camt": 20,
                        "samt": 20
                      },
                      "other": [
                        {
                          "desc": "other1",
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ]
                    },
                    "table8": {
                      "itc_inwd_supp": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_nt_availd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_nt_eleg": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "iog_taxpaid": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table9": {
                      "iamt": {
                        "txpyble": 1000
                      },
                      "camt": {
                        "txpyble": 1000
                      },
                      "samt": {
                        "txpyble": 1000
                      },
                      "csamt": {
                        "txpyble": 1000
                      },
                      "intr": {
                        "txpyble": 1000
                      },
                      "fee": {
                        "txpyble": 1000
                      },
                      "pen": {
                        "txpyble": 1000
                      },
                      "other": {
                        "txpyble": 1000
                      }
                    },
                    "table10": {
                      "itc_availd": {
                        "csamt": 20,
                        "samt": 20,
                        "camt": 20,
                        "iamt": 20
                      },
                      "itc_rvsl": {
                        "csamt": 20,
                        "samt": 20,
                        "camt": 20,
                        "iamt": 20
                      },
                      "dbn_amd": {
                        "csamt": 20,
                        "samt": 20,
                        "txval": 1000,
                        "camt": 20,
                        "iamt": 20
                      },
                      "cdn_amd": {
                        "csamt": 20,
                        "samt": 20,
                        "txval": 1000,
                        "camt": 20,
                        "iamt": 20
                      }
                    },
                    "table14": {
                      "iamt": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      },
                      "camt": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      },
                      "samt": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      },
                      "csamt": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      },
                      "intr": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      }
                    },
                    "table15": {
                      "rfd_clmd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rfd_sanc": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rfd_rejt": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rfd_pend": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "tax_dmnd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20,
                        "intr": 20,
                        "fee": 20,
                        "pen": 20
                      },
                      "tax_paid": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20,
                        "intr": 20,
                        "fee": 20,
                        "pen": 20
                      },
                      "dmnd_pend": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20,
                        "intr": 20,
                        "fee": 20,
                        "pen": 20
                      }
                    },
                    "table16": {
                      "comp_supp": {
                        "txval": 1000
                      },
                      "deemed_supp": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "not_returned": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table17": {
                      "items": [
                        {
                          "hsn_sc": "99",
                          "txval": 10000,
                          "isconcesstional": "N",
                          "rt": 5,
                          "iamt": 0,
                          "camt": 250,
                          "samt": 250,
                          "csamt": 0
                        },
                        {
                          "hsn_sc": "995411",
                          "txval": 10000,
                          "isconcesstional": "N",
                          "rt": 5,
                          "iamt": 0,
                          "camt": 250,
                          "samt": 250,
                          "csamt": 0
                        },
                        {
                          "hsn_sc": "4502",
                          "uqc": "BDL",
                          "qty": 1,
                          "txval": 10000,
                          "isconcesstional": "N",
                          "rt": 5,
                          "iamt": 0,
                          "camt": 250,
                          "samt": 250,
                          "csamt": 500
                        }
                      ]
                    },
                    "table18": {
                      "items": [
                        {
                          "hsn_sc": "1203",
                          "uqc": "BAL",
                          "qty": 1,
                          "txval": 10000,
                          "isconcesstional": "N",
                          "rt": 5,
                          "iamt": 0,
                          "camt": 250,
                          "samt": 250,
                          "csamt": 0
                        },
                        {
                          "hsn_sc": "999900",
                          "txval": 10000,
                          "isconcesstional": "N",
                          "rt": 5,
                          "iamt": 0,
                          "camt": 250,
                          "samt": 250,
                          "csamt": 0
                        }
                      ]
                    }
                  },
                  "summary": "GSTR-1/GSTR-3B not filed"
                },
                "200 Success": {
                  "value": {
                    "table4": {
                      "b2c": {
                        "csamt": 0,
                        "samt": 33512.24,
                        "txval": 32048951.84,
                        "camt": 33512.24,
                        "iamt": 5701789.17
                      },
                      "b2b": {
                        "csamt": 0,
                        "samt": 222404.68,
                        "txval": 2754408.56,
                        "camt": 222404.68,
                        "iamt": 50984.24
                      },
                      "cr_nt": {
                        "csamt": 0,
                        "samt": 8.76,
                        "txval": 426388.99,
                        "camt": 8.76,
                        "iamt": 76732.5
                      }
                    },
                    "fp": "032024",
                    "table9": {
                      "samt": {
                        "txpyble": 255908
                      },
                      "fee": {
                        "txpyble": 50
                      },
                      "camt": {
                        "txpyble": 255908
                      },
                      "iamt": {
                        "txpyble": 5711375
                      }
                    },
                    "table6": {
                      "supp_non_rchrg": [
                        {
                          "itc_typ": "cg",
                          "iamt": 16745.52,
                          "camt": 782.55,
                          "samt": 782.55,
                          "csamt": 0
                        },
                        {
                          "itc_typ": "is",
                          "iamt": 810052.26,
                          "camt": 169159.01,
                          "samt": 169159.01,
                          "csamt": 0
                        }
                      ]
                    },
                    "table17": {
                      "items": [
                        {
                          "hsn_sc": "998232",
                          "txval": 34376971.41,
                          "isconcesstional": "N",
                          "rt": 18,
                          "iamt": 5676040.91,
                          "camt": 255908.16,
                          "samt": 255908.16,
                          "csamt": 0
                        }
                      ]
                    }
                  },
                  "summary": "200 Success"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "GSTR-1/GSTR-3B not filed / 200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SaveGstr9Response"
                },
                "examples": {
                  "GSTR-1/GSTR-3B not filed": {
                    "summary": "GSTR-1/GSTR-3B not filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-9AS-1008",
                          "message": "To file your annual return, filing of all applicable returns/statements (GSTR-1 and GSTR-3B) are mandatory. File your pending applicable return(s)/ statement(s) and try again."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "2b3e8972-1486-48fd-ad85-4181d568633b"
                    }
                  },
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "3f0b7b96-2c56-4e34-a025-03c3577a8468"
                        }
                      },
                      "timestamp": 1734691818000,
                      "transaction_id": "fab4bf0e-0e9a-44d2-8373-2f5e85e63edf"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-9": {
      "get": {
        "summary": "GSTR-9 Details",
        "deprecated": false,
        "description": "",
        "operationId": "gstr9Details",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-9"
        ],
        "parameters": [
          {
            "name": "financial_year",
            "in": "query",
            "description": "Financial year. E.g., FY 2023-24",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{financial_year}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "GSTR-1/GSTR-3B not filed / 200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Gstr9DetailsResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "aggTurnover": 34376971.41,
                          "fp": "032024",
                          "gstin": "29AAACQ3770E000",
                          "table10": {
                            "total_turnover": {
                              "camt": 255908.16,
                              "csamt": 0,
                              "iamt": 5676040.91,
                              "samt": 255908.16,
                              "txval": 34376971.41
                            }
                          },
                          "table17": {
                            "chksum": "b828f456ff6dfd375ac7b875c60c4fd02d60b3dd8479b2f865cfa3eea8e34828",
                            "items": [
                              {
                                "camt": 255908.16,
                                "csamt": 0,
                                "desc": "Individual tax preparation and planning services",
                                "hsn_sc": "998232",
                                "iamt": 5676040.91,
                                "isconcesstional": "N",
                                "rt": 18,
                                "samt": 255908.16,
                                "txval": 34376971.41
                              }
                            ]
                          },
                          "table4": {
                            "b2b": {
                              "camt": 222404.68,
                              "csamt": 0,
                              "iamt": 50984.24,
                              "samt": 222404.68,
                              "txval": 2754408.56
                            },
                            "b2c": {
                              "camt": 33512.24,
                              "csamt": 0,
                              "iamt": 5701789.17,
                              "samt": 33512.24,
                              "txval": 32048951.84
                            },
                            "chksum": "4d91bdfa51ceaea1b5003dfdd20fa6e4cff26b261a82901ea07fdb82fe3dfd89",
                            "cr_nt": {
                              "camt": 8.76,
                              "csamt": 0,
                              "iamt": 76732.5,
                              "samt": 8.76,
                              "txval": 426388.99
                            },
                            "sub_totalAG1": {
                              "camt": 255916.92,
                              "csamt": 0,
                              "iamt": 5752773.41,
                              "samt": 255916.92,
                              "txval": 34803360.4
                            },
                            "sub_totalIL": {
                              "camt": -8.76,
                              "csamt": 0,
                              "iamt": -76732.5,
                              "samt": -8.76,
                              "txval": -426388.99
                            },
                            "sup_adv": {
                              "camt": 255908.16,
                              "csamt": 0,
                              "iamt": 5676040.91,
                              "samt": 255908.16,
                              "txval": 34376971.41
                            }
                          },
                          "table5": {
                            "amd_neg": {
                              "txval": 0
                            },
                            "amd_pos": {
                              "txval": 0
                            },
                            "chksum": "3e16d88c52a85601f04cf06b5cd6d9b9a59300457f9851668253abedb0dde848",
                            "cr_nt": {
                              "txval": 0
                            },
                            "dr_nt": {
                              "txval": 0
                            },
                            "ecom_14": {
                              "txval": 0
                            },
                            "exmt": {
                              "txval": 0
                            },
                            "nil": {
                              "txval": 0
                            },
                            "non_gst": {
                              "txval": 0
                            },
                            "rchrg": {
                              "txval": 0
                            },
                            "sez": {
                              "txval": 0
                            },
                            "sub_totalAF": {
                              "txval": 0
                            },
                            "sub_totalHK": {
                              "txval": 0
                            },
                            "total_tover": {
                              "camt": 255908.16,
                              "csamt": 0,
                              "iamt": 5676040.91,
                              "samt": 255908.16,
                              "txval": 34376971.41
                            },
                            "tover_tax_np": {
                              "txval": 0
                            },
                            "zero_rtd": {
                              "txval": 0
                            }
                          },
                          "table6": {
                            "chksum": "cf3a7e38a220ef732ad7cf504b080dbdcc8676c603f59dcadb8055c830338fdb",
                            "difference": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "itc_3b": {
                              "camt": 169941.56,
                              "csamt": 0,
                              "iamt": 826797.78,
                              "samt": 169941.56
                            },
                            "sub_totalBH": {
                              "camt": 169941.56,
                              "csamt": 0,
                              "iamt": 826797.78,
                              "samt": 169941.56
                            },
                            "sub_totalKM": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "supp_non_rchrg": [
                              {
                                "camt": 782.55,
                                "csamt": 0,
                                "iamt": 16745.52,
                                "itc_typ": "cg",
                                "samt": 782.55
                              },
                              {
                                "camt": 169159.01,
                                "csamt": 0,
                                "iamt": 810052.26,
                                "itc_typ": "is",
                                "samt": 169159.01
                              }
                            ],
                            "total_itc_availed": {
                              "camt": 169941.56,
                              "csamt": 0,
                              "iamt": 826797.78,
                              "samt": 169941.56
                            }
                          },
                          "table7": {
                            "chksum": "452bff4cb1704395ccfe07162f983680bdb6a406e6129a2d4a2b91bc31b5c26a",
                            "net_itc_aval": {
                              "camt": 169941.56,
                              "csamt": 0,
                              "iamt": 826797.78,
                              "samt": 169941.56
                            },
                            "revsl_tran1": {
                              "camt": 0,
                              "samt": 0
                            },
                            "revsl_tran2": {
                              "camt": 0,
                              "samt": 0
                            },
                            "rule37": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "rule39": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "rule42": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "rule43": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "sec17": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "tot_itc_revd": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            }
                          },
                          "table8": {
                            "chksum": "4b171cb877aadc52cae1a0aeb584a99f8876cd9096c7ac3b8c18ebc3ba960e05",
                            "differenceABC": {
                              "camt": 6878.36,
                              "csamt": 0,
                              "iamt": -7855,
                              "samt": 6878.36
                            },
                            "differenceGH": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "iog_itc_availd": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "iog_itc_ntavaild": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "iog_taxpaid": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "itc_2b": {
                              "camt": 176819.92,
                              "csamt": 0,
                              "iamt": 818942.78,
                              "samt": 176819.92
                            },
                            "itc_inwd_supp": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "itc_nt_availd": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "itc_nt_eleg": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            },
                            "itc_tot": {
                              "camt": 169941.56,
                              "csamt": 0,
                              "iamt": 826797.78,
                              "samt": 169941.56
                            },
                            "tot_itc_lapsed": {
                              "camt": 0,
                              "csamt": 0,
                              "iamt": 0,
                              "samt": 0
                            }
                          },
                          "table9": {
                            "camt": {
                              "tax_paid_itc_camt": 61419,
                              "tax_paid_itc_iamt": 16529,
                              "txpaid_cash": 177960,
                              "txpyble": 255908
                            },
                            "chksum": "54c119848512bda3faf6cac75ba729b0645c71c80d0dc89d845ffd4e6e2ee002",
                            "csamt": {
                              "tax_paid_itc_csamt": 0,
                              "txpaid_cash": 0,
                              "txpyble": 0
                            },
                            "fee": {
                              "txpaid_cash": 50,
                              "txpyble": 50
                            },
                            "iamt": {
                              "tax_paid_itc_camt": 108521,
                              "tax_paid_itc_iamt": 824879,
                              "tax_paid_itc_samt": 108521,
                              "txpaid_cash": 4669454,
                              "txpyble": 5711375
                            },
                            "intr": {
                              "txpaid_cash": 0,
                              "txpyble": 0
                            },
                            "other": {
                              "txpyble": 0
                            },
                            "pen": {
                              "txpyble": 0
                            },
                            "samt": {
                              "tax_paid_itc_iamt": 16529,
                              "tax_paid_itc_samt": 61419,
                              "txpaid_cash": 177960,
                              "txpyble": 255908
                            }
                          }
                        }
                      },
                      "timestamp": 1734691912000,
                      "transaction_id": "253683e4-71cb-4ed9-9f9c-44d5b7c7f6d6"
                    }
                  },
                  "GSTR-1/GSTR-3B not filed": {
                    "summary": "GSTR-1/GSTR-3B not filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RT-9AS-1008",
                          "message": "To file your annual return, filing of all applicable returns/statements (GSTR-1 and GSTR-3B) are mandatory. File your pending applicable return(s)/ statement(s) and try again."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a24e4095-6565-46e9-bce2-3cc9c4f20e9c"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-9/file": {
      "post": {
        "summary": "File GSTR-9",
        "deprecated": false,
        "description": "",
        "operationId": "fileGstr9",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-9"
        ],
        "parameters": [
          {
            "name": "pan",
            "in": "query",
            "description": "PAN of the authorized signatory",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{pan}}"
            }
          },
          {
            "name": "financial_year",
            "in": "query",
            "description": "Financial year. E.g., FY 2023-24",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{financial_year}}"
            }
          },
          {
            "name": "otp",
            "in": "query",
            "description": "Generated EVC OTP",
            "required": true,
            "schema": {
              "type": "string",
              "example": "575757"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/FileGstr9Request"
              },
              "examples": {
                "Return not ready to file": {
                  "value": {
                    "isnil": "N",
                    "fp": "032018",
                    "table4": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "b2c": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "b2b": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "exp": {
                        "txval": 1000,
                        "iamt": 20,
                        "csamt": 20
                      },
                      "sez": {
                        "txval": 1000,
                        "iamt": 20,
                        "csamt": 20
                      },
                      "deemed": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "at": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rchrg": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "cr_nt": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "dr_nt": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "amd_pos": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "amd_neg": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "sub_totalAG": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "sub_totalIL": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "sup_adv": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table5": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "zero_rtd": {
                        "txval": 1000
                      },
                      "sez": {
                        "txval": 1000
                      },
                      "rchrg": {
                        "txval": 1000
                      },
                      "exmt": {
                        "txval": 1000
                      },
                      "nil": {
                        "txval": 1000
                      },
                      "non_gst": {
                        "txval": 1000
                      },
                      "cr_nt": {
                        "txval": 1000
                      },
                      "dr_nt": {
                        "txval": 1000
                      },
                      "amd_pos": {
                        "txval": 1000
                      },
                      "amd_neg": {
                        "txval": 1000
                      },
                      "sub_totalAF": {
                        "txval": 1000
                      },
                      "sub_totalHK": {
                        "txval": 1000
                      },
                      "tover_tax_np": {
                        "txval": 1000
                      },
                      "total_tover": {
                        "txval": 1000
                      }
                    },
                    "table6": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "itc_3b": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "supp_non_rchrg": [
                        {
                          "itc_typ": "ip",
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ],
                      "supp_rchrg_unreg": [
                        {
                          "itc_typ": "ip",
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ],
                      "supp_rchrg_reg": [
                        {
                          "itc_typ": "ip",
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ],
                      "iog": [
                        {
                          "itc_typ": "ip",
                          "iamt": 20,
                          "csamt": 20
                        }
                      ],
                      "ios": {
                        "iamt": 20,
                        "csamt": 20
                      },
                      "isd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_clmd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "tran1": {
                        "camt": 20,
                        "samt": 20
                      },
                      "tran2": {
                        "camt": 20,
                        "samt": 20
                      },
                      "other": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "sub_totalBH": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "difference": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "sub_totalKM": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "total_itc_availed": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table7": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "rule37": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rule39": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rule42": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rule43": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "sec17": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "revsl_tran1": {
                        "camt": 20,
                        "samt": 20
                      },
                      "revsl_tran2": {
                        "camt": 20,
                        "samt": 20
                      },
                      "other": [
                        {
                          "desc": "other1",
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ],
                      "tot_itc_revd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "net_itc_aval": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table8": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "itc_2a": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_tot": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_inwd_supp": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_nt_availd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_nt_eleg": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "iog_taxpaid": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "iog_itc_availd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "iog_itc_ntavaild": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "differenceABC": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "differenceGH": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "tot_itc_lapsed": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table9": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "iamt": {
                        "txpyble": 1000,
                        "txpaid_cash": 1000,
                        "tax_paid_itc_iamt": 20,
                        "tax_paid_itc_camt": 20,
                        "tax_paid_itc_samt": 20
                      },
                      "camt": {
                        "txpyble": 1000,
                        "txpaid_cash": 1000,
                        "tax_paid_itc_iamt": 20,
                        "tax_paid_itc_camt": 20
                      },
                      "samt": {
                        "txpyble": 1000,
                        "txpaid_cash": 1000,
                        "tax_paid_itc_iamt": 20,
                        "tax_paid_itc_samt": 20
                      },
                      "csamt": {
                        "txpyble": 1000,
                        "txpaid_cash": 1000,
                        "tax_paid_itc_csamt": 20
                      },
                      "intr": {
                        "txpyble": 1000,
                        "txpaid_cash": 1000
                      },
                      "fee": {
                        "txpyble": 1000,
                        "txpaid_cash": 1000
                      },
                      "pen": {
                        "txpyble": 1000,
                        "txpaid_cash": 1000
                      },
                      "other": {
                        "txpyble": 1000,
                        "txpaid_cash": 1000
                      }
                    },
                    "table10": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "dbn_amd": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "cdn_amd": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_rvsl": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "itc_availd": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "total_turnover": {
                        "tx_val": 20,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table14": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "iamt": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      },
                      "camt": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      },
                      "samt": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      },
                      "csamt": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      },
                      "intr": {
                        "txpyble": 1000,
                        "txpaid": 1000
                      }
                    },
                    "table15": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "rfd_clmd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rfd_sanc": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rfd_rejt": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "rfd_pend": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "tax_dmnd": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20,
                        "intr": 20,
                        "fee": 20,
                        "pen": 20
                      },
                      "tax_paid": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20,
                        "intr": 20,
                        "fee": 20,
                        "pen": 20
                      },
                      "dmnd_pend": {
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20,
                        "intr": 20,
                        "fee": 20,
                        "pen": 20
                      }
                    },
                    "table16": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "comp_supp": {
                        "txval": 1000
                      },
                      "deemed_supp": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      },
                      "not_returned": {
                        "txval": 1000,
                        "iamt": 20,
                        "camt": 20,
                        "samt": 20,
                        "csamt": 20
                      }
                    },
                    "table17": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "items": [
                        {
                          "hsn_sc": "646473",
                          "uqc": "BAG",
                          "desc": "afdasfcvasd",
                          "isconcesstional": "N",
                          "qty": 24241,
                          "txval": 1000,
                          "rt": 5,
                          "iamt": 10,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ]
                    },
                    "table18": {
                      "chksum": "qwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyuiqwertyui",
                      "items": [
                        {
                          "hsn_sc": "646473",
                          "uqc": "BAG",
                          "desc": "afdasfcvasd",
                          "isconcesstional": "N",
                          "qty": 24241,
                          "txval": 10000,
                          "rt": 5,
                          "iamt": 0,
                          "camt": 20,
                          "samt": 20,
                          "csamt": 20
                        }
                      ]
                    },
                    "tax_pay": [
                      {
                        "sgst": {
                          "tx": 0,
                          "intr": 0,
                          "pen": 0,
                          "fee": 0,
                          "oth": 0,
                          "tot": 0
                        },
                        "cgst": {
                          "tx": 0,
                          "intr": 0,
                          "pen": 0,
                          "fee": 0,
                          "oth": 0,
                          "tot": 0
                        },
                        "liab_id": 8855,
                        "trancd": 30002,
                        "trandate": "12-02-2018"
                      }
                    ],
                    "offset": [
                      {
                        "tran_cd": 30002,
                        "sgst": {
                          "intr": 0,
                          "tx": 0,
                          "fee": 4400,
                          "tot": 4400
                        },
                        "cgst": {
                          "intr": 0,
                          "tx": 0,
                          "fee": 4400,
                          "tot": 4400
                        }
                      }
                    ]
                  },
                  "summary": "Return not ready to file"
                },
                "200 Success": {
                  "value": {
                    "table5": {
                      "dr_nt": {
                        "txval": 0
                      },
                      "amd_neg": {
                        "txval": 0
                      },
                      "non_gst": {
                        "txval": 0
                      },
                      "amd_pos": {
                        "txval": 0
                      },
                      "sez": {
                        "txval": 0
                      },
                      "total_tover": {
                        "csamt": 0,
                        "samt": 255908.16,
                        "txval": 34376971.41,
                        "camt": 255908.16,
                        "iamt": 5676040.91
                      },
                      "nil": {
                        "txval": 0
                      },
                      "ecom_14": {
                        "txval": 0
                      },
                      "sub_totalHK": {
                        "txval": 0
                      },
                      "tover_tax_np": {
                        "txval": 0
                      },
                      "exmt": {
                        "txval": 0
                      },
                      "sub_totalAF": {
                        "txval": 0
                      },
                      "rchrg": {
                        "txval": 0
                      },
                      "zero_rtd": {
                        "txval": 0
                      },
                      "cr_nt": {
                        "txval": 0
                      },
                      "chksum": "3e16d88c52a85601f04cf06b5cd6d9b9a59300457f9851668253abedb0dde848"
                    },
                    "table4": {
                      "b2c": {
                        "csamt": 0,
                        "samt": 33512.24,
                        "txval": 32048951.84,
                        "camt": 33512.24,
                        "iamt": 5701789.17
                      },
                      "b2b": {
                        "csamt": 0,
                        "samt": 222404.68,
                        "txval": 2754408.56,
                        "camt": 222404.68,
                        "iamt": 50984.24
                      },
                      "sub_totalIL": {
                        "csamt": 0,
                        "samt": -8.76,
                        "txval": -426388.99,
                        "camt": -8.76,
                        "iamt": -76732.5
                      },
                      "sup_adv": {
                        "csamt": 0,
                        "samt": 255908.16,
                        "txval": 34376971.41,
                        "camt": 255908.16,
                        "iamt": 5676040.91
                      },
                      "sub_totalAG1": {
                        "csamt": 0,
                        "samt": 255916.92,
                        "txval": 34803360.4,
                        "camt": 255916.92,
                        "iamt": 5752773.41
                      },
                      "cr_nt": {
                        "csamt": 0,
                        "samt": 8.76,
                        "txval": 426388.99,
                        "camt": 8.76,
                        "iamt": 76732.5
                      },
                      "chksum": "4d91bdfa51ceaea1b5003dfdd20fa6e4cff26b261a82901ea07fdb82fe3dfd89"
                    },
                    "aggTurnover": 34376971.41,
                    "tax_pay": [
                      {
                        "sgst": {
                          "intr": 0,
                          "oth": 0,
                          "tx": 0,
                          "fee": 0,
                          "tot": 0,
                          "pen": 0
                        },
                        "trancd": 30002,
                        "cgst": {
                          "intr": 0,
                          "oth": 0,
                          "tx": 0,
                          "fee": 0,
                          "tot": 0,
                          "pen": 0
                        },
                        "liab_id": 0
                      }
                    ],
                    "table17": {
                      "items": [
                        {
                          "csamt": 0,
                          "samt": 255908.16,
                          "rt": 18,
                          "isconcesstional": "N",
                          "txval": 34376971.41,
                          "camt": 255908.16,
                          "hsn_sc": "998232",
                          "iamt": 5676040.91,
                          "desc": "Individual tax preparation and planning services"
                        }
                      ],
                      "chksum": "b828f456ff6dfd375ac7b875c60c4fd02d60b3dd8479b2f865cfa3eea8e34828"
                    },
                    "isnil": "N",
                    "fp": "032024",
                    "table9": {
                      "csamt": {
                        "txpyble": 0,
                        "txpaid_cash": 0,
                        "tax_paid_itc_csamt": 0
                      },
                      "samt": {
                        "tax_paid_itc_iamt": 16529,
                        "tax_paid_itc_samt": 61419,
                        "txpyble": 255908,
                        "txpaid_cash": 177960
                      },
                      "intr": {
                        "txpyble": 0,
                        "txpaid_cash": 0
                      },
                      "other": {
                        "txpyble": 0
                      },
                      "fee": {
                        "txpyble": 50,
                        "txpaid_cash": 50
                      },
                      "pen": {
                        "txpyble": 0
                      },
                      "camt": {
                        "tax_paid_itc_iamt": 16529,
                        "txpyble": 255908,
                        "tax_paid_itc_camt": 61419,
                        "txpaid_cash": 177960
                      },
                      "iamt": {
                        "tax_paid_itc_iamt": 824879,
                        "tax_paid_itc_samt": 108521,
                        "txpyble": 5711375,
                        "tax_paid_itc_camt": 108521,
                        "txpaid_cash": 4669454
                      },
                      "chksum": "54c119848512bda3faf6cac75ba729b0645c71c80d0dc89d845ffd4e6e2ee002"
                    },
                    "table8": {
                      "itc_tot": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "iog_itc_availd": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "differenceGH": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "iog_itc_ntavaild": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_inwd_supp": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_nt_availd": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "differenceABC": {
                        "csamt": 0,
                        "samt": 6878.36,
                        "camt": 6878.36,
                        "iamt": -7855
                      },
                      "itc_2b": {
                        "csamt": 0,
                        "samt": 176819.92,
                        "camt": 176819.92,
                        "iamt": 818942.78
                      },
                      "tot_itc_lapsed": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "chksum": "4b171cb877aadc52cae1a0aeb584a99f8876cd9096c7ac3b8c18ebc3ba960e05",
                      "itc_nt_eleg": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "iog_taxpaid": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "table10": {
                      "total_turnover": {
                        "csamt": 0,
                        "samt": 255908.16,
                        "txval": 34376971.41,
                        "camt": 255908.16,
                        "iamt": 5676040.91
                      }
                    },
                    "table7": {
                      "rule43": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "rule42": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "sec17": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "rule39": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "rule37": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "revsl_tran1": {
                        "samt": 0,
                        "camt": 0
                      },
                      "net_itc_aval": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "revsl_tran2": {
                        "samt": 0,
                        "camt": 0
                      },
                      "tot_itc_revd": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "chksum": "452bff4cb1704395ccfe07162f983680bdb6a406e6129a2d4a2b91bc31b5c26a"
                    },
                    "table6": {
                      "total_itc_availed": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "sub_totalBH": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "supp_non_rchrg": [
                        {
                          "csamt": 0,
                          "samt": 782.55,
                          "itc_typ": "cg",
                          "camt": 782.55,
                          "iamt": 16745.52
                        },
                        {
                          "csamt": 0,
                          "samt": 169159.01,
                          "itc_typ": "is",
                          "camt": 169159.01,
                          "iamt": 810052.26
                        }
                      ],
                      "difference": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_3b": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "sub_totalKM": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "chksum": "cf3a7e38a220ef732ad7cf504b080dbdcc8676c603f59dcadb8055c830338fdb"
                    }
                  },
                  "summary": "200 Success"
                },
                "Invalid summary payload": {
                  "value": {
                    "table5": {
                      "dr_nt": {
                        "txval": 0
                      },
                      "amd_neg": {
                        "txval": 0
                      },
                      "non_gst": {
                        "txval": 0
                      },
                      "amd_pos": {
                        "txval": 0
                      },
                      "sez": {
                        "txval": 0
                      },
                      "total_tover": {
                        "csamt": 0,
                        "samt": 255908.16,
                        "txval": 34376971.41,
                        "camt": 255908.16,
                        "iamt": 5676040.91
                      },
                      "nil": {
                        "txval": 0
                      },
                      "ecom_14": {
                        "txval": 0
                      },
                      "sub_totalHK": {
                        "txval": 0
                      },
                      "tover_tax_np": {
                        "txval": 0
                      },
                      "exmt": {
                        "txval": 0
                      },
                      "sub_totalAF": {
                        "txval": 0
                      },
                      "rchrg": {
                        "txval": 0
                      },
                      "zero_rtd": {
                        "txval": 0
                      },
                      "cr_nt": {
                        "txval": 0
                      },
                      "chksum": "3e16d88c52a85601f04cf06b5cd6d9b9a59300457f9851668253abedb0dde848"
                    },
                    "table4": {
                      "b2c": {
                        "csamt": 0,
                        "samt": 33512.24,
                        "txval": 32048951.84,
                        "camt": 33512.24,
                        "iamt": 5701789.17
                      },
                      "b2b": {
                        "csamt": 0,
                        "samt": 222404.68,
                        "txval": 2754408.56,
                        "camt": 222404.68,
                        "iamt": 50984.24
                      },
                      "sub_totalIL": {
                        "csamt": 0,
                        "samt": -8.76,
                        "txval": -426388.99,
                        "camt": -8.76,
                        "iamt": -76732.5
                      },
                      "sup_adv": {
                        "csamt": 0,
                        "samt": 255908.16,
                        "txval": 34376971.41,
                        "camt": 255908.16,
                        "iamt": 5676040.91
                      },
                      "sub_totalAG1": {
                        "csamt": 0,
                        "samt": 255916.92,
                        "txval": 34803360.4,
                        "camt": 255916.92,
                        "iamt": 5752773.41
                      },
                      "cr_nt": {
                        "csamt": 0,
                        "samt": 8.76,
                        "txval": 426388.99,
                        "camt": 8.76,
                        "iamt": 76732.5
                      },
                      "chksum": "4d91bdfa51ceaea1b5003dfdd20fa6e4cff26b261a82901ea07fdb82fe3dfd89"
                    },
                    "aggTurnover": 34376971.41,
                    "tax_pay": [
                      {
                        "sgst": {
                          "intr": 0,
                          "oth": 0,
                          "tx": 0,
                          "fee": 0,
                          "tot": 0,
                          "pen": 0
                        },
                        "trancd": 30002,
                        "cgst": {
                          "intr": 0,
                          "oth": 0,
                          "tx": 0,
                          "fee": 0,
                          "tot": 0,
                          "pen": 0
                        },
                        "liab_id": 0
                      }
                    ],
                    "table17": {
                      "items": [
                        {
                          "csamt": 0,
                          "samt": 255908.16,
                          "rt": 18,
                          "isconcesstional": "N",
                          "txval": 34376971.41,
                          "camt": 255908.16,
                          "hsn_sc": "998232",
                          "iamt": 5676040.91,
                          "desc": "Individual tax preparation and planning services"
                        }
                      ],
                      "chksum": "b828f456ff6dfd375ac7b875c60c4fd02d60b3dd8479b2f865cfa3eea8e34828"
                    },
                    "fp": "032024",
                    "table9": {
                      "csamt": {
                        "txpyble": 0,
                        "txpaid_cash": 0,
                        "tax_paid_itc_csamt": 0
                      },
                      "samt": {
                        "tax_paid_itc_iamt": 16529,
                        "tax_paid_itc_samt": 61419,
                        "txpyble": 255908,
                        "txpaid_cash": 177960
                      },
                      "intr": {
                        "txpyble": 0,
                        "txpaid_cash": 0
                      },
                      "other": {
                        "txpyble": 0
                      },
                      "fee": {
                        "txpyble": 50,
                        "txpaid_cash": 50
                      },
                      "pen": {
                        "txpyble": 0
                      },
                      "camt": {
                        "tax_paid_itc_iamt": 16529,
                        "txpyble": 255908,
                        "tax_paid_itc_camt": 61419,
                        "txpaid_cash": 177960
                      },
                      "iamt": {
                        "tax_paid_itc_iamt": 824879,
                        "tax_paid_itc_samt": 108521,
                        "txpyble": 5711375,
                        "tax_paid_itc_camt": 108521,
                        "txpaid_cash": 4669454
                      },
                      "chksum": "54c119848512bda3faf6cac75ba729b0645c71c80d0dc89d845ffd4e6e2ee002"
                    },
                    "table8": {
                      "itc_tot": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "iog_itc_availd": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "differenceGH": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "iog_itc_ntavaild": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_inwd_supp": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_nt_availd": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "differenceABC": {
                        "csamt": 0,
                        "samt": 6878.36,
                        "camt": 6878.36,
                        "iamt": -7855
                      },
                      "itc_2b": {
                        "csamt": 0,
                        "samt": 176819.92,
                        "camt": 176819.92,
                        "iamt": 818942.78
                      },
                      "tot_itc_lapsed": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "chksum": "4b171cb877aadc52cae1a0aeb584a99f8876cd9096c7ac3b8c18ebc3ba960e05",
                      "itc_nt_eleg": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "iog_taxpaid": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      }
                    },
                    "table10": {
                      "total_turnover": {
                        "csamt": 0,
                        "samt": 255908.16,
                        "txval": 34376971.41,
                        "camt": 255908.16,
                        "iamt": 5676040.91
                      }
                    },
                    "table7": {
                      "rule43": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "rule42": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "sec17": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "rule39": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "rule37": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "revsl_tran1": {
                        "samt": 0,
                        "camt": 0
                      },
                      "net_itc_aval": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "revsl_tran2": {
                        "samt": 0,
                        "camt": 0
                      },
                      "tot_itc_revd": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "chksum": "452bff4cb1704395ccfe07162f983680bdb6a406e6129a2d4a2b91bc31b5c26a"
                    },
                    "table6": {
                      "total_itc_availed": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "sub_totalBH": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "supp_non_rchrg": [
                        {
                          "csamt": 0,
                          "samt": 782.55,
                          "itc_typ": "cg",
                          "camt": 782.55,
                          "iamt": 16745.52
                        },
                        {
                          "csamt": 0,
                          "samt": 169159.01,
                          "itc_typ": "is",
                          "camt": 169159.01,
                          "iamt": 810052.26
                        }
                      ],
                      "difference": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "itc_3b": {
                        "csamt": 0,
                        "samt": 169941.56,
                        "camt": 169941.56,
                        "iamt": 826797.78
                      },
                      "sub_totalKM": {
                        "csamt": 0,
                        "samt": 0,
                        "camt": 0,
                        "iamt": 0
                      },
                      "chksum": "cf3a7e38a220ef732ad7cf504b080dbdcc8676c603f59dcadb8055c830338fdb"
                    }
                  },
                  "summary": "Invalid summary payload"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Return not ready to file / 200 Success / Invalid summary payload",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FileGstr9Response"
                },
                "examples": {
                  "Return not ready to file": {
                    "summary": "Return not ready to file",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET00014",
                          "message": "Return Form is not in ready to be filed status"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "94168208-945b-4bc9-b087-19ae28d9edb5"
                    }
                  },
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "ack_num": "AC240324630721I"
                        }
                      },
                      "timestamp": 1734956564000,
                      "transaction_id": "8d087565-90c6-4657-89c1-6712bb3f5c64"
                    }
                  },
                  "Invalid summary payload": {
                    "summary": "Invalid summary payload",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RETPV01",
                          "message": "Invalid summary payload"
                        }
                      },
                      "timestamp": 1734956385000,
                      "transaction_id": "741ff6a5-1fea-4663-9079-4bdd08d721e8"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/invoices/added-back-liabilities/{year}/{month}": {
      "get": {
        "summary": "Get Added Back Liability Records",
        "deprecated": false,
        "description": "Get added-back liability records for a return period for authenticated taxpayer.",
        "tags": [],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "section",
            "in": "query",
            "description": "",
            "required": true,
            "example": "{{section}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInvoicesAddedBackLiabilitiesYearMonthResponse"
                },
                "examples": {
                  "Get Added Back Liability Records": {
                    "summary": "Get Added Back Liability Records",
                    "value": {
                      "code": 200,
                      "timestamp": 1769775766724,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No added back liability records available for the selected input criteria",
                          "error_cd": "IMS0027"
                        }
                      },
                      "transaction_id": "0ab634ae-dd3b-4d73-80ec-3b54295df359"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/invoices/{year}/{month}/sales": {
      "get": {
        "summary": "Get sales Invoices",
        "deprecated": false,
        "description": "Get all sales invoices for a return period for authenticated taxpayer.",
        "tags": [
          "Taxpayer",
          "Returns",
          "Invoice Management System"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "section",
            "in": "query",
            "description": "",
            "required": true,
            "example": "{{section}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "return_type",
            "in": "query",
            "description": "",
            "required": true,
            "example": "gstr-1",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "Public key required to authorize API access.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{version}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInvoicesYearMonthSalesResponse"
                },
                "examples": {
                  "No document found": {
                    "summary": "No document found",
                    "value": {
                      "code": 200,
                      "timestamp": 1769775829713,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "4a196407-84f7-4957-a1f3-ddcc917995c0"
                    }
                  },
                  "Get sales Invoices": {
                    "summary": "Get sales Invoices",
                    "value": {
                      "code": 200,
                      "timestamp": 1769775861433,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "gstr1": {
                            "b2b": [
                              {
                                "inv": [
                                  {
                                    "val": 69.03,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 58.5,
                                          "camt": 0,
                                          "iamt": 10.53
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "01",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005843",
                                    "cflag": "N",
                                    "chksum": "ac595e4f4932a2c0fb621f88e44e73b9f81851e47db79cb6fcf818523cb8784b"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "01",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005873",
                                    "cflag": "N",
                                    "chksum": "abd5519d0dc65edc45e2708acc24dc0d8ad6af1bec6731c7cbf28d277e5c7fdb"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "01AAICV5796M1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "03",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005711",
                                    "cflag": "N",
                                    "chksum": "2e5790bca524250277c9f69df61d6e63e9e1fb1553f22b06c382594f1058f664"
                                  },
                                  {
                                    "val": 259.01,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 219.5,
                                          "camt": 0,
                                          "iamt": 39.51
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "03",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005697",
                                    "cflag": "N",
                                    "chksum": "abed250f3b61e37eaeb2a55727781b917b26ec8046e8c1be226d71f1132c06db"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "03AAFCK0732M1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "03",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006671",
                                    "cflag": "N",
                                    "chksum": "2aac9c9be8a0968787f878d542b3f6df3ed2eb8a34ec4f90fa5d2b96ec1e1924"
                                  },
                                  {
                                    "val": 160.48,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 136,
                                          "camt": 0,
                                          "iamt": 24.48
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "03",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006644",
                                    "cflag": "N",
                                    "chksum": "e579437d3a16c9d6316e86e9ac2b391288cacfa3b6eb5d97defa3ecb1e896079"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "03AAJCA6875F1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "03",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006427",
                                    "cflag": "N",
                                    "chksum": "cdddb8edf9e97818c9e0ddc791855411433acf32167a0b8e866cd9945b201c8b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "03AAJCG5278J1ZC"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 66.08,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 56,
                                          "camt": 0,
                                          "iamt": 10.08
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "03",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005962",
                                    "cflag": "N",
                                    "chksum": "19407576f58b46f786414d1e0e833e0afe290f066488034be58e98994977332e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "03AAJCM5903C1ZX"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "05",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005871",
                                    "cflag": "N",
                                    "chksum": "0a6689983e89279f87b5a8ac95e30f61a70907fa376c39b748de451e78d2d4d4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "05AAKCP8334M1ZX"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005777",
                                    "cflag": "N",
                                    "chksum": "e7043a83670a770f24c807c30ed4dc6128f9925b19ab53e6132d0c5fa16e825f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAACB2775Q1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006389",
                                    "cflag": "N",
                                    "chksum": "a5787a7cc6d0f9351ed4a54e68290dbfbee1511d6d2023f3521a88dffde2c5d9"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AACCO3273E1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006710",
                                    "cflag": "N",
                                    "chksum": "c3367bf2e707637f9eecbdc157e7d4fe45d788a7988c5ae9e6650beaa963bf2b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AADCD2821N1ZO"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 950.49,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 805.5,
                                          "camt": 0,
                                          "iamt": 144.99
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005858",
                                    "cflag": "N",
                                    "chksum": "a60af8eb1a80f729781584c9b68a66904a9086180009dfecaf1a90c69705a0dc"
                                  },
                                  {
                                    "val": 2699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2287.29,
                                          "camt": 0,
                                          "iamt": 411.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005865",
                                    "cflag": "N",
                                    "chksum": "ce20d749b4ec00da18a7bceddf902c5b11b36a78a077143fb7ba0a54f5ff45bb"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AADCH5529B1ZY"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "flag": "U",
                                    "updby": "S",
                                    "inum": "INV-006248",
                                    "cflag": "N",
                                    "inv_typ": "R",
                                    "pos": "06",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "chksum": "dc1e3f2c606ef87bacbd92e8bef04e16f501554f8de5855eaaf5ee18bcedc12c",
                                    "remarks": "Pending"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAECE4604R1ZD"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005976",
                                    "cflag": "N",
                                    "chksum": "c4baa41a3c6b47cd739b4fd6d15352bafb2bb0531ef1ce0057e866be4a725e94"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAECW1011E1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 33.28,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 28.2,
                                          "camt": 0,
                                          "iamt": 5.08
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "25-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006484",
                                    "cflag": "N",
                                    "chksum": "36a449f2ec8e7bcdc36e9b109837da51d48a808e3179ad2b5ad2d061dd3e0ef2"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "25-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006492",
                                    "cflag": "N",
                                    "chksum": "b5fec3700df7023cfae7277e3cbb4c92c4def82af6e669d808a46933a45dc5ce"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAFCD3729F1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 205.32,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 174,
                                          "camt": 0,
                                          "iamt": 31.32
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006543",
                                    "cflag": "N",
                                    "chksum": "51747337a714888fe1a75b7b3000f023b1802f7bff1d815b4e7b6830307f8865"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAFCE0772P1ZB"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006208",
                                    "cflag": "N",
                                    "chksum": "6c9c50033317e38a44172fd90da81d9137ec434af169fd561c7c45c6da200342"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAJCT6095N1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006057",
                                    "cflag": "N",
                                    "chksum": "064afb4cd3505de3152b324db5a95d1e1b34a4801c94918b803bff8d7ade2498"
                                  },
                                  {
                                    "val": 247.21,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 209.5,
                                          "camt": 0,
                                          "iamt": 37.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006044",
                                    "cflag": "N",
                                    "chksum": "cc30ecbd70db6236e9c550d0019956e07119345c26829b92e99360c1b11d5930"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAKCK8810B1ZQ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 9999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8473.73,
                                          "camt": 0,
                                          "iamt": 1525.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005916",
                                    "cflag": "N",
                                    "chksum": "3298270cac651e02d9fec566d31e924a5700c2a81bb2666ef78bc4e1d3c1871d"
                                  },
                                  {
                                    "val": 0.59,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 0.5,
                                          "camt": 0,
                                          "iamt": 0.09
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005896",
                                    "cflag": "N",
                                    "chksum": "13b80ebc392563e5c40bf61cec603044842c5121e1e8f741ceec4d78734b7273"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAKCR7582F1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006300",
                                    "cflag": "N",
                                    "chksum": "04739ff468e72cf33481efa8f92009de6aeb0d5dae4003dcd0d71377b988a88f"
                                  },
                                  {
                                    "val": 38.94,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 33,
                                          "camt": 0,
                                          "iamt": 5.94
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006288",
                                    "cflag": "N",
                                    "chksum": "ef772c11e1b5f365730af4e940de24bd5d68bbd180cf8105f0a722087841e38d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AALCC7992F1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005502",
                                    "cflag": "N",
                                    "chksum": "891649540f5d1fee933f2edfa4abfc77a730f37b927b68f6346bb9392f3f5e7c"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AALCG7453P1ZV"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1334.64,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1131.05,
                                          "camt": 0,
                                          "iamt": 203.59
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006420",
                                    "cflag": "N",
                                    "chksum": "fdf84ea8e8afd6c8bf6e8b2cda7e7a19a45b461af370a16f47dfbee0a649274a"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006423",
                                    "cflag": "N",
                                    "chksum": "17ad678c9029f90ba622ae165c488af01453cfe5f8de2612382b1f8cd5db612c"
                                  },
                                  {
                                    "val": 673.33,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 570.62,
                                          "camt": 0,
                                          "iamt": 102.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006588",
                                    "cflag": "N",
                                    "chksum": "51cd637fb0396069a81a3cca8b7acf949fc109df92a8a78556c5dae2424863d4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AALCR8909H1ZY"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005987",
                                    "cflag": "N",
                                    "chksum": "18a91a67dd180fb3652af38de574fa8c49aeab48b43cf19bf83cb204d2f57bbc"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AALCT9492P1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "25-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006494",
                                    "cflag": "N",
                                    "chksum": "3634c33b50231e2143b125e339dea66809934f03e07eb6618e9240befab108ba"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AARFC8408R1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2.36,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2,
                                          "camt": 0,
                                          "iamt": 0.36
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006563",
                                    "cflag": "N",
                                    "chksum": "7c21cc05ceec87e2bdc3293e51ed460a254c7c49a27279ba112b899bd9f90027"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006570",
                                    "cflag": "N",
                                    "chksum": "f153e7983a2c2a7a0d9aaa4e1f5657b6ef810f850c9561896606e2a385641168"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAXCS9876J1Z4"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2287.29,
                                          "camt": 0,
                                          "iamt": 411.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006667",
                                    "cflag": "N",
                                    "chksum": "9da529993028d8a10442f9aa6abfdf77ad3f4173252989d70a362cd800ecb960"
                                  },
                                  {
                                    "val": 46.02,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 39,
                                          "camt": 0,
                                          "iamt": 7.02
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006654",
                                    "cflag": "N",
                                    "chksum": "203e8ab314f5ad52873a214c207054676b1cd31d5cb11e12e526b933f7f2435e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AAZCA0305J1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006428",
                                    "cflag": "N",
                                    "chksum": "419530df91a81197f42ef6e2234850fb100185daf1374eb582c64bb8ce0af7f6"
                                  },
                                  {
                                    "val": 768.48,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 651.25,
                                          "camt": 0,
                                          "iamt": 117.23
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006404",
                                    "cflag": "N",
                                    "chksum": "684f85493392ee54ed5f3c888ff76c5dd56b83ff4add4dcb3d2eebafa92033c6"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AELPD9856N3ZQ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 415.95,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 352.5,
                                          "camt": 0,
                                          "iamt": 63.45
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005491",
                                    "cflag": "N",
                                    "chksum": "a3ba61db55640148f6a29792208285cc1584b4792445fe3b26524840d7c02217"
                                  },
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005506",
                                    "cflag": "N",
                                    "chksum": "f7b0120041f0d24ffd994e14103280e6db0b782d0d615984d5a4807d843d241e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "06AKLPK7700J3ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006579",
                                    "cflag": "N",
                                    "chksum": "c814f95746b405d08295237e594eb0b48933edc6340fc491c0ebb1898fae92cd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAACM4948G1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005551",
                                    "cflag": "N",
                                    "chksum": "0ff6b5c6417de1f9de7458aec1e65f4b7c25d9c1b53e1eea843804015c914831"
                                  },
                                  {
                                    "val": 61.07,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 51.75,
                                          "camt": 0,
                                          "iamt": 9.32
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005537",
                                    "cflag": "N",
                                    "chksum": "bb4be633459a913cb9b7a88f61e4165518e42acc94ab0dd111ebd77f748904ec"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAACS4864K1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005640",
                                    "cflag": "N",
                                    "chksum": "95bff9015122e1e2b32b380b162b5a17d544e8e8beabc5a37666f3d059526967"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AADCL8794N1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005504",
                                    "cflag": "N",
                                    "chksum": "81d33820565e2c333ae5b8d2d926b886e6ea2364dbd4fb43cbc3b366f1acd9f7"
                                  },
                                  {
                                    "val": 16.52,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 14,
                                          "camt": 0,
                                          "iamt": 2.52
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005488",
                                    "cflag": "N",
                                    "chksum": "8aa888924581bcc8f2fec63f992f3f296d86eb071f9f4cce45a2a0dce5ce6274"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AADCU2848N1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005914",
                                    "cflag": "N",
                                    "chksum": "56054a4a1e330c062e281ea8f526a05fcfe97df5f49fc80cb70dbb1ae70b89c4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAECF7048Q1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 118.89,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 100.75,
                                          "camt": 0,
                                          "iamt": 18.14
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005954",
                                    "cflag": "N",
                                    "chksum": "4e865f67581defb90a48ee8bb2a43003c12b2438ae7ad949f9a3683e346ef0ba"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAFCL4866M1ZX"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 33.63,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 28.5,
                                          "camt": 0,
                                          "iamt": 5.13
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005662",
                                    "cflag": "N",
                                    "chksum": "e9ce887f87041e221588f6843add2678fc09ec02dc4e3dbc98e80e8a478c0d7f"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005681",
                                    "cflag": "N",
                                    "chksum": "6f6680f68bab426a51ee5f96fc8a3465e811d3a0e9ac204aaf97e36940dd5f02"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAGCP5698A1Z9"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 251.34,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 213,
                                          "camt": 0,
                                          "iamt": 38.34
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006449",
                                    "cflag": "N",
                                    "chksum": "6ab3cdf850b1cc8c754bf6a3be2bf52d12fe4d1fd69e60e4a9a34941a1e75971"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006456",
                                    "cflag": "N",
                                    "chksum": "67340b76b2e86e60975040b25e4bdb9fe3cdde886330c4028248d39656431a68"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAHCH2770C1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 29.5,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 25,
                                          "camt": 0,
                                          "iamt": 4.5
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005960",
                                    "cflag": "N",
                                    "chksum": "bcb30fa39281658c148b5df0b5a6f455379ffd82928dabfadb0ac0ef038b67a4"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005970",
                                    "cflag": "N",
                                    "chksum": "5de5aa3b26b7015516cd5199e78c995df2e3b24477fdff43a94b6601c87b1685"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAHCK9198D1Z4"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 224.79,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 190.5,
                                          "camt": 0,
                                          "iamt": 34.29
                                        }
                                      }
                                    ],
                                    "flag": "U",
                                    "updby": "S",
                                    "inum": "INV-005815",
                                    "cflag": "N",
                                    "inv_typ": "R",
                                    "pos": "07",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "R",
                                    "chksum": "848aca0b4c77c434c2af7363ad7f20d45bfb1409b173bde8a6942302a9b351f0",
                                    "remarks": "Service not taken"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAICB2409H1ZW"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 3099,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2626.27,
                                          "camt": 0,
                                          "iamt": 472.73
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005574",
                                    "cflag": "N",
                                    "chksum": "e7e8c8a97815027178e3775db15c3fd60d5a80e11fccc4449546993473a23fba"
                                  },
                                  {
                                    "val": 2219.6,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1881.02,
                                          "camt": 0,
                                          "iamt": 338.58
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005600",
                                    "cflag": "N",
                                    "chksum": "b399aba9d4ab853f0ba700eb07631edbd49501a504e472386514da0598aee7b4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAICD6574D1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 9999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8473.73,
                                          "camt": 0,
                                          "iamt": 1525.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005641",
                                    "cflag": "N",
                                    "chksum": "1f54c95b6dced1836d897aaacd94f585955fdac6ae63af376c787ea403ea078b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAJCC6586H1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005657",
                                    "cflag": "N",
                                    "chksum": "b9ebef84a07a0d5cb90efd912eb6977e3b4bc9f1e40ea144f94c3ec00523d30b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAJCK2075P1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 18.88,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 16,
                                          "camt": 0,
                                          "iamt": 2.88
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006695",
                                    "cflag": "N",
                                    "chksum": "bd281279c5076427ddf4bb92ae05abf9e2bdbc257fb6a9d0768fc9dc24ffc740"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006703",
                                    "cflag": "N",
                                    "chksum": "d8f67a8189ad68f348697f2be2fd940f768031525d29ae7a56d9cd6ff3dc4b04"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAKCD8997L1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1485.59,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1258.97,
                                          "camt": 0,
                                          "iamt": 226.62
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005738",
                                    "cflag": "N",
                                    "chksum": "6d7fbcd4dacaa3bab90574c2c3b211bdb94a3af5901fc9dab3af688c3697dd21"
                                  },
                                  {
                                    "val": 4128.23,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3498.5,
                                          "camt": 0,
                                          "iamt": 629.73
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005736",
                                    "cflag": "N",
                                    "chksum": "90050ffaa827abacc950b0cb33446614c6ab2d8047ceb67745d6f013116a60a6"
                                  },
                                  {
                                    "val": 7299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6185.59,
                                          "camt": 0,
                                          "iamt": 1113.41
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005735",
                                    "cflag": "N",
                                    "chksum": "2478392e1c5fb1148b70d44e9688cef3b88dc227a72d7d750a1450731b09f1d6"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAMCA0827E1ZX"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 44.84,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 38,
                                          "camt": 0,
                                          "iamt": 6.84
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005615",
                                    "cflag": "N",
                                    "chksum": "cdec88d769bdbe569c644dcaa713972974210cfeedde984cd546070b24951389"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AATCA2287M1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 9709.2,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8228.14,
                                          "camt": 0,
                                          "iamt": 1481.06
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005567",
                                    "cflag": "N",
                                    "chksum": "bb39eb616451abeea05de769c75f4877839b8c5f7e6eee434a090aef0e647b5b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAXCS5397Q2ZV"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 20.06,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 17,
                                          "camt": 0,
                                          "iamt": 3.06
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005626",
                                    "cflag": "N",
                                    "chksum": "d1a926c67d676062aa6074f00f151c1e7ec3d6d8340c8864b60352c1ddb8d47d"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005644",
                                    "cflag": "N",
                                    "chksum": "0e99944f7afbaa901e107547afb5041eb91862fb1d7931ae73e9942727b27c2a"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07AAXFD1123G1ZI"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "25-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006495",
                                    "cflag": "N",
                                    "chksum": "6248951e739157034820bcbec0befd9bb305d71bfbbaadd025eb1614e8f6a4ac"
                                  },
                                  {
                                    "val": 25.96,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 22,
                                          "camt": 0,
                                          "iamt": 3.96
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "25-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006482",
                                    "cflag": "N",
                                    "chksum": "e317badf93fef35d77194f3e0269a22289fd57f3ed485eb341d56a996f0fb042"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07ABCFA1013E2ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006630",
                                    "cflag": "N",
                                    "chksum": "3ce88d9a04146564270679a2e4a94be68ef997f300f855189a5ba2e7b7e32d86"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07ABOCS6128D1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005558",
                                    "cflag": "N",
                                    "chksum": "6ed8b172b5c8635d6795325c29d053a4f90a125ad403056d0f9d28153aa8da4f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07BAYPV7703C1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006058",
                                    "cflag": "N",
                                    "chksum": "1d35ddf559a4c9d4f6ccda6ee62629f9eea482af625595418b60858a0b5f45f4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07BGHPS8579N3Z6"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006526",
                                    "cflag": "N",
                                    "chksum": "54408013941bedaa8acf295010d7904b469e792beb3ce27daac136ed9c18429e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "07GHUPS7682M1ZW"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 39.24,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 33.25,
                                          "camt": 0,
                                          "iamt": 5.99
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006642",
                                    "cflag": "N",
                                    "chksum": "ed9d6b183156d17e7335b45c0bb590a00a32c2ddcb5a242479fe47c5d752a869"
                                  },
                                  {
                                    "val": 9999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8473.73,
                                          "camt": 0,
                                          "iamt": 1525.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006640",
                                    "cflag": "N",
                                    "chksum": "73cbb92d1ab4a65deca61d4b9128809f0214deb576729618e8e2a8d5316bdd65"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005709",
                                    "cflag": "N",
                                    "chksum": "26778dbe437ea7b37f385d0fd57a43c7b41ed32111a966a2f1f60b7fd2118e3b"
                                  },
                                  {
                                    "val": 94.4,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 80,
                                          "camt": 0,
                                          "iamt": 14.4
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005691",
                                    "cflag": "N",
                                    "chksum": "b133c086703d633e9e50ce05fa4aef09e8c5f23cc0a8f88d5a07916ff75530d5"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AAECW0267A1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 704.46,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 597,
                                          "camt": 0,
                                          "iamt": 107.46
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005672",
                                    "cflag": "N",
                                    "chksum": "ad9c005644cfcd9e1ec81dadb0b5935583f318e2417adc5a9815d890776aa266"
                                  },
                                  {
                                    "val": 212.79,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 180.33,
                                          "camt": 0,
                                          "iamt": 32.46
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005671",
                                    "cflag": "N",
                                    "chksum": "f6512bddf9d2c16899b5576a3a753831183bd5f36cfae7c9585112e75a048a31"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005678",
                                    "cflag": "N",
                                    "chksum": "f448ee41482d398a7eacbf0d037a674691a2b8ca3feab0596c7cfac31aa2b050"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AAGCD8452J1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 137.86,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 116.83,
                                          "camt": 0,
                                          "iamt": 21.03
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006582",
                                    "cflag": "N",
                                    "chksum": "bedcde51837ff076fa6fbb763d9ff6b6475bb222c8460261094d66e788093b07"
                                  },
                                  {
                                    "val": 511.53,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 433.5,
                                          "camt": 0,
                                          "iamt": 78.03
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006283",
                                    "cflag": "N",
                                    "chksum": "e719a02b28dc8cabc66290b87ac9cc99a651b5b31bd96c3711283bc1a9bde853"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006302",
                                    "cflag": "N",
                                    "chksum": "29c3ed31aaa3c331749149ade792b85011712490257f92fe06b23af7814b01b1"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AAGCV6609K1ZV"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2199,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1863.56,
                                          "camt": 0,
                                          "iamt": 335.44
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006200",
                                    "cflag": "N",
                                    "chksum": "fa605540b433dcf3fc70343d1b89849b609148a78f92c9819dc9dfe28de8a3b5"
                                  },
                                  {
                                    "val": 304.74,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 258.25,
                                          "camt": 0,
                                          "iamt": 46.49
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006176",
                                    "cflag": "N",
                                    "chksum": "ffd20a41b87395d12eebacacc51df1daa4f5a74a94087c48f33a4e427b2d86e3"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AAHCN8675J1ZQ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 13.57,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 11.5,
                                          "camt": 0,
                                          "iamt": 2.07
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006131",
                                    "cflag": "N",
                                    "chksum": "714cf5b69e13b9d7e4abc150dfde0db8ea66817f2c55d44c3ee9a9d553ce51c4"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006666",
                                    "cflag": "N",
                                    "chksum": "2498af4862acc3e50804fefd8153daef753011420356c9ac8fe883c21022cb16"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AAKCB0837D1ZW"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005642",
                                    "cflag": "N",
                                    "chksum": "744d780633daf1474f5de37795026ea8cbbb8c8d6044de2c4e67f69147ae8467"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AALCB9301R1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006384",
                                    "cflag": "N",
                                    "chksum": "130a67ee8a84a0283aa1bd55dfdb67ad0f5c00aa7a9e386b1d18c674c924dc0e"
                                  },
                                  {
                                    "val": 3.25,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2.75,
                                          "camt": 0,
                                          "iamt": 0.5
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006381",
                                    "cflag": "N",
                                    "chksum": "832821a57865d3afa0c7a81e1a799c729931548163562ec1951e4b6a06184a12"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08ABECS5596D1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 23.98,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 20.32,
                                          "camt": 0,
                                          "iamt": 3.66
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005698",
                                    "cflag": "N",
                                    "chksum": "11324b0325608a0f0bf8fa18b5a3cd1e2dd6bcad250d97d44c2dddce8b67a3c7"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AIPPA5844D1ZB"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 17.7,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 15,
                                          "camt": 0,
                                          "iamt": 2.7
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006702",
                                    "cflag": "N",
                                    "chksum": "ea7213b4b97463bb38955e6e675c6adfce21b3f16e6099f539815e3d0fc6bb76"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006711",
                                    "cflag": "N",
                                    "chksum": "524935e36fb165203d067da47f30048b8664bbe0f3214e52ed430bb0aac013c5"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08APLPH3349R1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006278",
                                    "cflag": "N",
                                    "chksum": "6bdaed13b68772c7e4ce8151ab881f46cb13e6211c01314404664ab4ac9ab7ea"
                                  },
                                  {
                                    "val": 105.89,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 89.74,
                                          "camt": 0,
                                          "iamt": 16.15
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006581",
                                    "cflag": "N",
                                    "chksum": "cf25f06ac5e8b95794c78b1a22b1c32f34e6a2a906c22b662d2211e37ff4deed"
                                  },
                                  {
                                    "val": 346.92,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 294,
                                          "camt": 0,
                                          "iamt": 52.92
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006280",
                                    "cflag": "N",
                                    "chksum": "459124db77149ebf5449510fc84fa93ba7e62b793469466a946a043aba431cb4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AUHPS3183K1Z2"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005570",
                                    "cflag": "N",
                                    "chksum": "6bb4a523a7f79a707fc8897a200a21c6d23af2df08e21de9de93ba10fb904eb5"
                                  },
                                  {
                                    "val": 32.45,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 27.5,
                                          "camt": 0,
                                          "iamt": 4.95
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006600",
                                    "cflag": "N",
                                    "chksum": "777e10b22916749681306d50fd4d272ee489a1e2d5722746935480fd65ea7030"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08AXFPK7917C2ZG"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 182.9,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 155,
                                          "camt": 0,
                                          "iamt": 27.9
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006113",
                                    "cflag": "N",
                                    "chksum": "4ff01beba362cbce4550827a15c184fa14c31f153a17d08340be247bcd3f88c7"
                                  },
                                  {
                                    "val": 2199,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1863.56,
                                          "camt": 0,
                                          "iamt": 335.44
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006127",
                                    "cflag": "N",
                                    "chksum": "1d46483cbf05a348e5f8671cad97eb835f65fe77e32db70608fbb6571f43ccb5"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08CVWPP9723J2ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005780",
                                    "cflag": "N",
                                    "chksum": "2d13506b55f0f88902af4c6348966011e6f2ebe72cc390a66b91ff54c68d8dc2"
                                  },
                                  {
                                    "val": 199.42,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 169,
                                          "camt": 0,
                                          "iamt": 30.42
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "08",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005741",
                                    "cflag": "N",
                                    "chksum": "d6d9b2b06ba22e192eebe99afa824d2869fa9fdf7984f03ba5bb7cf31528a7bb"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "08OOGPS8870N1ZJ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 134.52,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 114,
                                          "camt": 0,
                                          "iamt": 20.52
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005673",
                                    "cflag": "N",
                                    "chksum": "dc013fd1c79a70a5aa8fca0eac7ec06c93a797a053e7de1fdc8a305df1eaa0bf"
                                  },
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005886",
                                    "cflag": "N",
                                    "chksum": "2c41fc3760e1d1df954b25f37dc6b78d5bafde10683c218896842d3f484d85f9"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAACB0361N3ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 9.44,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8,
                                          "camt": 0,
                                          "iamt": 1.44
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006406",
                                    "cflag": "N",
                                    "chksum": "2896621f5a30477c3a7fa18db02fff7a80281ffb4475d1321542307598aa2f2d"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006426",
                                    "cflag": "N",
                                    "chksum": "0977e05a0937805a5fe42a296274902930e57f63d2a16db840a0d0d9d1ac0bdc"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAACQ8008K1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006064",
                                    "cflag": "N",
                                    "chksum": "954ce8fc49f4f2d472b3f20faf5c8aafca5dfa8c477455a53018e62a0c037e97"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAACQ9178L1ZO"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006529",
                                    "cflag": "N",
                                    "chksum": "385ea0d14ce89a5bf19cb7f47d60a730aa4e6fba735d1a571cc6eca7785546c0"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AADCC0540R1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 45.43,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 38.5,
                                          "camt": 0,
                                          "iamt": 6.93
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006321",
                                    "cflag": "N",
                                    "chksum": "a9a1bfb1a7a464c645daadbb1f4883c076ec114590a7b27f43eb88adbd20e7f0"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAECA7148L1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 647.82,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 549,
                                          "camt": 0,
                                          "iamt": 98.82
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005661",
                                    "cflag": "N",
                                    "chksum": "028d588dd36218f5857ec502d62e0ec500aed0b9142f469aec9fe52aa1f53a1c"
                                  },
                                  {
                                    "val": 2199,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1863.56,
                                          "camt": 0,
                                          "iamt": 335.44
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005679",
                                    "cflag": "N",
                                    "chksum": "b8316c808f4cd01dfe6ebd74a72bdccb062838201fa565970b991f8a3ef6ed7e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAECI5668M1ZV"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 276.12,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 234,
                                          "camt": 0,
                                          "iamt": 42.12
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005892",
                                    "cflag": "N",
                                    "chksum": "eba7ec8563f1e665edb712f5b5ce7944624d03486adfa18f456a571d8d798285"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005923",
                                    "cflag": "N",
                                    "chksum": "44d9f3a4f37c3f0098b15f7dcd9e6df91ce0162d669a41fb7d4abf1e345ef28b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAECL2549Q1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 14.16,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 12,
                                          "camt": 0,
                                          "iamt": 2.16
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005531",
                                    "cflag": "N",
                                    "chksum": "e02dc0f7ed67e6d516cf8d83fe9e26216a8cf761db1fc47a857410ee9aeb3c1a"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005555",
                                    "cflag": "N",
                                    "chksum": "fb8712eead8adedc148917ca81fae6bc55c7cd28afbac05b88124bfd45f56667"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAFCL3771M1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 8.26,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 7,
                                          "camt": 0,
                                          "iamt": 1.26
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005757",
                                    "cflag": "N",
                                    "chksum": "5d4945aedd009dd5bcff7c7abda11cf257b868b41df9e2bee1e805ca55eaaafa"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005787",
                                    "cflag": "N",
                                    "chksum": "501cd53a23ad90f80377fbb51185278f7380c1369af7a13597b9989aca370bce"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAGCB7341E1ZR"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005576",
                                    "cflag": "N",
                                    "chksum": "0800a928c86ef8f1ecfe29c7d9e0f4ba70996710f900be466984d0db23c01579"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAGCE6536L1Z6"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2.36,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2,
                                          "camt": 0,
                                          "iamt": 0.36
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005909",
                                    "cflag": "N",
                                    "chksum": "bd7539469725d068e102cdfce16e1836e9f7808edf8f93d672fe45abd6ff2beb"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005922",
                                    "cflag": "N",
                                    "chksum": "52f84e103b6b2806511e520d9c78f7854697e54ef7ec687e2afbb4c827987436"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAHCR7610P1ZR"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006390",
                                    "cflag": "N",
                                    "chksum": "63090ff746d3db37de323c2c8824053df0787bdd86a6f5b0edf779b5865d1d18"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAHCT4954C1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006198",
                                    "cflag": "N",
                                    "chksum": "6f052cf33c3f812a126a780eff23792d2e56c017b457cb352537dd4eb4f8caaf"
                                  },
                                  {
                                    "val": 3.54,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3,
                                          "camt": 0,
                                          "iamt": 0.54
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006185",
                                    "cflag": "N",
                                    "chksum": "858f2a8801f80ac19c917aef54f53a5dc8a41015294b8cb4670861d7c76f7572"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAICC8725H1ZC"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "06",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005790",
                                    "cflag": "N",
                                    "chksum": "a99517796a69167580ec22c4387fdb49f4ae4555037fd26bca98e6ea7f1149c6"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AALCB4340G1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 573.48,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 486,
                                          "camt": 0,
                                          "iamt": 87.48
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006158",
                                    "cflag": "N",
                                    "chksum": "e881d1c49a0f4ac9ad7bdaffef59f4dbe18c248f102b09bc06d985da554edcb6"
                                  },
                                  {
                                    "val": 2699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2287.29,
                                          "camt": 0,
                                          "iamt": 411.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006477",
                                    "cflag": "N",
                                    "chksum": "0ea53018148e146994f7a4d1d010ccb21357aa564f219a44a967380ab7588866"
                                  },
                                  {
                                    "val": 2199,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1863.56,
                                          "camt": 0,
                                          "iamt": 335.44
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006156",
                                    "cflag": "N",
                                    "chksum": "69b9b084d269badf202457a6708f1a8f18880c4c7e64e61244d43e47244da315"
                                  },
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005560",
                                    "cflag": "N",
                                    "chksum": "11f67b4c0acf5daf376bfaeb486c72ba33bbfc13628dc5eee5b17203a6cbdc84"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005713",
                                    "cflag": "N",
                                    "chksum": "685c5bb3eceb6312625061948efeb55ba022f5e15734b16e9b5c400dc03261f1"
                                  },
                                  {
                                    "val": 14.75,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 12.5,
                                          "camt": 0,
                                          "iamt": 2.25
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005689",
                                    "cflag": "N",
                                    "chksum": "9f47431dfaf208350317dc28fafea0ce308d15cb3a785f1eda8d755b4f40e010"
                                  },
                                  {
                                    "val": 443.68,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 376,
                                          "camt": 0,
                                          "iamt": 67.68
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005545",
                                    "cflag": "N",
                                    "chksum": "83bfccffc61db7669b3550eac87f1cdc90f621120a209a43de7b8b0b342368a2"
                                  },
                                  {
                                    "val": 7.33,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6.21,
                                          "camt": 0,
                                          "iamt": 1.12
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006589",
                                    "cflag": "N",
                                    "chksum": "6acc6d4d3e4f575c9e7fbe1a49880ca82dc7277ee5bf295b6af4764e251fdc00"
                                  },
                                  {
                                    "val": 0.85,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 0.72,
                                          "camt": 0,
                                          "iamt": 0.13
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006159",
                                    "cflag": "N",
                                    "chksum": "6faadd59880720534111ad45b3cf5bcf72ddb21d1013e26e4acf2730e5f1c176"
                                  },
                                  {
                                    "val": 749.3,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 635,
                                          "camt": 0,
                                          "iamt": 114.3
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006478",
                                    "cflag": "N",
                                    "chksum": "28e34822a75db1b8951a24077d5a74fc217bcddce0c732a06c0a77ed552c4342"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAPCA7247R1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 822.59,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 697.11,
                                          "camt": 0,
                                          "iamt": 125.48
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006244",
                                    "cflag": "N",
                                    "chksum": "f75cccbfbe4f87bd9b2bbe9601c6a48c0a915ce86fda4d44d54be319c47919ab"
                                  },
                                  {
                                    "val": 805.94,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 683,
                                          "camt": 0,
                                          "iamt": 122.94
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006242",
                                    "cflag": "N",
                                    "chksum": "64ac4c1f9f88ab805b3c20af9e62a671243d17f6f779e475c6cb530e1f370640"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AATFV4082G1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 168.74,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 143,
                                          "camt": 0,
                                          "iamt": 25.74
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006004",
                                    "cflag": "N",
                                    "chksum": "42455f5e43eeee6696ff93e8b6837ee103ac65db040adab4343a70b09af69f67"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006012",
                                    "cflag": "N",
                                    "chksum": "321cd50cf7ee59e6a9adc98f70feb177a1ca5902a2e11bc3167b9512ddd1db92"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AAXCS0177J1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005925",
                                    "cflag": "N",
                                    "chksum": "6e2ed65877446d246ce71f76c612199146ae5d525983c8cdca2c4d3324766117"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09ABBCA4589R1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 106.2,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 90,
                                          "camt": 0,
                                          "iamt": 16.2
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006376",
                                    "cflag": "N",
                                    "chksum": "3e874b686582af4a9ad5d7e3ba39284dbb43330b363a611f2d8b37cf59a41abf"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "07",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006395",
                                    "cflag": "N",
                                    "chksum": "ff78f76a66440655e4807e15d537590237251a73ad18934d2945f2209741d037"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09ABDCA7581M1Z2"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 18.29,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 15.5,
                                          "camt": 0,
                                          "iamt": 2.79
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005997",
                                    "cflag": "N",
                                    "chksum": "5758f76ed0ebd034c484087457b40a3877e3ff338ccd6c8caca41a5650003656"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006007",
                                    "cflag": "N",
                                    "chksum": "0205d3eac9e10bb2aeafafa63eac0389c051744bfb65dd9712a3f7d69271b2cd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09ACBFA4819L1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7.67,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6.5,
                                          "camt": 0,
                                          "iamt": 1.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006188",
                                    "cflag": "N",
                                    "chksum": "928bf1b2948f1e142cf0f573335b435de5608f369655e7c9b25052623535ff28"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006393",
                                    "cflag": "N",
                                    "chksum": "a98e09162a94ce19d53e82975eb0d48614f241dad0816d34cb57cf5d0ff4df29"
                                  },
                                  {
                                    "val": 251.93,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 213.5,
                                          "camt": 0,
                                          "iamt": 38.43
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "09",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006369",
                                    "cflag": "N",
                                    "chksum": "ab20ddb52940a1847898612af3367190519ca59f5db9b4aa50f48dbcb71f8130"
                                  },
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 129.58,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.84,
                                          "camt": 129.58,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006247",
                                    "cflag": "N",
                                    "chksum": "2df18d018e553e2b870ef99766718a4797ed39edf0c83c6ba2e000eee7375acb"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09AFVPJ9226R2Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "flag": "U",
                                    "updby": "S",
                                    "inum": "INV-006527",
                                    "cflag": "N",
                                    "inv_typ": "R",
                                    "pos": "09",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "chksum": "bd7aba2d1249a5e93f5b9cfe2b97f0c7a1eccf7d4e64bed72164754e1829e572",
                                    "remarks": "bill not not confirm by party"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "09BGKPK0122J1ZI"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "10",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005971",
                                    "cflag": "N",
                                    "chksum": "4f8e3524c0b53b20e3bc8e12ade498b01d91aa9966126efd3d388b4d84d68248"
                                  },
                                  {
                                    "val": 25.96,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 22,
                                          "camt": 0,
                                          "iamt": 3.96
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "10",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005945",
                                    "cflag": "N",
                                    "chksum": "ca6328aa81dcb274a4f74208ffd0430786ad3f2c4f1f5fd12a1197ba3ef5d066"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "10AAGCF0269F1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "18",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006253",
                                    "cflag": "N",
                                    "chksum": "7d8678b9e011eeb5da65654863c5c50f27db66cd022243fb1072dcd94271966b"
                                  },
                                  {
                                    "val": 4.72,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4,
                                          "camt": 0,
                                          "iamt": 0.72
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "18",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006239",
                                    "cflag": "N",
                                    "chksum": "ff6b38f29ccf2b4861274d051b87ed8579ac1363387859c58da8c011536413bd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "18AAVFB6120B1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 113.58,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 96.25,
                                          "camt": 0,
                                          "iamt": 17.33
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006042",
                                    "cflag": "N",
                                    "chksum": "76e77484b715e67947862631c3535a63274f28634cfa60eedaa14a6c67fc095d"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006061",
                                    "cflag": "N",
                                    "chksum": "e4c8099c85a39bd0427bea87d05fcf528f6df2bcc3b321d9554d5a6e2c2befba"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AAACQ7310A1ZW"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 105.02,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 89,
                                          "camt": 0,
                                          "iamt": 16.02
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005801",
                                    "cflag": "N",
                                    "chksum": "99574b27573fbfbfc9c9ef6ec6a2c017d606b23b3d44429c9963bcd6d4fa6572"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005822",
                                    "cflag": "N",
                                    "chksum": "abe70f05bf47f4833620154c6b1d5c1a2eeb01d60bb16a77103341beb7df2773"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AAATB0431G2Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 74.64,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 63.25,
                                          "camt": 0,
                                          "iamt": 11.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005838",
                                    "cflag": "N",
                                    "chksum": "c7af2f8a76c72bc359cbb5e97fb76f31e5916db2bc02136cdaf9ffac20263238"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005875",
                                    "cflag": "N",
                                    "chksum": "a2fae528d7945aa447e0392661f81b111c88cb40db514eb1c24ad8a2285c8799"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AADCF9800F1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005715",
                                    "cflag": "N",
                                    "chksum": "05e3ff48ff8bf793fb996b723d625f5d311eeb587a1966ccd95bf54591a83f9c"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AADCW8382P1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006669",
                                    "cflag": "N",
                                    "chksum": "38e742903c3d8abf7d2ae9038271072a506d7ca28a4e8dac1fb3b2f7e23b08f1"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AAFCH2546E1ZO"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006276",
                                    "cflag": "N",
                                    "chksum": "7b43fe4834f1a98f363f5ab310487781d564906ee409db0f853f7bdb5178dbf1"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AAFCN5507K1Z6"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 15.64,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 13.25,
                                          "camt": 0,
                                          "iamt": 2.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006598",
                                    "cflag": "N",
                                    "chksum": "6191b4cdb5c0a7cafe244b2906affd6289deff80c6f883636284f4c0cec03bf8"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006625",
                                    "cflag": "N",
                                    "chksum": "ad4d6d436ddd67ba4fd25ffccfb9ed1d583cf3db69fb95ee01ec331e590372d9"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AAHCE1877B1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7.38,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6.25,
                                          "camt": 0,
                                          "iamt": 1.13
                                        }
                                      }
                                    ],
                                    "flag": "U",
                                    "updby": "S",
                                    "inum": "INV-006700",
                                    "cflag": "N",
                                    "inv_typ": "R",
                                    "pos": "19",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "chksum": "99c34429eb6dacbb8b3307bc010ef18106c3045a4d9c9c4fe9789303d840da5d",
                                    "remarks": "Bill not received"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AAHCN3100C1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006346",
                                    "cflag": "N",
                                    "chksum": "3be681562fb60e4e2354ead92d83864e3a3e97ac440e7e2ef0b58090be45e35c"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AAICB8490N1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "19",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005566",
                                    "cflag": "N",
                                    "chksum": "326904ad516351b5711c2ee87dd1a4b9057d77b6792da913a3246f404c3a769c"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "19AALCK5781E1Z4"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "20",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005967",
                                    "cflag": "N",
                                    "chksum": "a90681b810a629834f327395ee0ec286368494cd4b8147e27c41ea6767a35bb3"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "20AABCZ2952J1ZE"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "20",
                                    "idt": "15-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006092",
                                    "cflag": "N",
                                    "chksum": "94c7f9e582c97365cf9a8fda6a5f681dbd7c73bf6fb44562124b60589b86e302"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "20AAFCF0438F1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "20",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005708",
                                    "cflag": "N",
                                    "chksum": "bb4f4d2fa082892a7e787f60c31b4c020a78a549a828f6b830d7c08dd6a2bb92"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "20AAHCR8111P1Z9"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "21",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005639",
                                    "cflag": "N",
                                    "chksum": "fb2cc52bbb56cdf60ef333f6d0a237d842193be93ebb1a9e3534b154338784b7"
                                  },
                                  {
                                    "val": 123.02,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 104.25,
                                          "camt": 0,
                                          "iamt": 18.77
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "21",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005631",
                                    "cflag": "N",
                                    "chksum": "8d86052c3d203e17c35326fe598ff0bcf9ef97da05a0a738c7a4a0cfdcf0b7ae"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "21AAJCG0006E1ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 237.18,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 201,
                                          "camt": 0,
                                          "iamt": 36.18
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "21",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005693",
                                    "cflag": "N",
                                    "chksum": "1a5e46c34b47671837fd14a57389db9d1382c063905c56b6564c635ef008f0a4"
                                  },
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "21",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005710",
                                    "cflag": "N",
                                    "chksum": "9a43307d128d812536a31ca4bc7cce52f463346febab598e067054fbd17cb2b1"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "21AAMCM7313B1ZY"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "21",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005821",
                                    "cflag": "N",
                                    "chksum": "f58b6d04cf1984755feeb125e743c2be8377a4b72c5d78f91290579956bed8dd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "21ABMCS0216J1ZL"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "22",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005656",
                                    "cflag": "N",
                                    "chksum": "5f64e126d1efe1a0e15ee155e12445e29c5b73166f150b0ec90ccd7e5182f745"
                                  },
                                  {
                                    "val": 1112.89,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 943.13,
                                          "camt": 0,
                                          "iamt": 169.76
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "22",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005632",
                                    "cflag": "N",
                                    "chksum": "3a6d82ada0ee440f66a39aaa803455538dcb9d1321c526baf615bac32689a95f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "22AAJFE1859L1Z9"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "22",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006336",
                                    "cflag": "N",
                                    "chksum": "a2b61688fa8f6afeafb9f28a46a8f4ea886c0d22128285514fa28bb70f46f0c2"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "22ABBCA9031C1ZC"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 12.98,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 11,
                                          "camt": 0,
                                          "iamt": 1.98
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "22",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006446",
                                    "cflag": "N",
                                    "chksum": "988c4d639e12d2f0bc00faf340afffb5cd9d59c5284e98dc3318524f3dbc05bd"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "22",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006457",
                                    "cflag": "N",
                                    "chksum": "5d2ff3f9744f378d61419b9f0649e25acfd4e426d3f4c7975a8da51e5c8a5bbe"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "22AGVPB5970F2ZB"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006571",
                                    "cflag": "N",
                                    "chksum": "0e8af0fea6c486070a0e5c309e5dccacc7f479d3fc702a4f9ecadc8911620b51"
                                  },
                                  {
                                    "val": 154.58,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 131,
                                          "camt": 0,
                                          "iamt": 23.58
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006544",
                                    "cflag": "N",
                                    "chksum": "b1d439c1f8686dfe6bff03c6f49a9485a8f96b87a7a0f83ecb128d1542924e4a"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "23AAACW1567D1ZO"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 225.77,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 191.33,
                                          "camt": 0,
                                          "iamt": 34.44
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006684",
                                    "cflag": "N",
                                    "chksum": "29ee659907fbeefebb23cccc18892faf233567465cb8ad65fe6d36f2645fbedf"
                                  },
                                  {
                                    "val": 3099,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2626.27,
                                          "camt": 0,
                                          "iamt": 472.73
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006682",
                                    "cflag": "N",
                                    "chksum": "773fe365229133b6b19eb6ca174f497211cbdd3965d1e6674127b2b8ee8fa386"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "23AACCM5772G3ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006531",
                                    "cflag": "N",
                                    "chksum": "5b8ef9b9d7246dedefaa94ed298bf14de7e5a252068c0438c2a7eb7a369ad6d4"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006580",
                                    "cflag": "N",
                                    "chksum": "5485fb72472931a9200ec96fe4d678d03b297e3c0eef1290d9d9f2a57321b7da"
                                  },
                                  {
                                    "val": 159.3,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 135,
                                          "camt": 0,
                                          "iamt": 24.3
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006525",
                                    "cflag": "N",
                                    "chksum": "c0f683db94c291efbb26e0a7ce337bb66f6db6d384841bdf329b902c68208906"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "23AADCL9984A1ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1.18,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1,
                                          "camt": 0,
                                          "iamt": 0.18
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006355",
                                    "cflag": "N",
                                    "chksum": "4d3433a109f48261a183f2340cc140a68d3d3730f1afb5414ce31309baab96b1"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005731",
                                    "cflag": "N",
                                    "chksum": "172040c17e17a0d0aeb6033a6ed3db93ea137ee6ec768bcc0d5ce11c47741847"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "23AAYCS7801C2Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 163.73,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 138.75,
                                          "camt": 0,
                                          "iamt": 24.98
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005616",
                                    "cflag": "N",
                                    "chksum": "55f0456d57a97635fc3d54b95f916c8c45dcc8854dab8fd3afb64dec113dba58"
                                  },
                                  {
                                    "val": 3099,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2626.27,
                                          "camt": 0,
                                          "iamt": 472.73
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005638",
                                    "cflag": "N",
                                    "chksum": "172b2187c8154f39494a8ca6165bb88802aafbbc40de4246526521861dc46e77"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "23ACYFS6212N1ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 10.62,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 9,
                                          "camt": 0,
                                          "iamt": 1.62
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "23",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005862",
                                    "cflag": "N",
                                    "chksum": "a5b5231b5d876afb8bd28441a2724452a11bdcdf90ce868509e9dfff7c3eabcd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "23AQXPJ2705L1ZJ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2607.8,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 198.9,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2210,
                                          "camt": 198.9,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005609",
                                    "cflag": "N",
                                    "chksum": "a7a51c064dd46f8e3f69ccc5f51f39fca3be1dc0bba9ac7d6ca465a33dd3169d"
                                  },
                                  {
                                    "val": 7.97,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0.61,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6.75,
                                          "camt": 0.61,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006006",
                                    "cflag": "N",
                                    "chksum": "5f68ecbd86ad19d85cc943ab6321b46b1331552ac84414297aefbbb47e341e46"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAACQ3770E1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006279",
                                    "cflag": "N",
                                    "chksum": "b8c5f79a9cd7c9ed7fb3d52065d775969316e41d199823a62a1ba15d2fdfe015"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAACS8577K1ZV"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006712",
                                    "cflag": "N",
                                    "chksum": "70bc369b11efdc419637566020af10350ee673abf100afab68085b7a91bd6d98"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAAFU9641B1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006568",
                                    "cflag": "N",
                                    "chksum": "aa1d69fc1360f8ed8bb7d11a78fe7bc728836a970fce290be39b1c4cdcfe385d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AACCL3635K1ZJ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1162.78,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 88.69,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 985.4,
                                          "camt": 88.69,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006612",
                                    "cflag": "N",
                                    "chksum": "5dbe4aca16a109a14b098655f832da8627fc2bfa90bee9834dfbc4d7535e70e2"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AADCO0961A1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006124",
                                    "cflag": "N",
                                    "chksum": "9b4c2159cc6139b50f88b4e1d95085e3d42b13f01012a3ee681e13f5bc8556e4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AADCO6054E1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1084.91,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 82.75,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 919.41,
                                          "camt": 82.75,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006586",
                                    "cflag": "N",
                                    "chksum": "c8ea02da0e82352b0d1a74a396dda56ab3c9b251275a9f7443de9ad441b69bb8"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006387",
                                    "cflag": "N",
                                    "chksum": "ebfc50f9b804203a645af997c3d29fc1fb175a9a10a80ed5016158d32cf536f7"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AADCW0890Q1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 311.52,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 23.76,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 264,
                                          "camt": 23.76,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "25-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006489",
                                    "cflag": "N",
                                    "chksum": "139b5379a481fd0bfb60419b1e7253af6e2685edb6d50bfaacd2770b12e2293d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAECC7577P1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005496",
                                    "cflag": "N",
                                    "chksum": "929f1c4d7354d5f0df17b9db75d40145101c10e05d55d9dd2fd70ea72fab3d92"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAECL9974D1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1425.75,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 108.74,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1208.27,
                                          "camt": 108.74,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005613",
                                    "cflag": "N",
                                    "chksum": "93fcbdfaa16f28a62617eb774d0fb9f6dced60378aeaa3fd3f58c045d5a13e40"
                                  },
                                  {
                                    "val": 31188,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 2378.75,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 26430.5,
                                          "camt": 2378.75,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005611",
                                    "cflag": "N",
                                    "chksum": "0db62a41fc2327614f28e62de589f6631f7816255d2a046f5ecd0ca11730eda6"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAFCE3792D1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 9999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 762.64,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8473.72,
                                          "camt": 762.64,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006122",
                                    "cflag": "N",
                                    "chksum": "880beba414077532292ba207d45d543185005880fcef18f9a670521b12d32999"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAGCF1360H1ZY"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005503",
                                    "cflag": "N",
                                    "chksum": "320b76c98b868d5f73d8be1397fea901ca46dd448f1d57e08515f5f10720e999"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAHCI9012J1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 350.75,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 26.75,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 297.25,
                                          "camt": 26.75,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006597",
                                    "cflag": "N",
                                    "chksum": "0238abb57eea8209cd4cf86e1d9a1b50f44ca5b0e2049ffbe5f5efe5db29227a"
                                  },
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 129.58,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.84,
                                          "camt": 129.58,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006623",
                                    "cflag": "N",
                                    "chksum": "145bb983e0521ea741bab9383cd41a354beb2e9b0c6dc854fc42dc8b706cde54"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAHCK4656Q1ZW"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006075",
                                    "cflag": "N",
                                    "chksum": "c71ce09bdf1413891d0121c6266c1ddd3f0c25e288947ccc69fe9d97a2847a18"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006074",
                                    "cflag": "N",
                                    "chksum": "a77d065d25a254311a86b5f0c6c1352047f98a86aea414e7687112d8f1a65ffb"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AALCG1939J1ZE"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005968",
                                    "cflag": "N",
                                    "chksum": "5935c90f75cb8ddc4b1487970d6d7288e9015a930d2c062038e1479fee06d0d7"
                                  },
                                  {
                                    "val": 31.86,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 2.43,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 27,
                                          "camt": 2.43,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005852",
                                    "cflag": "N",
                                    "chksum": "ac70a8cc399dbbe0c124ceeeb51eb9e98687a5ea0e527b73393dd7237b58d834"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAMCR0107Q1Z6"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 6028.33,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 459.79,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 5108.75,
                                          "camt": 459.79,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006220",
                                    "cflag": "N",
                                    "chksum": "8b722e60b3a858331198d62ec366fc085004684b3f0da23dc3ae4c4cf46ac9b7"
                                  },
                                  {
                                    "val": 5299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 404.16,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4490.68,
                                          "camt": 404.16,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006250",
                                    "cflag": "N",
                                    "chksum": "4f21ba63ffa1d7ebe88c2a6f0cae4f366f6b82abd11cbd44c3a22080b1b930a3"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAUFV7887J1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 39.83,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 3.04,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 33.75,
                                          "camt": 3.04,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006332",
                                    "cflag": "N",
                                    "chksum": "627215c0e6b35acabb8c9b7f115cfa4bee8d13809586afb610cad0721c711f91"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006340",
                                    "cflag": "N",
                                    "chksum": "0038062b7cb504ac3ea6140b84cff5e135b8c0017725525ac32c48f4c75c6cd0"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24AAYCA3597R1ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 71.09,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 5.42,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 60.25,
                                          "camt": 5.42,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006173",
                                    "cflag": "N",
                                    "chksum": "5dc3068aa928e39e3c2041bbd0a6880efa059516a24afa1cee1dcf0858f617b7"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24ABMCS8945C1Z2"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006385",
                                    "cflag": "N",
                                    "chksum": "d7b54d70858da143f6839599b2192543556452d1ebdd5e025f78fbffdf646d98"
                                  },
                                  {
                                    "val": 2.65,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0.2,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2.25,
                                          "camt": 0.2,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005953",
                                    "cflag": "N",
                                    "chksum": "e4c42f444c32633b90783dc98611a3cb9669e33af3be69f3119f45bdb4650a9d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24ABTFA8540K1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 129.58,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.84,
                                          "camt": 129.58,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005559",
                                    "cflag": "N",
                                    "chksum": "486742818fce9f78534ef9435784954e6892b94855109ea7f8a62d472b3338b8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24ABVFA0896L1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005785",
                                    "cflag": "N",
                                    "chksum": "d814fb42f42d09839463e31a6a04a0889939f59c1003f01fbe233ad7a9da182e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24ACTPP1171A1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 68.44,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 5.22,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 58,
                                          "camt": 5.22,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005628",
                                    "cflag": "N",
                                    "chksum": "828bf39abd4fa73b96534bd63978d2eab0c3862a580a3142367af8f64fabd937"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005647",
                                    "cflag": "N",
                                    "chksum": "c96db9b72cc4df0d75c26a4821200025ed964c66380643450ead160d20ed2b03"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "24CVPPS1545G1ZB"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 24623.06,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 20867,
                                          "camt": 0,
                                          "iamt": 3756.06
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006164",
                                    "cflag": "N",
                                    "chksum": "1b33af5d352d8be7e3c42cf8dfd352a08f40be3bf5f848776a076b6b81d0218d"
                                  },
                                  {
                                    "val": 19999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 16948.31,
                                          "camt": 0,
                                          "iamt": 3050.69
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006195",
                                    "cflag": "N",
                                    "chksum": "e46c17c74c2ff55c35fe5ef43a7aab976c2edb2cfd747aefe1df37da2b7c9b68"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAAAN4685M1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006437",
                                    "cflag": "N",
                                    "chksum": "f25a59c45b0c607b7b9887119ae3dfddb54a5ddc580962ba0c518b77449a474a"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAACP3361L1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005645",
                                    "cflag": "N",
                                    "chksum": "0f9a41dba083b1339984d92390b1acdd8968b4c50b035552cef664cd52979f0b"
                                  },
                                  {
                                    "val": 517.48,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 438.54,
                                          "camt": 0,
                                          "iamt": 78.94
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005621",
                                    "cflag": "N",
                                    "chksum": "6eb7aee60fc6e3be1c1ea67f63d156d7e0ae3ad6759753254239abe543837a97"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAACQ5175B1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 10188,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8633.9,
                                          "camt": 0,
                                          "iamt": 1554.1
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005817",
                                    "cflag": "N",
                                    "chksum": "050b5180711d28c5c8ba9b056341eaaf982ecb6cd623aed61287a6ee008b45dd"
                                  },
                                  {
                                    "val": 16.52,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 14,
                                          "camt": 0,
                                          "iamt": 2.52
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005813",
                                    "cflag": "N",
                                    "chksum": "66804d4dbf5a971437fab1f937361f8dc618ac4c358ab467bac89c25c2f036e7"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAACR2730D1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005864",
                                    "cflag": "N",
                                    "chksum": "08a227f96e326079e03985567597e72aeba91c638de36dc7fd1cbcbf9486f6de"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAACR4648C1ZJ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 38999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 33050,
                                          "camt": 0,
                                          "iamt": 5949
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006117",
                                    "cflag": "N",
                                    "chksum": "58be9f9d08f9e39dc734b1f7b84df7a33427873855b74e18e00053bd93cbe7fa"
                                  },
                                  {
                                    "val": 238.62,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 202.22,
                                          "camt": 0,
                                          "iamt": 36.4
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006116",
                                    "cflag": "N",
                                    "chksum": "b6c4c12ab56e22c97f1c01b0a3b51dc3c264c31b84536b087c8787bc9edcfca5"
                                  },
                                  {
                                    "val": 3348.25,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2837.5,
                                          "camt": 0,
                                          "iamt": 510.75
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006115",
                                    "cflag": "N",
                                    "chksum": "95e26886e0f7181f732c7b7b67f1272d23ecc4af1ddf773a229094c9d01609e8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAACT2438A1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006620",
                                    "cflag": "N",
                                    "chksum": "d6fb9bb101a6d7c09a580c2ae421bac77a79d628bea4fbeca42f336123eb5a49"
                                  },
                                  {
                                    "val": 20.65,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 17.5,
                                          "camt": 0,
                                          "iamt": 3.15
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006610",
                                    "cflag": "N",
                                    "chksum": "e081410f65e2305bda8f70989fd008e8b1c1099263db3ad0a395b7b462162bec"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAACW8991M1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 836.03,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 708.5,
                                          "camt": 0,
                                          "iamt": 127.53
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006617",
                                    "cflag": "N",
                                    "chksum": "a06907a10ca9b9e4cca78ec0ac5ce8de141fcdf79c62748a307a5b0704b1ff46"
                                  },
                                  {
                                    "val": 373.09,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 316.18,
                                          "camt": 0,
                                          "iamt": 56.91
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006615",
                                    "cflag": "N",
                                    "chksum": "708b9413b93da5108a5a1ce081ab6e72e303a02ef12f9d6b4d49145b01e3b6b1"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAACZ4318H1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 199.13,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 168.75,
                                          "camt": 0,
                                          "iamt": 30.38
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005958",
                                    "cflag": "N",
                                    "chksum": "14c30cbcd84189c5408e726635036e70c8db3f866e3c3d5d1e02fb6e9369e565"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AABCS4223P1Z3"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 4299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3643.22,
                                          "camt": 0,
                                          "iamt": 655.78
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006142",
                                    "cflag": "N",
                                    "chksum": "ad31cd8dcaf30d5d81b9f35817c09ed53e85183fa27cdd400a89c7e8e6fe97a8"
                                  },
                                  {
                                    "val": 3324.06,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2817,
                                          "camt": 0,
                                          "iamt": 507.06
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006140",
                                    "cflag": "N",
                                    "chksum": "4f342d0f0972fb3cdb86b5287e88357b1acfa12feae89ac23a10652b9445f4bd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AACCT7182P1ZL"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006015",
                                    "cflag": "N",
                                    "chksum": "d1c275495bdcf371b5a3ce7206975d1dfd63303036a38864e9b04d1884db7e1d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AACCU0535F1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 6.49,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 5.5,
                                          "camt": 0,
                                          "iamt": 0.99
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005528",
                                    "cflag": "N",
                                    "chksum": "8ab27108f6a97edf4a980ff7cf5eb2c0037306e494f5e40a8a55d402b5762f0c"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005557",
                                    "cflag": "N",
                                    "chksum": "6498dbcf821db83211e64a5af9329b2763dc2e662f26d5df066dd920a4eece5b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AACCW1760G1ZD"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 5359.5,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4541.95,
                                          "camt": 0,
                                          "iamt": 817.55
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006591",
                                    "cflag": "N",
                                    "chksum": "0ae533cff6d627e7ec97a787559ae9cd9d9696c5c5e3ee0f5f0b912406127fdc"
                                  },
                                  {
                                    "val": 2617.83,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2218.5,
                                          "camt": 0,
                                          "iamt": 399.33
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006523",
                                    "cflag": "N",
                                    "chksum": "158ae331281ed8da60bbd189b7b7977d9097d4a2a7a5a04edc085789e1789ef1"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AADCD1983D1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 3499,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2965.25,
                                          "camt": 0,
                                          "iamt": 533.75
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006629",
                                    "cflag": "N",
                                    "chksum": "447773c258e53ec5506e2971366d51251759f81bef3f51ab8be10c815fa3b990"
                                  },
                                  {
                                    "val": 1849.65,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1567.5,
                                          "camt": 0,
                                          "iamt": 282.15
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006606",
                                    "cflag": "N",
                                    "chksum": "b8910f8584f87a8b01eb8582a470a2700400b2112665f0296c87bf88742ce3a4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AADCE9006E1ZV"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2570.04,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2178,
                                          "camt": 0,
                                          "iamt": 392.04
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006041",
                                    "cflag": "N",
                                    "chksum": "22dc2cb9f840ce9f670a00f2af10c01accc851dfc805ad16f09267c898f481cc"
                                  },
                                  {
                                    "val": 2556.76,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2166.75,
                                          "camt": 0,
                                          "iamt": 390.01
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006040",
                                    "cflag": "N",
                                    "chksum": "788011eba5eaae87fed5859fa5f8af0837bdd2c57dc47659aa0b9fccc2fe11fd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AADCJ6810D1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 912.68,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 773.46,
                                          "camt": 0,
                                          "iamt": 139.22
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006030",
                                    "cflag": "N",
                                    "chksum": "32b93a53b63067d66df38198991c59f98d86318896198e8dff1ce0908b6ce471"
                                  },
                                  {
                                    "val": 900.05,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 762.75,
                                          "camt": 0,
                                          "iamt": 137.3
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-005745",
                                    "cflag": "N",
                                    "chksum": "ad44942c6ca78964ebfa417aeb1902287dda3d8c1cf78c8b0e264ecd00af2fb6"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AADCS0472N1Z2"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 470.82,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 399,
                                          "camt": 0,
                                          "iamt": 71.82
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006365",
                                    "cflag": "N",
                                    "chksum": "38a6f78c81fdabdbbac3e0cd1f3f27d7cfc6bef63b748b1f6d541f47f93eacdc"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006386",
                                    "cflag": "N",
                                    "chksum": "479c78df89fd9fa630d7e30f04882e50fb525a76c905a9cdb7ed17ab2aec55d2"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AADFI0831J1ZJ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 18.88,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 16,
                                          "camt": 0,
                                          "iamt": 2.88
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005769",
                                    "cflag": "N",
                                    "chksum": "31d6c5450280a362a12c5a0fb51c3cf0bd58b29aeea9aa87b645581dadfcfb38"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005789",
                                    "cflag": "N",
                                    "chksum": "a9ff630580b6085c1f8a03773ae8251ea73329644360797885f5a68ab3ecc755"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAECA5173F1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2207.78,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1871,
                                          "camt": 0,
                                          "iamt": 336.78
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006296",
                                    "cflag": "N",
                                    "chksum": "b77a2c72ed63682823691ab1b984681c3454d9d9e142e4b269f0cec09d3174a7"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAECF7936K1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006273",
                                    "cflag": "N",
                                    "chksum": "d8f1fb6e3293ed079606ab635d1354aabc3cd6675aa4be97c0d63bd7bbbcddac"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAECV3961E1Z9"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 27588,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 23379.66,
                                          "camt": 0,
                                          "iamt": 4208.34
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006245",
                                    "cflag": "N",
                                    "chksum": "d2623841d020fd2b0af50cdfee7556cbc79708cf00ab14d032a8c164e87d20db"
                                  },
                                  {
                                    "val": 237.77,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 201.5,
                                          "camt": 0,
                                          "iamt": 36.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006238",
                                    "cflag": "N",
                                    "chksum": "7c1b229c22d729f5e0bb73b194a0282a13be6c0a82d5748afdee654106c37d6f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAFCB5524J1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006197",
                                    "cflag": "N",
                                    "chksum": "e8341c4ffbfdf9c9c63ba7fe4025fdd93400219b80cc7948558f81cc44d18da9"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAFCI3404C1Z3"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 5573.14,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4723,
                                          "camt": 0,
                                          "iamt": 850.14
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005619",
                                    "cflag": "N",
                                    "chksum": "f7755f357bbfb72c160c2b8db57cd4d77285e4314c16d961111e142f33c9f461"
                                  },
                                  {
                                    "val": 10499,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8897.46,
                                          "camt": 0,
                                          "iamt": 1601.54
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005646",
                                    "cflag": "N",
                                    "chksum": "03815072b74f56574f1b6df00882215ccb98dfddd221447950b3a74d875066a8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAFCM8917N1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 4563.65,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3867.5,
                                          "camt": 0,
                                          "iamt": 696.15
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006319",
                                    "cflag": "N",
                                    "chksum": "a01cb86669d3a90d2747ab71b887670614a27907247ba3fa7f76c9b52d883737"
                                  },
                                  {
                                    "val": 120588,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 102193.22,
                                          "camt": 0,
                                          "iamt": 18394.78
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006335",
                                    "cflag": "N",
                                    "chksum": "062ae6d75f0964af65676f73e0329e03e4440f79748b9484f0122e5b5e6ad9bf"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAGCA3533P1ZD"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006062",
                                    "cflag": "N",
                                    "chksum": "6b043d65a6b0b558e7bb2dbb989e72cb3e3e12c6fdd6c09d6bf0f40632936ce8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAGCG7854B1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 4.72,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4,
                                          "camt": 0,
                                          "iamt": 0.72
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005806",
                                    "cflag": "N",
                                    "chksum": "5d3d6dc734c42fef5b1909df2314deed0b35c17880a1cb7006e057d552743959"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005816",
                                    "cflag": "N",
                                    "chksum": "fd6ae61351b7a1a8e6dfbe1f9d8264bdfa7fffb866dfc245a1791fb89037012e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAGCH6110D1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006298",
                                    "cflag": "N",
                                    "chksum": "dd4657c76e5523b8664d08e6c5b452132907b41199e9cc416af40f3cf1ba7704"
                                  },
                                  {
                                    "val": 5.31,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4.5,
                                          "camt": 0,
                                          "iamt": 0.81
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006294",
                                    "cflag": "N",
                                    "chksum": "00691b7556bc4c37860ce1b98a3fca0bed830b2fa18734b6922ff85b424511dc"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAGCI2319P1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 30.09,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 25.5,
                                          "camt": 0,
                                          "iamt": 4.59
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005751",
                                    "cflag": "N",
                                    "chksum": "52725b8e36cf9e61b39838930ee0df224af31a52d516e81521d2d47c564c44af"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005782",
                                    "cflag": "N",
                                    "chksum": "9f820406642b6a8314e25e33bcdc805092f12a0a1918fe8302db059b5eb9b09b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAGCT9038G1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 21.83,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 18.5,
                                          "camt": 0,
                                          "iamt": 3.33
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006316",
                                    "cflag": "N",
                                    "chksum": "0035dd5aa1ff03e53b65f479932860427b883986947b3775b2de611bf70a3a6c"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006337",
                                    "cflag": "N",
                                    "chksum": "e2b4f5a5ee3007025564adbf1e1876b45ef2d94ec15bf355b351529d6f4bb0fa"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAHCD7244B1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 305.92,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 259.25,
                                          "camt": 0,
                                          "iamt": 46.67
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "02-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005515",
                                    "cflag": "N",
                                    "chksum": "6b7d258bccb3beb59cb10e1d700cafd0a055bc2af933ceb8f4dbf7d2f1cf9284"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "02-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005524",
                                    "cflag": "N",
                                    "chksum": "9b91a4135410b653beeee5aa908f975f1fc6a85c3a42ae31026c973bf5ee8acf"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAHCK5454A1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 15912.72,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 13485.36,
                                          "camt": 0,
                                          "iamt": 2427.36
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006174",
                                    "cflag": "N",
                                    "chksum": "14c5a117a74af682b52acd74b5d6f7b2a2d6fc532223581a40cc0f91333f3a4e"
                                  },
                                  {
                                    "val": 22774,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 19300,
                                          "camt": 0,
                                          "iamt": 3474
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006172",
                                    "cflag": "N",
                                    "chksum": "31db890625bfcf3536b3b470bf7859b3a6f8f4f5928dbb2c98be89e0df271b78"
                                  },
                                  {
                                    "val": 2699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2287.29,
                                          "camt": 0,
                                          "iamt": 411.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006191",
                                    "cflag": "N",
                                    "chksum": "fa8d5f752f25394e323ff7b378eb428b1f777adec95d11256a08453a88a1c238"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAHCK6791L1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006342",
                                    "cflag": "N",
                                    "chksum": "af4d96abd4ad93e7524f17ff424e96562ee9043205df18d14565d897abe46d6d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAICT8479M1ZB"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006628",
                                    "cflag": "N",
                                    "chksum": "575d958594962aaed2383e8bc49bc3c1ee9f683847dfd636a23f6ef9c4b4e37d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAICV8898C1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 41.6,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 35.25,
                                          "camt": 0,
                                          "iamt": 6.35
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006649",
                                    "cflag": "N",
                                    "chksum": "77ee8e693127a8b10228a93b616b216d1b74a19c19cc38be88cef99ab2181277"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006678",
                                    "cflag": "N",
                                    "chksum": "0ba20ce65da243c6bc11a0e58ddb29a72de86626c1f0cde687c7e0e1f6e99c91"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAIFE0994M1ZW"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005867",
                                    "cflag": "N",
                                    "chksum": "102e918f94ba962737f44d02b3e4e62c0dbabc990aba9c57b3398ac3c9c6e757"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAJCC5974B1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006677",
                                    "cflag": "N",
                                    "chksum": "91955892422955fdfb65f52f7597a83c44e6318de344220d38917757ae2e7fda"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAJCV9169K1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006009",
                                    "cflag": "N",
                                    "chksum": "70b04a9c3795aac5be6eb113a0ed636ed7e5c0ac176f71a3969836f36a5345ea"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAKCB1180H1ZQ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005568",
                                    "cflag": "N",
                                    "chksum": "69f5fcc3c9b6a394d2114065f698c6ac92823a3c02344c4998dd7af1e40dd5db"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AALCC6994R1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 76.19,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.62,
                                          "camt": 76.19,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006252",
                                    "cflag": "N",
                                    "chksum": "eeeaeb65d73953bd2668ef3d53b357d51c8fc00d8be17aa81abaeeccfe440f64"
                                  },
                                  {
                                    "val": 31.27,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 26.5,
                                          "camt": 0,
                                          "iamt": 4.77
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006229",
                                    "cflag": "N",
                                    "chksum": "2897d257df3ac47834ab4d5de1bb7727dece885e725c99d86c7d46e69de16374"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AALCG7793G1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 19999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 16948.31,
                                          "camt": 0,
                                          "iamt": 3050.69
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006345",
                                    "cflag": "N",
                                    "chksum": "d2b87c1a6fc6896bbb6cdfa4bab6a70c81f9d71a9f2b47f8dc0eeb4e1bfde325"
                                  },
                                  {
                                    "val": 20.36,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 17.25,
                                          "camt": 0,
                                          "iamt": 3.11
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006328",
                                    "cflag": "N",
                                    "chksum": "2f51097d3600c62a4ea92896fbbc61084d817d98ecdb005d9a39fe2c432d2013"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AALCV3066H1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6185.59,
                                          "camt": 0,
                                          "iamt": 1113.41
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006706",
                                    "cflag": "N",
                                    "chksum": "7549a3e112293dea7b6ee64e87737c41279e3030c3239f0aa4b19d3ccf5971d8"
                                  },
                                  {
                                    "val": 1097.11,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 929.75,
                                          "camt": 0,
                                          "iamt": 167.36
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006688",
                                    "cflag": "N",
                                    "chksum": "22456df2565127021781efa0114cef12808277263c92f1a1a30982f8285408f3"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAOCM3533B1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005924",
                                    "cflag": "N",
                                    "chksum": "338173142480bba75859c2c3d77cff14e8de56114e0c9d74ba022c288c0a4458"
                                  },
                                  {
                                    "val": 30.68,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 26,
                                          "camt": 0,
                                          "iamt": 4.68
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005899",
                                    "cflag": "N",
                                    "chksum": "b4efda75fd05bac1e3e57571c4c282dac8a7a945e09288cd47d538d601261e29"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAPCM4088E1Z3"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005680",
                                    "cflag": "N",
                                    "chksum": "df78c861be529f37d390c63bc1f617130f5b2dfa444740933f0d68eb9f010b91"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAQCM9936N1ZC"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 18.59,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 15.75,
                                          "camt": 0,
                                          "iamt": 2.84
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006374",
                                    "cflag": "N",
                                    "chksum": "44e8f1e104dfc5627d3974001217f159c2b5f16a4854aefc57c01f0aee0f667c"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006394",
                                    "cflag": "N",
                                    "chksum": "77c5485008e94bacdd092690a8b46fb08afeead2559d4c245b2bfdad68fa64a9"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AASCA9608B1ZI"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005794",
                                    "cflag": "N",
                                    "chksum": "0d3621eeed4ab0c7ac6b3ae3f94e5eb9e78f422d35ecbc2809568f6a47994ec3"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005870",
                                    "cflag": "N",
                                    "chksum": "58f1aac127aa6c435e25965cef4555a180f71103ab43d8637ecf67796060cf31"
                                  },
                                  {
                                    "val": 55.46,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 47,
                                          "camt": 0,
                                          "iamt": 8.46
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005765",
                                    "cflag": "N",
                                    "chksum": "342ead2f99443fec3be02ef2f1560e2f93fb965c6409663244f92f7f877b52c9"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAVFK3052B1ZD"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 243.38,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 206.25,
                                          "camt": 0,
                                          "iamt": 37.13
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006547",
                                    "cflag": "N",
                                    "chksum": "62f70dd9977ec35d07af463e3a6ed7c981250f7d563ecd95ccd9d66ac08365f2"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006566",
                                    "cflag": "N",
                                    "chksum": "c7506e750dde4c130f24a0f29bcfa47846996833927b98990ad8778b7f0f9d5c"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAWFN1183H1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 565.69,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 479.4,
                                          "camt": 0,
                                          "iamt": 86.29
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "02-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005520",
                                    "cflag": "N",
                                    "chksum": "f61a746749eee19f23f7cb0ce821a5a42fcf3cbfe2f95c3617a4f531f6aa665a"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "02-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005523",
                                    "cflag": "N",
                                    "chksum": "5f193613f30a9aa8584cec119c549ced64c0bfa0c19c03e816285460560c17a4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAZCS1753L1ZI"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 19999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 16948.31,
                                          "camt": 0,
                                          "iamt": 3050.69
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005572",
                                    "cflag": "N",
                                    "chksum": "258cf8b09b97d11594eeb3b5f6d9774c2d29285835dda66a6fcbb3f41db9b3d8"
                                  },
                                  {
                                    "val": 16699.95,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 14152.5,
                                          "camt": 0,
                                          "iamt": 2547.45
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005592",
                                    "cflag": "N",
                                    "chksum": "f58f77b4fb1bdfb0f748bc2810340d766479b5d20c717ce3121736bd6db53b7b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAZCS4639P1Z3"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 14530.11,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 12313.65,
                                          "camt": 0,
                                          "iamt": 2216.46
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006334",
                                    "cflag": "N",
                                    "chksum": "70febcbf766faaa851cf269f69246f2337179cec306b72847f96d3b17fe5dda6"
                                  },
                                  {
                                    "val": 9999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8473.73,
                                          "camt": 0,
                                          "iamt": 1525.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006343",
                                    "cflag": "N",
                                    "chksum": "2849af519fb7f942cdfe188c7eed125df15d5afca2777325fa69ec44b4ac03d8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AAZCS7239P1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 51.92,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 44,
                                          "camt": 0,
                                          "iamt": 7.92
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005860",
                                    "cflag": "N",
                                    "chksum": "3cd2d8642b31cfb8e13f0a47c68ee552d9194f6c8e1ebdba60c686a1bce50b1d"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005869",
                                    "cflag": "N",
                                    "chksum": "14e290d26e987d7a9efcef946750cb386bef724ce42cb6b00a970fcde56fe954"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27ABCCA3726D2Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 15.34,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 13,
                                          "camt": 0,
                                          "iamt": 2.34
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005999",
                                    "cflag": "N",
                                    "chksum": "8d3454c168ad887c8a320bd3bbe2662aa74ba627c7cfa241c3f4405aa0de2819"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006017",
                                    "cflag": "N",
                                    "chksum": "d37621d39d968052fc4dddb3fa1d01c71eca32da2604544360002bb637579583"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27ABGCS1696E1Z4"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 645.17,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 546.75,
                                          "camt": 0,
                                          "iamt": 98.42
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005636",
                                    "cflag": "N",
                                    "chksum": "8f4943357d534023d4207c16309ee6d2c22865fe42882d5b6d68da9096aaa444"
                                  },
                                  {
                                    "val": 410.59,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 347.96,
                                          "camt": 0,
                                          "iamt": 62.63
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005635",
                                    "cflag": "N",
                                    "chksum": "971e6eff460be68c536a6379b994c746995a7e4080a794091466a00453b2a4c2"
                                  },
                                  {
                                    "val": 10788,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 9142.37,
                                          "camt": 0,
                                          "iamt": 1645.63
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005655",
                                    "cflag": "N",
                                    "chksum": "158e448394540ef30dccc7420548450a4545a8b2f3dd9fa54ef99aa96fb71960"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27ABKCS4767Q1Z9"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006249",
                                    "cflag": "N",
                                    "chksum": "5f361585d6b500e3187f716720be3ed763b39d8216903a4f652a74f959fc03b4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27ABLFM5986F1ZO"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005497",
                                    "cflag": "N",
                                    "chksum": "03f2b44b4f67655ac4b1b3012125fe3cc285f1a1948baa47efb8105ab3e88a9d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27ABTPU4833B1ZB"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 28.91,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 24.5,
                                          "camt": 0,
                                          "iamt": 4.41
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005748",
                                    "cflag": "N",
                                    "chksum": "374194c59ce4cb661bb0c40b33ff9aca5b8e1ed825f8db923c40fc4ddb6ac0c8"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005778",
                                    "cflag": "N",
                                    "chksum": "99ace7f070a363347c0ab93de4b222afc32453c9a88885b2c6b35ecbbf66458f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27AVYPK3424F1ZA"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 12.98,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 11,
                                          "camt": 0,
                                          "iamt": 1.98
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "25-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006507",
                                    "cflag": "N",
                                    "chksum": "ea5b1bdfed9a55e156554c12c37de852822e6172eab97c332359a05eb372a32b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27BABPC7283H1ZQ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2.36,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2,
                                          "camt": 0,
                                          "iamt": 0.36
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005548",
                                    "cflag": "N",
                                    "chksum": "c8fbe7448fff06eab34bf91035ef4ad70d4aeba606ab32b37d4fbf603ec55b32"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "27",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005556",
                                    "cflag": "N",
                                    "chksum": "080f007ee9730ec523e687b0d31f4a238a7bea3cb444d6ff2947ae1850ef8874"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "27GMYPK9165A1ZE"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006429",
                                    "cflag": "N",
                                    "chksum": "9f138ddc18db256202054d6e8c670611a8235a1247fb6aecd0459d73e4fb35c3"
                                  },
                                  {
                                    "val": 718.62,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 609,
                                          "camt": 0,
                                          "iamt": 109.62
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006414",
                                    "cflag": "N",
                                    "chksum": "849faf64336c52f0eed729b77c5186e296d12ab667a95faafe8ce97dfe2618a5"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAACC8524A1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 3499,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2965.25,
                                          "camt": 0,
                                          "iamt": 533.75
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005571",
                                    "cflag": "N",
                                    "chksum": "ae44343cae9b9d5a961315d96c1f6e6676a1e0604dca93523ff7eab77bfc8468"
                                  },
                                  {
                                    "val": 3067.41,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2599.5,
                                          "camt": 0,
                                          "iamt": 467.91
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005590",
                                    "cflag": "N",
                                    "chksum": "a3b8c4d449347a92bcd3fb1e91a1f39661477f8fc68f9642503d59a07c00210b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAACD5289K1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 749.89,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 635.5,
                                          "camt": 0,
                                          "iamt": 114.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005850",
                                    "cflag": "N",
                                    "chksum": "657df5019ef66f5bc3cdb107c456a27d1b1a753732a56634626c3e367c5f0a5c"
                                  },
                                  {
                                    "val": 2699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2287.29,
                                          "camt": 0,
                                          "iamt": 411.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005872",
                                    "cflag": "N",
                                    "chksum": "4f5b060a5b636c2d40c667e8f493ccfc501ee53211ba163ecbca7ff2d7105878"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AABCE2510K1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005918",
                                    "cflag": "N",
                                    "chksum": "8ba6477b570453ddb9926c01f13975c1b4be97e5492c455474359a37101dfc0e"
                                  },
                                  {
                                    "val": 1.3,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1.1,
                                          "camt": 0,
                                          "iamt": 0.2
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005889",
                                    "cflag": "N",
                                    "chksum": "3ac22e1b05794c4918fd016e60d4ef958e3b6f66d5cf6531bf9e8e299be02680"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AABCI1322B1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "15-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006087",
                                    "cflag": "N",
                                    "chksum": "53b1eb34a36082b87693db654ed23cec81f76d1d18521a1dbc0effa923bb6d53"
                                  },
                                  {
                                    "val": 245.75,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 208.26,
                                          "camt": 0,
                                          "iamt": 37.49
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006052",
                                    "cflag": "N",
                                    "chksum": "10a38d3925aeed26c767d398cb221cf465c1b4a9e53bd9c6853f8eb12507c55f"
                                  },
                                  {
                                    "val": 528.64,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 448,
                                          "camt": 0,
                                          "iamt": 80.64
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006051",
                                    "cflag": "N",
                                    "chksum": "f9899a821695c8d3339f9c4cb67acfc7aa5a8310a635afda16fc0860625c2e51"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AABCP3292M1ZX"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1438.56,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1219.12,
                                          "camt": 0,
                                          "iamt": 219.44
                                        }
                                      }
                                    ],
                                    "flag": "U",
                                    "updby": "S",
                                    "inum": "INV-005624",
                                    "cflag": "N",
                                    "inv_typ": "R",
                                    "pos": "29",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "chksum": "77667510e953ace6e95e80493956bd7e3f6f52bc7ba19a5c011a504ef8ee5d20",
                                    "remarks": "Not there in Books"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "flag": "U",
                                    "updby": "S",
                                    "inum": "INV-005643",
                                    "cflag": "N",
                                    "inv_typ": "R",
                                    "pos": "29",
                                    "idt": "05-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "chksum": "b216ffdff1617a39a07747d8d17f3f7c37c29cdfaf96872297c2a563e966cc2c",
                                    "remarks": "Not there in Books"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AABCZ2616B1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006144",
                                    "cflag": "N",
                                    "chksum": "4b4d35fb1b078a59741dafbc824f29f5f1155ca830b76778b05d13eaff4dd94f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AACCL7598P1ZD"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "06-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005677",
                                    "cflag": "N",
                                    "chksum": "5ddca5c7dbc504aa0e707564d39374b9603f67cc8b522690aa3870315d4fba7f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AACCO6618B1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 240.13,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 203.5,
                                          "camt": 0,
                                          "iamt": 36.63
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005902",
                                    "cflag": "N",
                                    "chksum": "90e10e875dbdaec195dddeaaeae0ab3c9c6935c9a0945139cdd07496cae90ecd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AACCO7411Q1ZW"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 303.85,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 257.5,
                                          "camt": 0,
                                          "iamt": 46.35
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005596",
                                    "cflag": "N",
                                    "chksum": "7ce30e5a9a0e2af9e213ffa2da8705b924d6d5019581c97ff7076e14f43d8638"
                                  },
                                  {
                                    "val": 1999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1694.07,
                                          "camt": 0,
                                          "iamt": 304.93
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005569",
                                    "cflag": "N",
                                    "chksum": "e3f019e20aad42ed6738b4fc4fd23e470bd97ecbaadc7cf32159d12020de99ba"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AACCT0456G1ZD"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 181.72,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 154,
                                          "camt": 0,
                                          "iamt": 27.72
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006234",
                                    "cflag": "N",
                                    "chksum": "a63f4251d0877b71f4560be89adac3205cf445cc4f5e5a72536b754c91c8bd16"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006382",
                                    "cflag": "N",
                                    "chksum": "433f2ebc1a2e87feb4f97cb5429855754fe0a9022079bb44e7b9c7968e06a8bd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCE2730M1ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 5.9,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 5,
                                          "camt": 0,
                                          "iamt": 0.9
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005761",
                                    "cflag": "N",
                                    "chksum": "9b13be1e790be18cd46e61b5f935669a546adc2d34034a0504a0b617a1f86b81"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005793",
                                    "cflag": "N",
                                    "chksum": "bcc5b7672c8c7d57557353a168f0f06760889c5926ba9c8139d66f830fcacd08"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCE8327N1Z2"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 11.8,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 10,
                                          "camt": 0,
                                          "iamt": 1.8
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006292",
                                    "cflag": "N",
                                    "chksum": "674205b88d5f48ecfb7e683b5920f0d8ecd1b0973b06d0318d30823f99177254"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006304",
                                    "cflag": "N",
                                    "chksum": "83569738c636d61547d99e76d3c5efa100cc4f5533ad3a124ed333068514efe0"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCF7876K1ZV"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1941.1,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1645,
                                          "camt": 0,
                                          "iamt": 296.1
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005847",
                                    "cflag": "N",
                                    "chksum": "77b7e93e7f7f9bdd8f542906fe49a26a46957af1f62d29e9966993152245dcc3"
                                  },
                                  {
                                    "val": 60000,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 50847.46,
                                          "camt": 0,
                                          "iamt": 9152.54
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005866",
                                    "cflag": "N",
                                    "chksum": "69a608aed4799c2ef4612f181bf1ca096cb74efd8ad2daeb6e2517d09b378dca"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCH3483N1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1949.07,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1651.75,
                                          "camt": 0,
                                          "iamt": 297.32
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006363",
                                    "cflag": "N",
                                    "chksum": "904aa46e2683fcf6bb4a55338401e097f8270e90ed307b3ca426cd24d3404b73"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCH8879C1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 9999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8473.73,
                                          "camt": 0,
                                          "iamt": 1525.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006670",
                                    "cflag": "N",
                                    "chksum": "7294489ec93e46168bd739c81d51cc1bcd8d52a99ae9a29c7714a7c4fd7d46ab"
                                  },
                                  {
                                    "val": 4873.99,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4130.5,
                                          "camt": 0,
                                          "iamt": 743.49
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006657",
                                    "cflag": "N",
                                    "chksum": "ebb4d9b77652e73873de0bcc59a7d520a40a510994f5f72d0000e0962d616a92"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCI4484Q1ZQ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1799.8,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1525.25,
                                          "camt": 0,
                                          "iamt": 274.55
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006310",
                                    "cflag": "N",
                                    "chksum": "a4bd955dd07f4820191395481c67230f234d0c007593e6efdd967eef24f08e44"
                                  },
                                  {
                                    "val": 2699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2287.29,
                                          "camt": 0,
                                          "iamt": 411.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006308",
                                    "cflag": "N",
                                    "chksum": "ae10c607a82844f77d89770ea6313c7c0578c89e741a75f223cc7ea4a2f660f7"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCK9059R1ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 6620.39,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 5610.5,
                                          "camt": 0,
                                          "iamt": 1009.89
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005754",
                                    "cflag": "N",
                                    "chksum": "2d9481b4d06e5f401e6d194a221202a585fec897ebd4f7af1cd533c3662d895d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCP5722A1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 0.59,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 0.5,
                                          "camt": 0,
                                          "iamt": 0.09
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006553",
                                    "cflag": "N",
                                    "chksum": "2adf6d07a8a3427231e0cc055b3dd87dac07c09c322f5129fdfb16cf14873ed4"
                                  },
                                  {
                                    "val": 10188,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8633.9,
                                          "camt": 0,
                                          "iamt": 1554.1
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006564",
                                    "cflag": "N",
                                    "chksum": "7d47e2b2dd59f5f55e394011b1eb5e41da9743cfdd93146718c6c560df6a35a3"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCT0960E1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 4.72,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4,
                                          "camt": 0,
                                          "iamt": 0.72
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006133",
                                    "cflag": "N",
                                    "chksum": "75952c9fbb6b98cdbed8d86b74d8aafbbff8ceef4a7312fbd9750e981845a9a5"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AADCW0305Q1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7451.11,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6314.5,
                                          "camt": 0,
                                          "iamt": 1136.61
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005907",
                                    "cflag": "N",
                                    "chksum": "46a668cdab005e997285f261d773f0b2c5e5f370a74ec40dde31e35f924fa3e1"
                                  },
                                  {
                                    "val": 9999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8473.73,
                                          "camt": 0,
                                          "iamt": 1525.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005921",
                                    "cflag": "N",
                                    "chksum": "8703055c79a764631f64b7ecd406ddf5fa767cbc5d851f6b1f0845566b93ce6f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAECE0186G1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005500",
                                    "cflag": "N",
                                    "chksum": "e0cc910a0fd904804d639472d270d153b6729a5511cc1bbd80ad7ccc9a449e3f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAECG6723F1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 6199,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 5253.39,
                                          "camt": 0,
                                          "iamt": 945.61
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005926",
                                    "cflag": "N",
                                    "chksum": "4f1b0b16ab99faa1430bf8f3c1c9e3e52e968b334d646fb0bfa0e1aa77de9d06"
                                  },
                                  {
                                    "val": 796.5,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 675,
                                          "camt": 0,
                                          "iamt": 121.5
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005947",
                                    "cflag": "N",
                                    "chksum": "6f12eb72b8b4c4f3af24a14da62b604fadd62295e3a0b13becafe0c509708278"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006060",
                                    "cflag": "N",
                                    "chksum": "6285f9324d2d2fd36e1448a31206a41ee64104ab0e19b4e6472a52f054ab8b9f"
                                  },
                                  {
                                    "val": 3817.89,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3235.5,
                                          "camt": 0,
                                          "iamt": 582.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "11-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005894",
                                    "cflag": "N",
                                    "chksum": "1492922853cc4f05f9ce871d3e7189c60650eb646cd22cee6289d74ed5b93091"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006201",
                                    "cflag": "N",
                                    "chksum": "fcbfd716bab0f83bb0f787ce1d607467fab814f049b4f096d30ff96c4f859e99"
                                  },
                                  {
                                    "val": 74.34,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 63,
                                          "camt": 0,
                                          "iamt": 11.34
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006056",
                                    "cflag": "N",
                                    "chksum": "6b17f5ab481268e6695ea402fbf15529b88d3c59403470721f0c9b665c741aaf"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "15-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006099",
                                    "cflag": "N",
                                    "chksum": "25613ac287aaa7f7adc2a922e36f347988c3485dc1a2900335f2ffee80ce28e5"
                                  },
                                  {
                                    "val": 262.55,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 222.5,
                                          "camt": 0,
                                          "iamt": 40.05
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006451",
                                    "cflag": "N",
                                    "chksum": "49b6191f525a3f33f109cd0f0dbd322e3641df037b27abb2fc4364ea4edadc45"
                                  },
                                  {
                                    "val": 96.76,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 82,
                                          "camt": 0,
                                          "iamt": 14.76
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006175",
                                    "cflag": "N",
                                    "chksum": "e4c5dedb52352dabce3300bc340852af091dfe37d62e82c4b72b10d15bee5f67"
                                  },
                                  {
                                    "val": 8.85,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 7.5,
                                          "camt": 0,
                                          "iamt": 1.35
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006285",
                                    "cflag": "N",
                                    "chksum": "b04acc4b096c133a0c8a83b2dd654bbbaebdd0d79f851af6bd788ef0c28ea5aa"
                                  },
                                  {
                                    "val": 1999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1694.07,
                                          "camt": 0,
                                          "iamt": 304.93
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005965",
                                    "cflag": "N",
                                    "chksum": "50be7eb53ba59e5e3f3b5366c6dcb0d4f3c347639ffc1ce090b73858df852ffe"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006458",
                                    "cflag": "N",
                                    "chksum": "9e13dbe8d04fa83a2b83f9f1ffee138ad27564b97d02a8f4a542546619b2cce2"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006303",
                                    "cflag": "N",
                                    "chksum": "927c5faf805aebf1591b348515a309c591b57b2d7a09ea2b4b1b27b4562e833f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAECL4375N1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 13642.45,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 11561.4,
                                          "camt": 0,
                                          "iamt": 2081.05
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005702",
                                    "cflag": "N",
                                    "chksum": "dc1710885e2451982ea79367ee00421dd5e4cd4572a4d77d4b26ce8b3c796e2f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAEFE1763C2ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 663827.88,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 562566,
                                          "camt": 0,
                                          "iamt": 101261.88
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006551",
                                    "cflag": "N",
                                    "chksum": "e1cca4700a7284ce158c4ed389b98d05fda9499f55a9754b4ece5ea641fe76aa"
                                  },
                                  {
                                    "val": 157190.73,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 133212.48,
                                          "camt": 0,
                                          "iamt": 23978.25
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006593",
                                    "cflag": "N",
                                    "chksum": "8ce3434ba2b2da9ee1a1c3d2eaa907c776cc1724f65d68fd127325fe9b4f03f3"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAFCD6658R1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1.77,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1.5,
                                          "camt": 0,
                                          "iamt": 0.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005581",
                                    "cflag": "N",
                                    "chksum": "efe11e7abc8582c98fb75675dc8d87743b024c33de2a438e412133a4db764e71"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005579",
                                    "cflag": "N",
                                    "chksum": "adaca4d2bfba915c2952e378a9537e3fc9b8ca69f32022a49d86f0ee0a478ef8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAFCF7183H1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 3999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3388.98,
                                          "camt": 0,
                                          "iamt": 610.02
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006672",
                                    "cflag": "N",
                                    "chksum": "339fa7e9d55151e6cc0d7fd2c647753d581d333187b89670b9e0af70e5c13149"
                                  },
                                  {
                                    "val": 2.36,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2,
                                          "camt": 0,
                                          "iamt": 0.36
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "29-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006659",
                                    "cflag": "N",
                                    "chksum": "3866f4395da1f551ed8b51301911da76eefd6711957622c8d966105d0dd55d37"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAFCT2273G1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7769.42,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6584.25,
                                          "camt": 0,
                                          "iamt": 1185.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005773",
                                    "cflag": "N",
                                    "chksum": "d1656d6968cc5260ac4890ab4ea017334e771796b412ff07183f6d17e35bb6d9"
                                  },
                                  {
                                    "val": 5299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4490.68,
                                          "camt": 0,
                                          "iamt": 808.32
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005783",
                                    "cflag": "N",
                                    "chksum": "afa889c3cabe1374e5159ff9957ab22ec89752c88b1676e16a92071c62d50222"
                                  },
                                  {
                                    "val": 1144.8,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 970.17,
                                          "camt": 0,
                                          "iamt": 174.63
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005774",
                                    "cflag": "N",
                                    "chksum": "54a34913a255eae3e1b1389eebc0eee341093beb2c5f1351adaf4e2246192f2e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAGCP7465F1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6524.58,
                                          "camt": 0,
                                          "iamt": 1174.42
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005573",
                                    "cflag": "N",
                                    "chksum": "97412789210d81b920271011a096a8ce6d5ef3471e79f298b2966c578d8d38ab"
                                  },
                                  {
                                    "val": 249257.88,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3966,
                                          "camt": 0,
                                          "iamt": 713.88
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005594",
                                    "cflag": "N",
                                    "chksum": "ef91f0e8d8fabb23e83af7f5478a9a8d8a882b9d7994adb16ee483f02715b8d0"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAGCR4375J1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006530",
                                    "cflag": "N",
                                    "chksum": "918199b09dbb8fdd8653134c855e3ddce43d3ae03035d07ed653574e0ebb4220"
                                  },
                                  {
                                    "val": 8.85,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 7.5,
                                          "camt": 0,
                                          "iamt": 1.35
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006518",
                                    "cflag": "N",
                                    "chksum": "24507ce60fd1c5810ae0d0bd75250c6775824be6bfafab81683179f681bcf045"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAGCV4950P1ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6185.59,
                                          "camt": 0,
                                          "iamt": 1113.41
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "08-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005784",
                                    "cflag": "N",
                                    "chksum": "7cd9a692411d0cc42b840740a606fa4d95f6ac07ba4f6f7334e5e3d3a6dc4c3f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAHCG3435D1ZQ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 30232.97,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 25621.16,
                                          "camt": 0,
                                          "iamt": 4611.81
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006031",
                                    "cflag": "N",
                                    "chksum": "67ada37e2d10ca4981ac2e82779e18c4861c1c2daace936cd6c18d3990007ada"
                                  },
                                  {
                                    "val": 16999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 14405.93,
                                          "camt": 0,
                                          "iamt": 2593.07
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005712",
                                    "cflag": "N",
                                    "chksum": "3a226ef8422fe822bacc12b57b7b187310d1c76b767e8a51754d0eb83f9b4ddb"
                                  },
                                  {
                                    "val": 48499,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 41100.85,
                                          "camt": 0,
                                          "iamt": 7398.15
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005887",
                                    "cflag": "N",
                                    "chksum": "1fe3b3bd2503e618565f665222da63af1d138e7f0ead1670ab1c876ac708a3b8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAHCN8165F1Z2"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 5299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4490.68,
                                          "camt": 0,
                                          "iamt": 808.32
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006639",
                                    "cflag": "N",
                                    "chksum": "4d3c36147faad085b9e3a6fc9a4d5ae59b8fdd9942fe23c6d0dd23c1b37763bb"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAHCT8162G1ZX"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005966",
                                    "cflag": "N",
                                    "chksum": "a2296fb8de344315fb27cb05f43c5280ccc2a3bf4407d446aa0296a137f4b78a"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAICR6817M1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006459",
                                    "cflag": "N",
                                    "chksum": "619da74eac44e441f51019b60af80127f76de52b2a995e2d269b70cb2b7a8306"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAICT1443M1ZX"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006274",
                                    "cflag": "N",
                                    "chksum": "81915294f6509536176d6e6cdb9e883fac7cf555c874c8ff433e99e6add0bbf9"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006217",
                                    "cflag": "N",
                                    "chksum": "71ead4f99a9fd328d0714e57d26282704c0f871e6cb7c16f832af161ea90b105"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAJCC0788K1Z3"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006430",
                                    "cflag": "N",
                                    "chksum": "211ff2d0cc77b3c2f9d06728a546ad5a415258335b459b74536b467d992ae098"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAJCK9087D1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "20-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006297",
                                    "cflag": "N",
                                    "chksum": "d27886603382f27d128d26e292f24257aee33a0e46490c3247e3b2bba17fe1bf"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAJCR7683J1ZI"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 13.57,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 11.5,
                                          "camt": 0,
                                          "iamt": 2.07
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005483",
                                    "cflag": "N",
                                    "chksum": "3f33611e54b95e311cc585e46bd67c5a69f0318765891a769ab9c51cdfa6d404"
                                  },
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005505",
                                    "cflag": "N",
                                    "chksum": "442e9a2edf578850a8abd1fda88d60e88fff504e697dd7d71fcf8d180a614263"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAJCT4525H1Z2"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 29.5,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 25,
                                          "camt": 0,
                                          "iamt": 4.5
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006000",
                                    "cflag": "N",
                                    "chksum": "eb8fed35473b17a83cc3826e585f5b1d086871fc5d4f27222dd23d4f996c837a"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006018",
                                    "cflag": "N",
                                    "chksum": "596ced2c4481b09733a464632a2720ca75efe708321961e38dc8cc6f5dd4da18"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAJCV2532Q1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006033",
                                    "cflag": "N",
                                    "chksum": "b959c2163aa21e2987a773d08d787716108cf2a38597a361e06869d262eb81ac"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAKCD1278Q1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006709",
                                    "cflag": "N",
                                    "chksum": "f0e8d742cc467ecc30753057b8b036277dcbdac6c20e198e75f1913ce0fd3bb8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAKCT9504D1Z4"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005498",
                                    "cflag": "N",
                                    "chksum": "74f55b97700930891552e9fa1bfdf78d386ad5fa93e7917acd3681f50cf01fbf"
                                  },
                                  {
                                    "val": 122.72,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 104,
                                          "camt": 0,
                                          "iamt": 18.72
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005479",
                                    "cflag": "N",
                                    "chksum": "57c78384c0b8159aa554e813e86da39689a99450349497a0e9933f519420ac03"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AALCC6240L1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 6299.25,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 5338.35,
                                          "camt": 0,
                                          "iamt": 960.9
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006338",
                                    "cflag": "N",
                                    "chksum": "e9aaf1a361680604552a671fa05216650bd09c3b04e34dca41831edb9bffc279"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AALCP9647E1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 16.52,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 14,
                                          "camt": 0,
                                          "iamt": 2.52
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006442",
                                    "cflag": "N",
                                    "chksum": "00d2275f3d57ace18185da9052d7773bc13571a365084fc03d45e8d798560429"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "P",
                                    "inum": "INV-006461",
                                    "cflag": "N",
                                    "chksum": "f71dc5b2f375dbbbf0b7237ae6c8a833cd879381b8dc4688e2ec71d7cdfdb43b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAMCB5902F1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 24.19,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 20.5,
                                          "camt": 0,
                                          "iamt": 3.69
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005550",
                                    "cflag": "N",
                                    "chksum": "c4b968d6be682eab9bd19c92aff316b338fb5a8d1714de8ccef48c1e59761bce"
                                  },
                                  {
                                    "val": 12499,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 10592.37,
                                          "camt": 0,
                                          "iamt": 1906.63
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005565",
                                    "cflag": "N",
                                    "chksum": "6342b6d9e6d2f38a9b9f8033ca498eec07c0c747acd730edf58e8b063da4f740"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AANCM6095M1ZH"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 971.14,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 823,
                                          "camt": 0,
                                          "iamt": 148.14
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006323",
                                    "cflag": "N",
                                    "chksum": "2b00c9c50887a9c92d2bc2365f7f0da2d1eb9c2dcefef98f08f5cf0bbb5b9b8c"
                                  },
                                  {
                                    "val": 2699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2287.29,
                                          "camt": 0,
                                          "iamt": 411.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006339",
                                    "cflag": "N",
                                    "chksum": "da10411c251afff73b26d29e5a187b91c2bc03572f6cb2286b4506dcaf62d26b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAQCS9916C1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006533",
                                    "cflag": "N",
                                    "chksum": "0c5a15ca0617be2dcae36fced23c352fac673c1f682a5c10e45e4a95d5ee8e5f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AARCM0248C1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 51.84,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 43.93,
                                          "camt": 0,
                                          "iamt": 7.91
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006078",
                                    "cflag": "N",
                                    "chksum": "32f1f0af8414eef9fb094e0e42c33dfbe99f4f646f02894d228168f57ca0ae67"
                                  },
                                  {
                                    "val": 3499,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2965.25,
                                          "camt": 0,
                                          "iamt": 533.75
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006076",
                                    "cflag": "N",
                                    "chksum": "8ff5f9a16fb5ca879069442031a9f605a3ee537f0536edfa4576c3b79f3f7790"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AARFJ6478Q1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 23.31,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 19.75,
                                          "camt": 0,
                                          "iamt": 3.56
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "02-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005517",
                                    "cflag": "N",
                                    "chksum": "16a23d44634ebcb1a868981523919d3bf95869560a0ee1691af7e275e930625c"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "02-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005525",
                                    "cflag": "N",
                                    "chksum": "bbe6c8b624dae99f94c851112c27d306c970540937035b601346796026e8a3ec"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AASCM3742N1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 271.73,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 230.28,
                                          "camt": 0,
                                          "iamt": 41.45
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006584",
                                    "cflag": "N",
                                    "chksum": "2455fe773f842c2105d0f13be744185671ddb1ae690a261276acaf8f123eab9d"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006341",
                                    "cflag": "N",
                                    "chksum": "8d1ee1590078fc465243d450f266dc47513c8373e67c0274538092e09bd5afec"
                                  },
                                  {
                                    "val": 583.51,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 494.5,
                                          "camt": 0,
                                          "iamt": 89.01
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006326",
                                    "cflag": "N",
                                    "chksum": "45782b3d1b5d3328c66fc05e7ed1718dd1af90d804e8c522a49b81b982232d4c"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AATCA4094Q1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7649.34,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6482.49,
                                          "camt": 0,
                                          "iamt": 1166.85
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006163",
                                    "cflag": "N",
                                    "chksum": "4e8c6a0c49622f4d089d00339aad151d2a5fef95510dcf7b81e4c107ead34852"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006196",
                                    "cflag": "N",
                                    "chksum": "df551ee82fded70838c6e13a6e51e277d72c70c41c9e1e2ca38302f142560154"
                                  },
                                  {
                                    "val": 30239.79,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 24932.87,
                                          "camt": 0,
                                          "iamt": 4487.92
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006162",
                                    "cflag": "N",
                                    "chksum": "9ef50f9224d98438f35c6909528feba5fe810370e4b34fb5df84cd4ad5c90171"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AATFB1517A1ZO"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006202",
                                    "cflag": "N",
                                    "chksum": "7c72905cf9746c028702ce8cfba5efc510d0f7dd49090c12eecf28f1e9907d32"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAUFD0179P1ZI"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2287.29,
                                          "camt": 0,
                                          "iamt": 411.71
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006008",
                                    "cflag": "N",
                                    "chksum": "f3978f961495c36bb181ae5e74e138a7b3c683ffdf2a7d1f34a1e14f7cad0c85"
                                  },
                                  {
                                    "val": 0.71,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 0.6,
                                          "camt": 0,
                                          "iamt": 0.11
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005994",
                                    "cflag": "N",
                                    "chksum": "3a3bba0aa79c2511da994ac06d38885b772ccea7532be977b7769a55afaf17c6"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAUFN1717D1Z3"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 6185.59,
                                          "camt": 0,
                                          "iamt": 1113.41
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "15-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006090",
                                    "cflag": "N",
                                    "chksum": "ff0c41cbb0fe6831865fddfa4079160512b0a0d9c7bc124a4ba59d40f5ee560a"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAWCS1488D1ZQ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006123",
                                    "cflag": "N",
                                    "chksum": "d082cf6e04cbf476743ca223298641d0f626434574a4186973cb223805d6625e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAXCS0092C1Z1"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 467.28,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 396,
                                          "camt": 0,
                                          "iamt": 71.28
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006686",
                                    "cflag": "N",
                                    "chksum": "6fb80bf1e4edf5d6f5afaf4f94f07c6ef6a6dea25e47185dfe13dd4287fb8b6c"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006704",
                                    "cflag": "N",
                                    "chksum": "7e4bb432ebd998436c36ad8ad43fd2d2bcc76bf91c87453cbcb3cab811f5b564"
                                  },
                                  {
                                    "val": 167.83,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 142.23,
                                          "camt": 0,
                                          "iamt": 25.6
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006687",
                                    "cflag": "N",
                                    "chksum": "dacfb2aaa89c76f09ed95b49c445ee1984cd63f97831f222c93a3459d22e536e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAXCS9197C1ZD"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006125",
                                    "cflag": "N",
                                    "chksum": "e39ce142c88e10db30d9c791299b19226e9fcf2381fe01215883ed30c2d1c426"
                                  },
                                  {
                                    "val": 18.88,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 16,
                                          "camt": 0,
                                          "iamt": 2.88
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006109",
                                    "cflag": "N",
                                    "chksum": "def1f97128990010ad4bcea7be3b94b43141e2f85268f1ea64637f3de6d53523"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29AAZCS7003H1ZS"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 10788,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 9142.37,
                                          "camt": 0,
                                          "iamt": 1645.63
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "29",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005729",
                                    "cflag": "N",
                                    "chksum": "d35e78b2e28fb749ba2f0a83afd454e01bfbcca32ed60902d26b2a0a05b4270b"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "29ABYFM7655C1ZJ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 2199,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1863.56,
                                          "camt": 0,
                                          "iamt": 335.44
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006211",
                                    "cflag": "N",
                                    "chksum": "5692bbe81efaa971709fbdd86385ee8d2d0bbbd2e09a21589605c21fab8042b3"
                                  },
                                  {
                                    "val": 5.1,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4.32,
                                          "camt": 0,
                                          "iamt": 0.78
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006215",
                                    "cflag": "N",
                                    "chksum": "c1b24c303c0bb09989e07852dcc4d622bbfc5112b48d15172d8395137358674d"
                                  },
                                  {
                                    "val": 582.92,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 494,
                                          "camt": 0,
                                          "iamt": 88.92
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006214",
                                    "cflag": "N",
                                    "chksum": "1270c00d23235b42f4ed659edf7e55dedd15844c522e8b0be66a3a0da3215f28"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "32AAFCG4574M1ZC"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 398.25,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 337.5,
                                          "camt": 0,
                                          "iamt": 60.75
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005964",
                                    "cflag": "N",
                                    "chksum": "01b5ba0563e06e9763b3ae3edd1434c69ddee9e24611b0d53d1000c0374e5437"
                                  },
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005972",
                                    "cflag": "N",
                                    "chksum": "f3080b822216ebafb34dcb36c80b7f4f6983755245f52ca6218f1a116c4ef56d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "32AAGCJ2885B1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 20.65,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 17.5,
                                          "camt": 0,
                                          "iamt": 3.15
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006048",
                                    "cflag": "N",
                                    "chksum": "4fd7b0596ef39941ddedae49db80d6804902367152fa5e07a55679666fe53123"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006065",
                                    "cflag": "N",
                                    "chksum": "a683a0ffa96d9db508d83c42c9198cf145d9d7d4bdb74e6707811aefefc5e8c8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "32AAGFI8361N1Z0"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 4.13,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3.5,
                                          "camt": 0,
                                          "iamt": 0.63
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "15-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006084",
                                    "cflag": "N",
                                    "chksum": "63fdfc07bf66cf3db976b26c00c09181962b59d3df37b6da7899a3b0f22bb46f"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "32",
                                    "idt": "15-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006091",
                                    "cflag": "N",
                                    "chksum": "4a54fd1f4bff18353b81776550dc8214b745504f4299d397d6a4c5d236f26cf8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "32AAKFI5418G1ZJ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 15657.88,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 13269.39,
                                          "camt": 0,
                                          "iamt": 2388.49
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006585",
                                    "cflag": "N",
                                    "chksum": "4155977ddd6c5e8bd52583abb0bb1679b2ccb1271586b662ca662df28ca380e7"
                                  },
                                  {
                                    "val": 2883.92,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2444,
                                          "camt": 0,
                                          "iamt": 439.92
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "21-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006315",
                                    "cflag": "N",
                                    "chksum": "c2d8296b91180ff202fe7ef75666a671a2254c89c3b758ef6ff036edd7b0e6e9"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAACT2935J1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 11648.37,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 9871.5,
                                          "camt": 0,
                                          "iamt": 1776.87
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006521",
                                    "cflag": "N",
                                    "chksum": "a4d65961f0cc12e97e5a35b3ee716d67021e59bc2c3c522a3686031b49a8ccd1"
                                  },
                                  {
                                    "val": 841.96,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 713.53,
                                          "camt": 0,
                                          "iamt": 128.43
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006590",
                                    "cflag": "N",
                                    "chksum": "2ece04ae7491428df6b9bc0f50e01d4ce285023a6ba72493d7803ed8986df771"
                                  },
                                  {
                                    "val": 3099,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2626.27,
                                          "camt": 0,
                                          "iamt": 472.73
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006528",
                                    "cflag": "N",
                                    "chksum": "072e5fd68475789bb7c38b67dbd2374f5ad9c3a03482417799cab8e42c4f59dd"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAACU6845J1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 3545.02,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 3004.25,
                                          "camt": 0,
                                          "iamt": 540.77
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006367",
                                    "cflag": "N",
                                    "chksum": "98a6b93dbf2b466d8eb970e1e43a2130c7ff600aaf02219f4ba9c27dac125316"
                                  },
                                  {
                                    "val": 5799,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4914.41,
                                          "camt": 0,
                                          "iamt": 884.59
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006383",
                                    "cflag": "N",
                                    "chksum": "57885b6a3cf1c71007c7f36ffac63658790f47b3501f7c604bfce9261fc964cf"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AABCG0949C2Z3"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 16999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 14405.93,
                                          "camt": 0,
                                          "iamt": 2593.07
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006013",
                                    "cflag": "N",
                                    "chksum": "9916729ea5bb93134b04d25eaf24fd3730f394fe2f460dbd151867d334f0590e"
                                  },
                                  {
                                    "val": 10.2,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8.64,
                                          "camt": 0,
                                          "iamt": 1.56
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "13-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006032",
                                    "cflag": "N",
                                    "chksum": "1d5ac69f8212019441eb1606442f359f574024362d039aca89fdd715c7d45bd0"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AABCU7650C1ZM"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 9.44,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8,
                                          "camt": 0,
                                          "iamt": 1.44
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006035",
                                    "cflag": "N",
                                    "chksum": "c2bf1e4d99160eacf21dcc4807749b79ab7d1f27b385d3d088b5ac612ff189db"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006063",
                                    "cflag": "N",
                                    "chksum": "7425ac41c301896698c22f637173d5359278b642b2af979de7186435094cb891"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AACCZ5021B1ZX"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "25-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006490",
                                    "cflag": "N",
                                    "chksum": "7c8f11adc04475012c8a072aaf7b54c324fae2a8bd6d3b8c136de760dace0fad"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAECC5522A1ZE"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 4.72,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4,
                                          "camt": 0,
                                          "iamt": 0.72
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005541",
                                    "cflag": "N",
                                    "chksum": "2ca9917e487c549e70d6f98f0b65e5b13fbedda2c3f1f1c5cf70b519346f199e"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005552",
                                    "cflag": "N",
                                    "chksum": "b3f096026162b5e74d2a437a0b715ef5c1a4441a772f22207c0897f508a3db05"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAECN8346B1ZP"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 280.55,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 237.75,
                                          "camt": 0,
                                          "iamt": 42.8
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006224",
                                    "cflag": "N",
                                    "chksum": "d2aacfeea7f345327f9d9f0ad9552d0883cfc2fe4eb895af4f61ba1d6e825114"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "19-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006251",
                                    "cflag": "N",
                                    "chksum": "dff0fe5b6e45717be67ec1b245753f0b8643c027e8194f8c4920f5aa9ec67fdf"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAFCG7241R1Z6"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005823",
                                    "cflag": "N",
                                    "chksum": "d9c26d68b3a4dd0aff1d2c026b06b5f2afaef8e4228d0ec8e035075a90ed774b"
                                  },
                                  {
                                    "val": 214.76,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 182,
                                          "camt": 0,
                                          "iamt": 32.76
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005811",
                                    "cflag": "N",
                                    "chksum": "3b7409deeee8e232cf9bb31a8565d8eb7c87dc28a071cf897cbe9a822293c204"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAFCL2633J1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 3099,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2626.27,
                                          "camt": 0,
                                          "iamt": 472.73
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005499",
                                    "cflag": "N",
                                    "chksum": "582e1ce10ee9f217424d44c2851f22486e29232491ac1a1ed0059cd1060ab4de"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAGCF2300K1Z2"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 100.3,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 85,
                                          "camt": 0,
                                          "iamt": 15.3
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005955",
                                    "cflag": "N",
                                    "chksum": "f4d60f0939dad32ec69e535e40f569af8df640051d0a8dbb1e5a7e00588a4770"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005975",
                                    "cflag": "N",
                                    "chksum": "0bda4789cea32e0951e805993b617624b428d921478d4655c009ea463e0d7472"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAGCJ9712K1ZC"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 5396.14,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4573,
                                          "camt": 0,
                                          "iamt": 823.14
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006694",
                                    "cflag": "N",
                                    "chksum": "ea438b9a987fb40e3a2c4efb640c6f8bdb7b84e09f658b97a445b9265f865eb7"
                                  },
                                  {
                                    "val": 12813.17,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 10858.62,
                                          "camt": 0,
                                          "iamt": 1954.55
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006692",
                                    "cflag": "N",
                                    "chksum": "0cac5c848f65b8e00f561225e8df15a8dad7973ea4d5018c4282f4befbaf7442"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006705",
                                    "cflag": "N",
                                    "chksum": "489a265a2225be805659325853e1433e0770051c0d10ea772b779b04080c6672"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAGCT9448L1ZR"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1.77,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1.5,
                                          "camt": 0,
                                          "iamt": 0.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "01-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005492",
                                    "cflag": "N",
                                    "chksum": "adbc5e0240f09d3fdee27ddbd1111304c6fd38515cde27a387ea3a256026a4fe"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAHCA8984B1ZN"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1889.48,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1601.25,
                                          "camt": 0,
                                          "iamt": 288.23
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006555",
                                    "cflag": "N",
                                    "chksum": "25b743d5c9039f5dba71a4cac1faa3c4224bd1b9bb5d5c470b48023d6e7cab5a"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAHCG0737A1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 16.82,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 14.25,
                                          "camt": 0,
                                          "iamt": 2.57
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006603",
                                    "cflag": "N",
                                    "chksum": "43ee6ce3795adcb03cbf9224326f2e94ae4d2dc55d52d3dc12156affd616c788"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006621",
                                    "cflag": "N",
                                    "chksum": "5d02e31c9465f8799c96dce6c89a3c9801fb7be85435ab017a3a0beb914e0e17"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAICA9829J1ZB"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006624",
                                    "cflag": "N",
                                    "chksum": "223c0e91c11acbcc2fa58dd044077b06f96bac7643cbb507d26a3c728ee64149"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAKCP6955E1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 9999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8473.73,
                                          "camt": 0,
                                          "iamt": 1525.27
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006631",
                                    "cflag": "N",
                                    "chksum": "a240a92d403f319c5478cdb01338f8b201cea3755b930daed943ebb5579c4805"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AASFG2458A1ZL"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006454",
                                    "cflag": "N",
                                    "chksum": "3a06e0e8f68d4c4eac403a3237e0050b6f0a5ae552d443ca67e1bd9010b17e66"
                                  },
                                  {
                                    "val": 10.03,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 8.5,
                                          "camt": 0,
                                          "iamt": 1.53
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006439",
                                    "cflag": "N",
                                    "chksum": "5b7a5100fbd5caee7648b63ff8c5232a07fa77cd4a8daaf0dbe2c99d5fa50dfb"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAWCA0817C1ZY"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 75.82,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 64.25,
                                          "camt": 0,
                                          "iamt": 11.57
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005685",
                                    "cflag": "N",
                                    "chksum": "16407c28e7dab15243d09c67d2dc2eea410bfc8d66e6a597dc33ab4d02e3eae2"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "07-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005707",
                                    "cflag": "N",
                                    "chksum": "bdc1bcb4ca297194c5a855b4256c16624113d969e4acd4b74c767ea26a3db2e5"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33AAYCA5592J1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 180.54,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 153,
                                          "camt": 0,
                                          "iamt": 27.54
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006561",
                                    "cflag": "N",
                                    "chksum": "f371a48e9fcde1d7be9b9f7d4c0e0b610f45b28e344c20a385289301507648f1"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33ADPPN1891C1ZJ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "12-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005969",
                                    "cflag": "N",
                                    "chksum": "e7f475129f871246f91c6f2407ce169b56e7d8d6dd373e0923050390aec99c76"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33ALAPR8909C1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1217.76,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1032,
                                          "camt": 0,
                                          "iamt": 185.76
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "33",
                                    "idt": "14-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006046",
                                    "cflag": "N",
                                    "chksum": "3b47d43d4858d61f82fa039aae261ce7bf78ab3c032ea7b2f27941b33ce9c97e"
                                  },
                                  {
                                    "val": 5299,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 404.16,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 4490.68,
                                          "camt": 404.16,
                                          "iamt": 0
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "24",
                                    "idt": "16-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006120",
                                    "cflag": "N",
                                    "chksum": "e1194ff2a1a834c188b56b9fad31d7f1b91dff9d103177e2ebe6ac60087fbb9f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "33EJEPA0993R1ZU"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "26-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-006532",
                                    "cflag": "N",
                                    "chksum": "7aadc7fa15e334b89a06601f249d2834746793b3119357676a6d892cd9359d68"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AABCZ8359H1ZT"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 123.61,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 104.75,
                                          "camt": 0,
                                          "iamt": 18.86
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005803",
                                    "cflag": "N",
                                    "chksum": "3d0923edee110c88b529ef49611514f8fd45af1a96cbe3ad3859b3bf50ea8cbd"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005820",
                                    "cflag": "N",
                                    "chksum": "5731ab3c6bad715087c391e849601896fb368be5c9a35cca8400705b82d51e3e"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AABFQ1930C1ZR"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 17.7,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 15,
                                          "camt": 0,
                                          "iamt": 2.7
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "04-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005606",
                                    "cflag": "N",
                                    "chksum": "44859ec3372b5b7f9f2708beaa5465151e827ed6086a69d1bd114f4f39f67762"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AADCA7212Q1ZF"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "10-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005879",
                                    "cflag": "N",
                                    "chksum": "0b8622b23fde9fcecddef0027f0628833b9059d8287bf69744a2c2cdf4a21f62"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AADCU6867F1ZZ"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006708",
                                    "cflag": "N",
                                    "chksum": "c92de2cdf1fa5f848280029b0bd312b9a773540067173907cb1b850d13c72738"
                                  },
                                  {
                                    "val": 1540.67,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1305.65,
                                          "camt": 0,
                                          "iamt": 235.02
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "30-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006698",
                                    "cflag": "N",
                                    "chksum": "8a4c59dad8b8c8327ced05ca3740627761643e765657f86b9db8dd30b8e1b62d"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AAFCK5835K1Z6"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006388",
                                    "cflag": "N",
                                    "chksum": "6dfd64d83f84b54949ccd62e862bef136af1a8cd547a56394f2af5e57f4ef795"
                                  },
                                  {
                                    "val": 2.95,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 2.5,
                                          "camt": 0,
                                          "iamt": 0.45
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006360",
                                    "cflag": "N",
                                    "chksum": "41b6b04916ff059bc7c55d9fc2ec798af4fb81417f6030766543230817cbe247"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AAICE9175H1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "09-11-2025",
                                    "rchrg": "N",
                                    "imsactn": "A",
                                    "inum": "INV-005833",
                                    "cflag": "N",
                                    "chksum": "d2a7a914252bb895d310fb5aa82a50df81cba9ac9af99bb8e5efc733b3f93fa3"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AAMCC7125M1Z8"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "28-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006626",
                                    "cflag": "N",
                                    "chksum": "62dadd4bfa07c3fb779246e5925c2518acb19b75f1cb7ad0aebeb8e48ca356b4"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AAOCP7271P1ZG"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 63.72,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 54,
                                          "camt": 0,
                                          "iamt": 9.72
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006178",
                                    "cflag": "N",
                                    "chksum": "e3d3b4f11d83036ca4af1cd0b1f3731b618943866ec58754be748a1395d149af"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "18-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006199",
                                    "cflag": "N",
                                    "chksum": "11c9608e4a186dd8f66584ddb896c3f7b0b594e733e3a08a72a2bb698f11056f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AAWCA6575D1Z7"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006569",
                                    "cflag": "N",
                                    "chksum": "0654ae59c135774c025003cfe970a9a693140ee17a0e689a0375368cbf3f135f"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36AAXFN3485F1ZO"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 166.38,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 141,
                                          "camt": 0,
                                          "iamt": 25.38
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006408",
                                    "cflag": "N",
                                    "chksum": "d05409cb397d319109c19e795d8f1806805071e9b9c238d780b5f91bb174fd19"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "36",
                                    "idt": "23-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006424",
                                    "cflag": "N",
                                    "chksum": "56c938b62608859bd51beb384bf3613150123c287f281cfb3db020659fa8fed8"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "36ABECS2224G1ZL"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1699,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1439.83,
                                          "camt": 0,
                                          "iamt": 259.17
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006400",
                                    "cflag": "N",
                                    "chksum": "89cb13434e1d19dd237c0ef4ed2962807701364d90da1f270913716fa5b16e7e"
                                  },
                                  {
                                    "val": 23.98,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 20.32,
                                          "camt": 0,
                                          "iamt": 3.66
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "27-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006587",
                                    "cflag": "N",
                                    "chksum": "39868e49a7dd0064fb81a2744b25cc634d1ba85eb13938d7db53184c3686497f"
                                  },
                                  {
                                    "val": 15.34,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 13,
                                          "camt": 0,
                                          "iamt": 2.34
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "15-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006101",
                                    "cflag": "N",
                                    "chksum": "a4e658799c2610f906b3a539a08de96d8bf1a10dfc56c852e947d81a782c38d3"
                                  },
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "15-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006100",
                                    "cflag": "N",
                                    "chksum": "81bf5f4d2506281dccbd41649f241e7ad354db960ee2f85e59baa33a947e4165"
                                  },
                                  {
                                    "val": 53.95,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 45.72,
                                          "camt": 0,
                                          "iamt": 8.23
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "17-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006155",
                                    "cflag": "N",
                                    "chksum": "ce69c6735556a733e36a7f3ed7e81a094d88234cb3879e90f8f7eaa9fe681143"
                                  },
                                  {
                                    "val": 254.88,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 216,
                                          "camt": 0,
                                          "iamt": 38.88
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "22-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006402",
                                    "cflag": "N",
                                    "chksum": "2069d30a115a2e6a429fc261e3ab6ddc0e96baec8db6008b77adbb2ffb41b14c"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "37AAJCC6843P1ZW"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 1999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 1694.07,
                                          "camt": 0,
                                          "iamt": 304.93
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "03-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-005554",
                                    "cflag": "N",
                                    "chksum": "1644b2d6d3121e673cab2ba32e00c69b4f2750dad2387e518214347f650999b2"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "37ABACS1615H1ZK"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 999,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 846.61,
                                          "camt": 0,
                                          "iamt": 152.39
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006462",
                                    "cflag": "N",
                                    "chksum": "e2959425f66cefc07524ff17d551c3af953f42cce78ad45be4c2e644345ace10"
                                  },
                                  {
                                    "val": 38.35,
                                    "itms": [
                                      {
                                        "num": 1,
                                        "itm_det": {
                                          "samt": 0,
                                          "csamt": 0,
                                          "rt": 18,
                                          "txval": 32.5,
                                          "camt": 0,
                                          "iamt": 5.85
                                        }
                                      }
                                    ],
                                    "inv_typ": "R",
                                    "flag": "U",
                                    "updby": "S",
                                    "pos": "37",
                                    "idt": "24-11-2025",
                                    "rchrg": "N",
                                    "inum": "INV-006445",
                                    "cflag": "N",
                                    "chksum": "1052723870c4ce5a3a376b2725b05414b9637200b437a56d95b09f99ccf9ad4c"
                                  }
                                ],
                                "cfs": "N",
                                "ctin": "37GOJPD8141C1Z1"
                              }
                            ]
                          },
                          "rtnprd": "112025",
                          "gstin": "24ABKCS2033B1ZV"
                        }
                      },
                      "transaction_id": "28b9845a-45e9-4533-b872-dab1e0ea87ce"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/invoices/count": {
      "get": {
        "summary": "Get Invoice Count",
        "deprecated": false,
        "description": "",
        "operationId": "getInvoiceCount",
        "tags": [
          "Taxpayer",
          "Returns",
          "Invoice Management System"
        ],
        "parameters": [
          {
            "name": "type_of_goods",
            "in": "query",
            "description": "Type of goods. E.g. imports, inward_supplies, others",
            "required": true,
            "schema": {
              "type": "string",
              "default": "others",
              "example": "{{type_of_goods}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInvoiceCountResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "all_oth": {
                            "b2b": {
                              "accept": 1,
                              "noaction": 11,
                              "pending": 0,
                              "reject": 0
                            },
                            "b2ba": {
                              "accept": 0,
                              "noaction": 0,
                              "pending": 0,
                              "reject": 0
                            },
                            "b2bcn": {
                              "accept": 0,
                              "noaction": 0,
                              "pending": 0,
                              "reject": 0
                            },
                            "b2bcna": {
                              "accept": 0,
                              "noaction": 0,
                              "pending": 0,
                              "reject": 0
                            },
                            "b2bdn": {
                              "accept": 0,
                              "noaction": 0,
                              "pending": 0,
                              "reject": 0
                            },
                            "b2bdna": {
                              "accept": 0,
                              "noaction": 0,
                              "pending": 0,
                              "reject": 0
                            },
                            "ecom": {
                              "accept": 0,
                              "noaction": 0,
                              "pending": 0,
                              "reject": 0
                            },
                            "ecoma": {
                              "accept": 0,
                              "noaction": 0,
                              "pending": 0,
                              "reject": 0
                            },
                            "ttl_cnt": 12
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "07457fe3-fb26-4e02-bfdb-5a396c80ffea000"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/invoices": {
      "get": {
        "summary": "Get Invoices",
        "deprecated": false,
        "description": "",
        "operationId": "getInvoices",
        "tags": [
          "Taxpayer",
          "Returns",
          "Invoice Management System"
        ],
        "parameters": [
          {
            "name": "section",
            "in": "query",
            "description": "Section of the transaction. Possible values: B2B, B2BA, CN, CNA, DN, DNA, ECOM, ECOMA",
            "required": true,
            "schema": {
              "type": "string",
              "default": "b2b",
              "example": "{{section}}"
            }
          },
          {
            "name": "status",
            "in": "query",
            "description": "Optional filter to fetch invoices of specific status. Possible values: accepted, rejected, pending, no_action_taken",
            "required": false,
            "schema": {
              "type": "string",
              "example": "no_action_taken"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 B2B Invoices / 200 B2B Accepted Invoices",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInvoicesResponse"
                },
                "examples": {
                  "200 B2B Accepted Invoices": {
                    "summary": "200 B2B Accepted Invoices",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "action": "A",
                              "camt": 10883.91,
                              "cess": 0,
                              "hash": "dbd0f1c65631f9fdbfd3ab8d56c2949c3354b688ea53dee44e42768c07b676e2",
                              "iamt": 0,
                              "idt": "05-11-2024",
                              "inum": "AO2SA2425002517",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "112024",
                              "samt": 10883.91,
                              "srcfilstatus": "Not Filed",
                              "srcform": "R1",
                              "stin": "24ABCCU0123M1YZ",
                              "txval": 120932.18,
                              "val": 142700
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "fd976f56-b9a9-4012-9504-a351b1f2b7fa"
                    }
                  },
                  "200 B2B Invoices": {
                    "summary": "200 B2B Invoices",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "action": "N",
                              "camt": 0,
                              "cess": 0,
                              "hash": "5614d4073380ec8b4ed4613846b18d18d5ee7ce4727e5f5a4d238fe96aaf8600",
                              "iamt": 288,
                              "idt": "02-11-2024",
                              "inum": "1024250260344",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "112024",
                              "samt": 0,
                              "srcfilstatus": "Not Filed",
                              "srcform": "R1",
                              "stin": "33ABCCZ0123M2YZ",
                              "txval": 1600,
                              "val": 1888
                            },
                            {
                              "action": "N",
                              "camt": 0,
                              "cess": 0,
                              "hash": "c5e0ba76b757d78b441a6b419118b44f0777cfe939abe5559fe3d088ce715d1e",
                              "iamt": 397.44,
                              "idt": "31-10-2024",
                              "inum": "5096411148",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "102024",
                              "samt": 0,
                              "srcfilstatus": "Filed",
                              "srcform": "R1",
                              "stin": "06ABCCG0123D1YZ",
                              "txval": 2208,
                              "val": 2605.44
                            },
                            {
                              "action": "N",
                              "camt": 30.59,
                              "cess": 0,
                              "hash": "9662a16203363ad199a8ed76bd90601002438db7927350c4cd8a715c1d76b674",
                              "iamt": 0,
                              "idt": "16-10-2024",
                              "inum": "AMD2-1463535",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "102024",
                              "samt": 30.59,
                              "srcfilstatus": "Filed",
                              "srcform": "R1",
                              "stin": "24ABCCC0123E1YZ",
                              "txval": 339.84,
                              "val": 401.02
                            },
                            {
                              "action": "N",
                              "camt": 258.6,
                              "cess": 0,
                              "hash": "ab52176cfb3c7ea983838c9f9cf702752b37851b699825785b135d62f00e9aba",
                              "iamt": 0,
                              "idt": "13-11-2024",
                              "inum": "AMD2-3993079",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "112024",
                              "samt": 258.6,
                              "srcfilstatus": "Not Filed",
                              "srcform": "R1",
                              "stin": "24ABCCR0123M1YZ",
                              "txval": 2873.53,
                              "val": 3390.73
                            },
                            {
                              "action": "A",
                              "camt": 10883.91,
                              "cess": 0,
                              "hash": "dbd0f1c65631f9fdbfd3ab8d56c2949c3354b688ea53dee44e42768c07b676e2",
                              "iamt": 0,
                              "idt": "05-11-2024",
                              "inum": "AO2SA2425002517",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "112024",
                              "samt": 10883.91,
                              "srcfilstatus": "Not Filed",
                              "srcform": "R1",
                              "stin": "24ABCCU0123M1YZ",
                              "txval": 120932.18,
                              "val": 142700
                            },
                            {
                              "action": "N",
                              "camt": 648.16,
                              "cess": 0,
                              "hash": "907abd1862e141926d6c8dfa2df1b5c8be3120bc71eebfcbdb26d8b08b4bb0bd",
                              "iamt": 0,
                              "idt": "05-11-2024",
                              "inum": "C24E242500143276",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "112024",
                              "samt": 648.16,
                              "srcfilstatus": "Not Filed",
                              "srcform": "R1",
                              "stin": "24ABCCI0123G1YZ",
                              "txval": 7201.8,
                              "val": 8498.12
                            },
                            {
                              "action": "N",
                              "camt": 0,
                              "cess": 0,
                              "hash": "c4b056cd71d63c2984da8f5f85f35e6532978d8bce1381a2ef9958ce7002bc95",
                              "iamt": 18.76,
                              "idt": "13-11-2024",
                              "inum": "IN-21576",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "112024",
                              "samt": 0,
                              "srcfilstatus": "Not Filed",
                              "srcform": "R1",
                              "stin": "08ABCPP0123E2YZ",
                              "txval": 375.24,
                              "val": 394
                            },
                            {
                              "action": "N",
                              "camt": 198.31,
                              "cess": 0,
                              "hash": "4355e6c758ea876ea7981ccf2fe4d7de4546ad63cfcc2f7f04779583d4bb207b",
                              "iamt": 0,
                              "idt": "08-11-2024",
                              "inum": "IT/24-25/978",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "112024",
                              "samt": 198.31,
                              "srcfilstatus": "Not Filed",
                              "srcform": "R1",
                              "stin": "24ABCFI0123L1YZ",
                              "txval": 2203.39,
                              "val": 2600
                            },
                            {
                              "action": "N",
                              "camt": 0,
                              "cess": 0,
                              "hash": "4ce89032a00c068641b9e188c2a041be1416adb0c145d2a53a3af401a4bce95a",
                              "iamt": 27,
                              "idt": "19-11-2024",
                              "inum": "LE/25/1/07976",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "112024",
                              "samt": 0,
                              "srcfilstatus": "Not Filed",
                              "srcform": "R1",
                              "stin": "06ABCCG0123M1YZ",
                              "txval": 150,
                              "val": 177
                            },
                            {
                              "action": "N",
                              "camt": 0,
                              "cess": 0,
                              "hash": "4562950e81948d6c2a295d8a83f3f3c4687fe5e53fef4eba0a4390d6f24744b6",
                              "iamt": 49.36,
                              "idt": "16-10-2024",
                              "inum": "OI-30587/24-25",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "102024",
                              "samt": 0,
                              "srcfilstatus": "Filed",
                              "srcform": "R1",
                              "stin": "32ABCPM0123R1YZ",
                              "txval": 408.79,
                              "val": 458.15
                            },
                            {
                              "action": "N",
                              "camt": 2181.36,
                              "cess": 0,
                              "hash": "bfb71f250650a449db0073b838f9e821c26c87f67f91dd03c85c2b9656d96b9f",
                              "iamt": 0,
                              "idt": "17-10-2024",
                              "inum": "PRN-1050",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "102024",
                              "samt": 2181.36,
                              "srcfilstatus": "Filed",
                              "srcform": "R1",
                              "stin": "24ABCFG0123H1YZ",
                              "txval": 24237.29,
                              "val": 28600
                            },
                            {
                              "action": "N",
                              "camt": 152.54,
                              "cess": 0,
                              "hash": "8d0187738366d5a26d81ac75a716d293d4ab799d51aafea7af57348715b0b265",
                              "iamt": 0,
                              "idt": "25-10-2024",
                              "inum": "PRN-1094",
                              "inv_typ": "R",
                              "ispendactblocked": "N",
                              "pos": "24",
                              "rtnprd": "102024",
                              "samt": 152.54,
                              "srcfilstatus": "Filed",
                              "srcform": "R1",
                              "stin": "24ABCFG0123H1YZ",
                              "txval": 1694.92,
                              "val": 2000
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "661cc68b-0e48-4d39-a744-9afd56895340"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/invoices/status/save": {
      "post": {
        "summary": "Save Invoice Status",
        "deprecated": false,
        "description": "",
        "operationId": "saveInvoiceStatus",
        "tags": [
          "Taxpayer",
          "Returns",
          "Invoice Management System"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SaveInvoiceStatusRequest"
              },
              "examples": {
                "200 Invoice status save initiated": {
                  "value": {
                    "rtin": "24SHUBH3221U1Z1",
                    "reqtyp": "SAVE",
                    "invdata": {
                      "b2b": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "inum": "b1",
                          "inv_typ": "R",
                          "action": "A",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "idt": "23-01-2023",
                          "val": 1000,
                          "pos": "24",
                          "txval": 100,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A",
                          "remarks": "Business to business changes"
                        }
                      ],
                      "b2ba": [
                        {
                          "oinum": "ab2",
                          "oidt": "24-02-2023",
                          "stin": "24MAYAS0100J1JD",
                          "rtnprd": "012023",
                          "inum": "b1a",
                          "action": "A",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "idt": "24-02-2023",
                          "val": 1000,
                          "pos": "07",
                          "txval": 100,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A",
                          "itcRedReq": "Y",
                          "declIgst": 2000,
                          "declSgst": 500,
                          "declCgst": 500,
                          "declCess": 100,
                          "remarks": "Business to business ammendment changes"
                        }
                      ],
                      "b2bdn": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "nt_num": "dn2",
                          "action": "A",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "nt_dt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A",
                          "remarks": "Business to business debit changes"
                        }
                      ],
                      "b2bdna": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "ont_num": "ca2",
                          "ont_dt": "24-02-2023",
                          "nt_num": "dn2",
                          "action": "A",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "nt_dt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A",
                          "itcRedReq": "Y",
                          "declIgst": 2000,
                          "declSgst": 500,
                          "declCgst": 500,
                          "declCess": 100,
                          "remarks": "Business to business debit ammendment changes"
                        }
                      ],
                      "b2bcn": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "nt_num": "dn2",
                          "action": "A",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "nt_dt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A",
                          "itcRedReq": "Y",
                          "declIgst": 2000,
                          "declSgst": 500,
                          "declCgst": 500,
                          "declCess": 100,
                          "remarks": "Business to business credit changes"
                        }
                      ],
                      "b2bcna": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "ont_num": "ca2",
                          "ont_dt": "24-02-2023",
                          "nt_num": "dn2",
                          "action": "A",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "nt_dt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A",
                          "itcRedReq": "Y",
                          "declIgst": 2000,
                          "declSgst": 500,
                          "declCgst": 500,
                          "declCess": 100,
                          "remarks": "Business to business credit ammendment changes"
                        }
                      ],
                      "ecom": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "rtnprd": "012023",
                          "inum": "sd3",
                          "action": "A",
                          "srcform": "R1",
                          "idt": "24-02-2023",
                          "val": 1000,
                          "pos": "07",
                          "txval": 1000,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A",
                          "remarks": "E-com operator changes"
                        }
                      ],
                      "ecoma": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "oinum": "get5",
                          "oidt": "24-02-2023",
                          "rtnprd": "012023",
                          "inum": "sd3",
                          "action": "A",
                          "srcform": "R1",
                          "idt": "24-02-2023",
                          "val": 1000,
                          "pos": "07",
                          "txval": 1000,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A",
                          "itcRedReq": "Y",
                          "declIgst": 2000,
                          "declSgst": 500,
                          "declCgst": 500,
                          "declCess": 100,
                          "remarks": "E-com operator changes ammendment changes"
                        }
                      ]
                    }
                  },
                  "summary": "200 Invoice status save initiated"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "200 Invoice status save initiated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SaveInvoiceStatusResponse"
                },
                "examples": {
                  "200 Invoice status save initiated": {
                    "summary": "200 Invoice status save initiated",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "0032e479bcb644c"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "0f7f60a2-862c-4a1b-b6b4-baa76c6faae6"
                    }
                  }
                }
              }
            },
            "headers": {
              "Connection": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "keep-alive"
                }
              },
              "Content-Length": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "243"
                }
              },
              "Date": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Tue, 06 May 2025 11:28:52 GMT"
                }
              },
              "X-RateLimit-Limit": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "120"
                }
              },
              "X-RateLimit-Remaining": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "119"
                }
              },
              "X-RateLimit-Reset": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "1746530992"
                }
              },
              "access-control-allow-origin": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "*"
                }
              },
              "vary": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Accept-Encoding"
                }
              },
              "x-amz-apigw-id": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "KJLSHEcvhcwFWYg="
                }
              },
              "x-amzn-Remapped-Connection": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "keep-alive"
                }
              },
              "x-amzn-Remapped-Content-Length": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "243"
                }
              },
              "x-amzn-Remapped-Date": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Tue, 06 May 2025 11:28:52 GMT"
                }
              },
              "x-amzn-RequestId": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "5036e263-b47c-472f-88a4-b6834a7a267a"
                }
              },
              "x-srv-span": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "v=1;s=d2574faf86433da7"
                }
              },
              "x-srv-trace": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "v=1;t=eccaeff8c5f07e7f"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/invoices/status/reset": {
      "post": {
        "summary": "Reset Invoice Status",
        "deprecated": false,
        "description": "",
        "operationId": "resetInvoiceStatus",
        "tags": [
          "Taxpayer",
          "Returns",
          "Invoice Management System"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResetInvoiceStatusRequest"
              },
              "examples": {
                "200 Reset status initiated": {
                  "value": {
                    "rtin": "20MAYAS0100J1ZX",
                    "reqtyp": "RESET",
                    "invdata": {
                      "b2b": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "inum": "b1",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "idt": "23-01-2023",
                          "val": 1000,
                          "pos": "24",
                          "txval": 100,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A"
                        }
                      ],
                      "b2ba": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "inum": "dn3",
                          "oinum": "dn2",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "idt": "24-02-2023",
                          "oidt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A"
                        }
                      ],
                      "b2bdn": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "nt_num": "dn2",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "nt_dt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A"
                        }
                      ],
                      "b2bdna": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "ont_num": "ca2",
                          "ont_dt": "24-02-2023",
                          "nt_num": "dn2",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "nt_dt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A"
                        }
                      ],
                      "b2bcn": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "nt_num": "dn2",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "nt_dt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A"
                        }
                      ],
                      "b2bcna": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "ont_num": "ca2",
                          "ont_dt": "24-02-2023",
                          "nt_num": "dn2",
                          "inv_typ": "R",
                          "srcform": "R1",
                          "rtnprd": "012023",
                          "nt_dt": "24-02-2023",
                          "val": 1000.1,
                          "pos": "07",
                          "txval": 1000.1,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A"
                        }
                      ],
                      "ecom": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "rtnprd": "012023",
                          "inum": "sd3",
                          "srcform": "R1",
                          "idt": "24-02-2023",
                          "val": 1000,
                          "pos": "07",
                          "txval": 1000,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A"
                        }
                      ],
                      "ecoma": [
                        {
                          "stin": "24MAYAS0100J1JD",
                          "oinum": "get5",
                          "oidt": "24-02-2023",
                          "rtnprd": "012023",
                          "inum": "sd3",
                          "srcform": "R1",
                          "idt": "24-02-2023",
                          "val": 1000,
                          "pos": "07",
                          "txval": 1000,
                          "iamt": 20,
                          "camt": 20,
                          "samt": 20,
                          "cess": 0,
                          "prev_status": "A"
                        }
                      ]
                    }
                  },
                  "summary": "200 Reset status initiated"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "200 Reset status initiated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResetInvoiceStatusResponse"
                },
                "examples": {
                  "200 Reset status initiated": {
                    "summary": "200 Reset status initiated",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "b34b5a43e4b1"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "da7855ef-0df9-4eab-8c20-91b5da9a005e"
                    }
                  }
                }
              }
            },
            "headers": {
              "Connection": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "keep-alive"
                }
              },
              "Content-Length": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "243"
                }
              },
              "Date": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Tue, 06 May 2025 11:33:23 GMT"
                }
              },
              "X-RateLimit-Limit": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "120"
                }
              },
              "X-RateLimit-Remaining": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "118"
                }
              },
              "X-RateLimit-Reset": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "1746531221"
                }
              },
              "access-control-allow-origin": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "*"
                }
              },
              "vary": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Accept-Encoding"
                }
              },
              "x-amz-apigw-id": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "KJL8aGsyhcwFaLw="
                }
              },
              "x-amzn-Remapped-Connection": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "keep-alive"
                }
              },
              "x-amzn-Remapped-Content-Length": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "243"
                }
              },
              "x-amzn-Remapped-Date": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "Tue, 06 May 2025 11:33:23 GMT"
                }
              },
              "x-amzn-RequestId": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "e9c0d8d1-a800-4a6a-8562-44df114bfeb1"
                }
              },
              "x-srv-span": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "v=1;s=d1b75e60011ff353"
                }
              },
              "x-srv-trace": {
                "required": false,
                "description": "",
                "schema": {
                  "type": "string",
                  "example": "v=1;t=ecb1fb5d88db5a25"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/invoices/status": {
      "get": {
        "summary": "Check Invoice Status",
        "deprecated": false,
        "description": "",
        "operationId": "checkInvoiceStatus",
        "tags": [
          "Taxpayer",
          "Returns",
          "Invoice Management System"
        ],
        "parameters": [
          {
            "name": "reference_id",
            "in": "query",
            "description": "Pass the reference id on taking Save or Reset action",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{reference_id}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Save invoice status processed / 200 Save invoice status processed with error / IMSSAV005 Schema validation failure",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CheckInvoiceStatusResponse"
                },
                "examples": {
                  "200 Save invoice status processed": {
                    "summary": "200 Save invoice status processed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "err_cd": "",
                          "err_msg": "",
                          "proc_cnt": "8",
                          "status_cd": "P",
                          "transTypCd": "SAV"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "619ed667-3bc3-4fc2-954c-340174e52a53"
                    }
                  },
                  "200 Save invoice status processed with error": {
                    "summary": "200 Save invoice status processed with error",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "err_cd": "",
                          "err_cnt": "2",
                          "err_msg": "",
                          "error_report": {
                            "b2b": [
                              {
                                "error_cd": "IMSSAV0010",
                                "error_msg": "Either previous action is incorrect/ invoice might have edited by supplier",
                                "inv": [
                                  {
                                    "inum": "invoice-b2b",
                                    "rtnprd": "042023"
                                  }
                                ],
                                "stin": "32TAAOA2947A1Z7"
                              }
                            ],
                            "dn": [
                              {
                                "error_cd": "IMSSAV0010",
                                "error_msg": "Either previous action is incorrect/ invoice might have edited by supplier",
                                "inv": [
                                  {
                                    "inum": "invoice-dn",
                                    "rtnprd": "042023"
                                  }
                                ],
                                "stin": "32TAAOA2947A1Z7"
                              }
                            ]
                          },
                          "proc_cnt": "10",
                          "status_cd": "PE",
                          "transTypCd": "SAV"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "91e86ca1-c7eb-4ea4-b168-0932e56a1afc"
                    }
                  },
                  "IMSSAV005 Schema validation failure": {
                    "summary": "IMSSAV005 Schema validation failure",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "err_cd": "IMSSAV005",
                          "err_cnt": "0",
                          "err_msg": "Schema validation failure",
                          "proc_cnt": "0",
                          "status_cd": "ER",
                          "transTypCd": "SAV"
                        }
                      },
                      "timestamp": 1747049950040,
                      "transaction_id": "3f6a5200-d137-4ec3-a72d-b386e0efd166"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/at/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A AT",
        "deprecated": false,
        "description": "API call  for getting advance tax details for a return period.",
        "operationId": "getGstr1aAt",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aAtResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "at": [
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                              "pos": "05",
                              "sply_ty": "INTER",
                              "diff_percent": 0.65,
                              "itms": [
                                {
                                  "rt": 5,
                                  "ad_amt": 100,
                                  "iamt": 3.25,
                                  "csamt": 500
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782369336581,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "60f432ad-442c-4d1d-8c5b-1ca7f15bf3ce"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/ata/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A ATA",
        "deprecated": false,
        "description": "API call for getting amended advance tax details for a return period.",
        "operationId": "getGstr1aAta",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aAtaResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "ata": [
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                              "omon": "022017",
                              "pos": "05",
                              "sply_ty": "INTER",
                              "diff_percent": 0.65,
                              "itms": [
                                {
                                  "rt": 5,
                                  "ad_amt": 100,
                                  "iamt": 3.25,
                                  "csamt": 500
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782369384311,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "97eaa736-8b2d-4aa4-9f68-d3136a338b59"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/b2b/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A B2B",
        "deprecated": false,
        "description": "API call for getting all B2B invoices for a return period.",
        "operationId": "getGstr1aB2b",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "03",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Optional from date in `DD/MM/YYYY` format.",
            "required": false,
            "example": "04/02/2017",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aB2bResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2b": [
                            {
                              "ctin": "01AABCE2207R1Z5",
                              "cfs": "Y",
                              "inv": [
                                {
                                  "chksum": "BBUIBUIUIJKKBJKGUYFTFGUY",
                                  "updby": "S",
                                  "inum": "S008400",
                                  "idt": "24-11-2016",
                                  "val": 729248.16,
                                  "pos": "06",
                                  "rchrg": "N",
                                  "etin": "01AABCE5507R1Z4",
                                  "inv_typ": "R",
                                  "cflag": "N",
                                  "diff_percent": 0.65,
                                  "opd": "2016-12",
                                  "srctyp": "EInvoice",
                                  "irn": "897ADG56RTY78956HYUG90BNHHIJK453GFTD99845672FDHHHSHGFH4567FG56TR",
                                  "irngendate": "24-12-2019",
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 5,
                                        "txval": 10000,
                                        "iamt": 325,
                                        "camt": 0,
                                        "samt": 0,
                                        "csamt": 10
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782369425777,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "e83842da-eec9-49d2-967e-a2e18cb60428"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/b2ba/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A B2BA",
        "deprecated": false,
        "description": "API call  for getting all B2B amended invoices for a return period",
        "operationId": "getGstr1aB2ba",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Optional from date in `DD/MM/YYYY` format.",
            "required": false,
            "example": "04/02/2017",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aB2baResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2ba": [
                            {
                              "ctin": "01AABCE2207R1Z5",
                              "cfs": "Y",
                              "inv": [
                                {
                                  "chksum": "CHECKSUMVALUE",
                                  "updby": "S",
                                  "cflag": "N",
                                  "oinum": "S008400",
                                  "oidt": "24-11-2016",
                                  "inum": "S008400",
                                  "idt": "24-11-2016",
                                  "val": 729248.16,
                                  "pos": "06",
                                  "rchrg": "N",
                                  "etin": "01AABCE5507R1Z4",
                                  "inv_typ": "R",
                                  "opd": "2016-12",
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 5,
                                        "txval": 10000,
                                        "iamt": 833.33,
                                        "camt": 0,
                                        "samt": 0,
                                        "csamt": 500
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782369461595,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "ef726f23-d0e5-4caa-8518-6f667b92e3ee"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/b2cl/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A B2CL",
        "deprecated": false,
        "description": "API call  for getting all B2C Large invoices for a return period.",
        "operationId": "getGstr1aB2cl",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aB2clResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2cl": [
                            {
                              "pos": "05",
                              "inv": [
                                {
                                  "flag": "N",
                                  "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                                  "inum": "92661",
                                  "idt": "10-01-2016",
                                  "val": 784586.33,
                                  "inv_typ": "CBW",
                                  "etin": "27AHQPA8875L1ZU",
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 0,
                                        "txval": 0,
                                        "iamt": 0
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370143251,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "41f31eaa-07a1-484e-b2ea-2d144184aadb"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/b2cla/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A B2CLA",
        "deprecated": false,
        "description": "Used to get B2CLA invoices.",
        "operationId": "getGstr1aB2cla",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aB2claResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2cla": [
                            {
                              "pos": "06",
                              "inv": [
                                {
                                  "flag": "N",
                                  "chksum": "AflJufPlFStqKBZ",
                                  "oinum": "9266",
                                  "oidt": "10-02-2016",
                                  "inum": "92661",
                                  "idt": "10-01-2016",
                                  "val": 784586.33,
                                  "inv_typ": "CBW",
                                  "etin": "27AHQPA8875L1ZU",
                                  "diff_percent": 0.65,
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 5,
                                        "txval": 10000,
                                        "iamt": 325
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370311699,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "ea363165-9586-46f5-9b85-8b6fc899ed61"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/b2cs/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A B2CS",
        "deprecated": false,
        "description": "This API will be used for getting all B2C HSN data for a return period.",
        "operationId": "getGstr1aB2cs",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aB2csResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2cs": [
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                              "sply_ty": "INTER",
                              "diff_percent": 0.65,
                              "rt": 5,
                              "typ": "E",
                              "etin": "20ABCDE7588L1ZJ",
                              "pos": "05",
                              "txval": 110,
                              "iamt": 10,
                              "csamt": 10
                            },
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                              "sply_ty": "INTER",
                              "diff_percent": 0.65,
                              "rt": 5,
                              "typ": "OE",
                              "pos": "05",
                              "txval": 440,
                              "iamt": 40,
                              "csamt": 10
                            },
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                              "sply_ty": "INTRA",
                              "diff_percent": 0.65,
                              "rt": 0,
                              "typ": "E",
                              "etin": "20ABCDE7588L1ZJ",
                              "txval": 0,
                              "camt": 0,
                              "samt": 0,
                              "csamt": 0
                            },
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                              "diff_percent": 0.65,
                              "rt": 5,
                              "sply_ty": "INTER",
                              "typ": "OE",
                              "txval": 100,
                              "camt": 10,
                              "samt": 10,
                              "csamt": 10
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370330545,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "6f83513e-f894-40a5-bb08-d05db697fd9b"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/b2csa/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A B2CSA",
        "deprecated": false,
        "description": "This API will be used for getting all B2CSA HSN data for a return period.",
        "operationId": "getGstr1aB2csa",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aB2csaResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "b2csa": [
                            {
                              "itms": [
                                {
                                  "csamt": 0,
                                  "rt": 3,
                                  "txval": 54545,
                                  "iamt": 1636.35
                                }
                              ],
                              "flag": "N",
                              "pos": "34",
                              "omon": "072017",
                              "typ": "OE",
                              "chksum": "b879d454f2a180149a5878bc3cc101d343fbcbfed2171a2bd5230b531a4f223b",
                              "sply_ty": "INTER"
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370351806,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "748ad462-9460-4ac2-9d28-36a4b61364d4"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/cdnra/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A CDNRA",
        "deprecated": false,
        "description": "This API will call CDNRA for getting all amended Credit/Debit notes for a return period of Registered Taxpayers.",
        "operationId": "getGstr1aCdnra",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aCdnraResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cdnra": [
                            {
                              "ctin": "01AAAAP1208Q1ZS",
                              "cfs": "Y",
                              "nt": [
                                {
                                  "chksum": "INVOICECHECKSUMVALUE",
                                  "cflag": "N",
                                  "updby": "S",
                                  "ntty": "C",
                                  "ont_num": "533515",
                                  "ont_dt": "23-09-2016",
                                  "nt_num": "533515",
                                  "nt_dt": "23-09-2016",
                                  "p_gst": "N",
                                  "inum": "915914",
                                  "idt": "23-09-2016",
                                  "val": 123123,
                                  "pos": "03",
                                  "rchrg": "Y",
                                  "inv_typ": "DE",
                                  "opd": "2016-12",
                                  "d_flag": "Y",
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 10,
                                        "txval": 5225.28,
                                        "iamt": 845.22,
                                        "camt": 0,
                                        "samt": 0,
                                        "csamt": 789.52
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370382672,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "42c8d768-94fc-49a9-a653-8767aa4c93b5"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/txp/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A TXP",
        "deprecated": false,
        "description": "API call for getting tax paid  details for a return period.",
        "operationId": "getGstr1aTxp",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aTxpResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "txpd": [
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTKBBJKBB",
                              "pos": "05",
                              "sply_ty": "INTER",
                              "itms": [
                                {
                                  "rt": 5,
                                  "ad_amt": 100,
                                  "iamt": 9400,
                                  "csamt": 500
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370402199,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "2f5d9ee7-8284-4cab-b731-062a8c8cb91f"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/cdnur/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A CDNUR",
        "deprecated": false,
        "description": "This API will call CDNUR for getting all Credit/Debit notes for Unregistered Users.",
        "operationId": "getGstr1aCdnur",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aCdnurResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cdnur": [
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                              "typ": "B2CL",
                              "ntty": "C",
                              "nt_num": "533515",
                              "nt_dt": "23-09-2016",
                              "p_gst": "N",
                              "inum": "915914",
                              "val": 123123,
                              "diff_percent": 0.65,
                              "pos": "03",
                              "idt": "23-09-2016",
                              "d_flag": "Y",
                              "srctyp": "EInvoice",
                              "irn": "897ADG56RTY78956HYUG90BNHHIJK453GFTD99845672FDHHHSHGFH4567FG56TR",
                              "irngendate": "24-12-2019",
                              "itms": [
                                {
                                  "num": 1,
                                  "itm_det": {
                                    "rt": 10,
                                    "txval": 5225.28,
                                    "iamt": 845.22,
                                    "csamt": 789.52
                                  }
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370424417,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "144732b3-d90b-4622-b409-beb14e7b12a1"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/cdnura/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A CDNURA",
        "deprecated": false,
        "description": "This API will call CDNURA for getting all amended Credit/Debit notes for a return period of Unregistered Taxpayers.",
        "operationId": "getGstr1aCdnura",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aCdnuraResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cdnura": [
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                              "ont_num": "533515",
                              "ont_dt": "23-09-2016",
                              "nt_num": "533515",
                              "nt_dt": "23-09-2016",
                              "ntty": "C",
                              "typ": "B2CL",
                              "d_flag": "Y",
                              "p_gst": "N",
                              "inum": "915914",
                              "val": 123123,
                              "idt": "23-09-2016",
                              "pos": "03",
                              "diff_percent": 0.65,
                              "itms": [
                                {
                                  "num": 1,
                                  "itm_det": {
                                    "rt": 10,
                                    "txval": 5225.28,
                                    "iamt": 845.22,
                                    "csamt": 789.52
                                  }
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370445898,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "566452f2-cfd9-4dfd-9bd8-d04f25435e0d"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/declaration-details/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1A Declaration Details",
        "deprecated": false,
        "description": "This API is used to view the GSTR1 , GSTR1A and IFF Liability details along with Available ITC ,Cash Ledger details and ITC Available as per GSTR2B Details.",
        "operationId": "getGstr1aDeclarationDetails",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-1A"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aDeclarationDetailsResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "gstin": "32CHAND3868A1Z3",
                          "ret_period": "092024",
                          "r2bStaleStatus": "N",
                          "declared_tmstmp": "2025-03-20 13:24:00",
                          "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                          "liab": {
                            "gstr1Liab": {
                              "sec_nm": "TTL_LIAB_GSTR1",
                              "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                              "ttl_tax": 2000,
                              "ttl_igst": 10,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_cess": 0,
                              "ttl_val": 10
                            },
                            "iffLiab": [
                              {
                                "sec_nm": "TTL_LIAB_IFF",
                                "chksum": "938a7da1b6692b772d3c04fe1a7005ba1508d765acd007df5ed7fb7b8cb38c05",
                                "iff_ret_period": "072024",
                                "ttl_tax": 2000,
                                "ttl_igst": 10,
                                "ttl_sgst": 0,
                                "ttl_cgst": 0,
                                "ttl_cess": 0,
                                "ttl_val": 10
                              },
                              {
                                "sec_nm": "TTL_LIAB_IFF",
                                "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                                "iff_ret_period": "082024",
                                "ttl_tax": 2000,
                                "ttl_igst": 10,
                                "ttl_sgst": 0,
                                "ttl_cgst": 0,
                                "ttl_cess": 0,
                                "ttl_val": 10
                              }
                            ],
                            "gstr1aLiab": {
                              "sec_nm": "TTL_LIAB_GSTR1A",
                              "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                              "ttl_tax": 1000,
                              "ttl_igst": 10,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_cess": 0,
                              "ttl_val": 10
                            }
                          },
                          "bal": {
                            "cash_bal": {
                              "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                              "igst_bal": 10000,
                              "cgst_bal": 5000,
                              "sgst_bal": 5000,
                              "cess_bal": 1000,
                              "ttl_bal": 21000
                            },
                            "itc_bal": {
                              "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                              "igst_bal": 10000,
                              "cgst_bal": 0,
                              "sgst_bal": 0,
                              "cess_bal": 0,
                              "ttl_bal": 0
                            },
                            "gstr2b_itc_bal": {
                              "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                              "igst_bal": 0,
                              "cgst_bal": 0,
                              "sgst_bal": 0,
                              "cess_bal": 0,
                              "ttl_bal": 0
                            }
                          }
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370458899,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "You are not allowed to view or confirm the declaration details as GSTR-1A Summary is not generated for the Current Period.",
                          "error_cd": "RET191505"
                        }
                      },
                      "transaction_id": "0754f7ed-79d0-4a4c-be72-65f9297103ea"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/doc-issue/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A Document Issued",
        "deprecated": false,
        "description": "This API calls to get Documents issued during the tax period.",
        "operationId": "getGstr1aDocumentIssued",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aDocumentIssuedResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "doc_issue": {
                            "flag": "N",
                            "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                            "doc_det": [
                              {
                                "doc_num": 1,
                                "docs": [
                                  {
                                    "num": 1,
                                    "from": "20",
                                    "to": "29",
                                    "totnum": 20,
                                    "cancel": 3,
                                    "net_issue": 17
                                  }
                                ]
                              }
                            ]
                          }
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370488403,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "1ce1626c-eaef-4eb6-acbe-cddd47233f90"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/ecoma/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A ECOMA",
        "deprecated": false,
        "description": "This API is to get ECOMA Details",
        "operationId": "getGstr1aEcoma",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "recipient_gstin",
            "in": "query",
            "description": "Optional recipient GSTIN filter.",
            "required": false,
            "example": "20GRRHF2562D3A3",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sub_section",
            "in": "query",
            "description": "Optional subsection filter.",
            "required": false,
            "example": "ECOM_B2B",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aEcomaResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "ecoma": {
                            "b2ba": [
                              {
                                "inv": [
                                  {
                                    "val": 445677,
                                    "itms": [
                                      {
                                        "num": 100,
                                        "itm_det": {
                                          "rt": 1,
                                          "txval": 8456,
                                          "iamt": 84.56
                                        }
                                      }
                                    ],
                                    "oinum": "DE-1",
                                    "flag": "N",
                                    "inum": "de-amd-1",
                                    "inv_typ": "DE",
                                    "pos": "32",
                                    "idt": "08-03-2023",
                                    "oidt": "12-03-2023",
                                    "sply_ty": "INTER",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  }
                                ],
                                "rtin": "32KLJIP1179C1ZF",
                                "stin": "33CBCHE8993D1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 7654654,
                                    "itms": [
                                      {
                                        "num": 300,
                                        "itm_det": {
                                          "rt": 3,
                                          "txval": 4567,
                                          "iamt": 137.01
                                        }
                                      }
                                    ],
                                    "oinum": "test",
                                    "flag": "N",
                                    "inum": "Test-Amend",
                                    "inv_typ": "SEWP",
                                    "pos": "07",
                                    "idt": "02-03-2023",
                                    "oidt": "21-03-2023",
                                    "sply_ty": "INTER",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  },
                                  {
                                    "val": 13567,
                                    "itms": [
                                      {
                                        "num": 100,
                                        "itm_det": {
                                          "rt": 1,
                                          "txval": 14300,
                                          "iamt": 0,
                                          "camt": 137.01,
                                          "samt": 137.01,
                                          "csamt": 137.01
                                        }
                                      }
                                    ],
                                    "oinum": "test-2",
                                    "flag": "N",
                                    "inum": "sezwp-amd",
                                    "inv_typ": "SEWOP",
                                    "pos": "37",
                                    "idt": "19-03-2023",
                                    "oidt": "21-03-2023",
                                    "sply_ty": "INTER",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  }
                                ],
                                "rtin": "32KLJIP1179C1ZF",
                                "stin": "33CBCHE8993D1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 345678,
                                    "itms": [
                                      {
                                        "num": 100,
                                        "itm_det": {
                                          "rt": 1,
                                          "txval": 65467,
                                          "iamt": 654.67
                                        }
                                      }
                                    ],
                                    "oinum": "test-1",
                                    "flag": "N",
                                    "inum": "test-amd-1",
                                    "inv_typ": "R",
                                    "pos": "37",
                                    "idt": "14-03-2023",
                                    "oidt": "15-03-2023",
                                    "sply_ty": "INTER",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  }
                                ],
                                "rtin": "32KLJIP1179C1ZF",
                                "stin": "33CBCHE8993D1Z5"
                              }
                            ],
                            "b2ca": [
                              {
                                "pos": "07",
                                "posItms": [
                                  {
                                    "flag": "N",
                                    "omon": "062022",
                                    "sply_ty": "INTER",
                                    "stin": "33CBCHE8993D1Z5",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66",
                                    "itms": [
                                      {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 1.5,
                                        "txval": 34353,
                                        "camt": 0,
                                        "iamt": 515.29
                                      },
                                      {
                                        "csamt": 0,
                                        "samt": 0,
                                        "rt": 2,
                                        "txval": 34353,
                                        "camt": 0,
                                        "iamt": 515.29
                                      }
                                    ]
                                  }
                                ]
                              }
                            ],
                            "urp2ba": [
                              {
                                "inv": [
                                  {
                                    "val": 98765434,
                                    "itms": [
                                      {
                                        "num": 150,
                                        "itm_det": {
                                          "rt": 1.5,
                                          "txval": 7865,
                                          "iamt": 117.98
                                        }
                                      }
                                    ],
                                    "oinum": "b2cl/test/1",
                                    "flag": "N",
                                    "idt": "10-06-2022",
                                    "inum": "b2cl/test/amd/1",
                                    "oidt": "17-06-2022",
                                    "pos": "24",
                                    "sply_ty": "INTER",
                                    "inv_typ": "R",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  }
                                ],
                                "rtin": "32KLJIP1179C1ZF"
                              }
                            ],
                            "urp2ca": [
                              {
                                "itms": [
                                  {
                                    "csamt": 0,
                                    "samt": 0,
                                    "rt": 1.5,
                                    "txval": 34353,
                                    "camt": 0,
                                    "iamt": 515.29
                                  }
                                ],
                                "flag": "N",
                                "pos": "07",
                                "omon": "062022",
                                "sply_ty": "INTER",
                                "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                              }
                            ]
                          }
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370522567,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "cca2b98e-0ec9-4f06-8050-df7d5085eac2"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/ecom/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A ECOM",
        "deprecated": false,
        "description": "This API is to get ECOM Details",
        "operationId": "getGstr1aEcom",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "recipient_gstin",
            "in": "query",
            "description": "Optional recipient GSTIN filter.",
            "required": false,
            "example": "20GRRHF2562D3A3",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sub_section",
            "in": "query",
            "description": "Optional subsection filter.",
            "required": false,
            "example": "ECOM_B2B",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Optional from date in `DD/MM/YYYY` format.",
            "required": false,
            "example": "04/02/2017",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aEcomResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "ecom": {
                            "b2b": [
                              {
                                "inv": [
                                  {
                                    "val": 34567,
                                    "itms": [
                                      {
                                        "num": 100,
                                        "itm_det": {
                                          "rt": 1,
                                          "txval": 456,
                                          "iamt": 4.56
                                        }
                                      }
                                    ],
                                    "inv_typ": "DE",
                                    "flag": "N",
                                    "pos": "32",
                                    "idt": "12-03-2023",
                                    "inum": "DE-1",
                                    "sply_ty": "INTER",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  },
                                  {
                                    "val": 235423,
                                    "itms": [
                                      {
                                        "num": 25,
                                        "itm_det": {
                                          "rt": 0.25,
                                          "txval": 1234,
                                          "iamt": 3.09
                                        }
                                      }
                                    ],
                                    "inv_typ": "DE",
                                    "flag": "N",
                                    "pos": "32",
                                    "idt": "08-03-2023",
                                    "inum": "Normal-1",
                                    "sply_ty": "INTER",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  }
                                ],
                                "rtin": "32KLJIP1179C1ZF",
                                "stin": "33CBCHE8993D1Z5"
                              },
                              {
                                "inv": [
                                  {
                                    "val": 567,
                                    "itms": [
                                      {
                                        "num": 100,
                                        "itm_det": {
                                          "rt": 1,
                                          "txval": 765
                                        }
                                      }
                                    ],
                                    "inv_typ": "SEWOP",
                                    "flag": "N",
                                    "pos": "37",
                                    "idt": "21-03-2023",
                                    "inum": "B2B-2",
                                    "sply_ty": "INTER",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  },
                                  {
                                    "val": 7654654,
                                    "itms": [
                                      {
                                        "num": 100,
                                        "itm_det": {
                                          "rt": 1,
                                          "txval": 78654,
                                          "iamt": 786.54
                                        }
                                      }
                                    ],
                                    "inv_typ": "SEWP",
                                    "flag": "N",
                                    "pos": "27",
                                    "idt": "21-03-2023",
                                    "inum": "B2B",
                                    "sply_ty": "INTER",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  }
                                ],
                                "rtin": "37AABMH4573CKZN",
                                "stin": "33CBCHE8993D1Z5"
                              }
                            ],
                            "b2c": [
                              {
                                "stin": "33CBCHE8993D1Z5",
                                "csamt": 546,
                                "samt": 0,
                                "rt": 1,
                                "flag": "N",
                                "pos": "04",
                                "txval": 8778654,
                                "camt": 0,
                                "iamt": 87786.54,
                                "sply_ty": "INTER",
                                "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                              }
                            ],
                            "urp2b": [
                              {
                                "inv": [
                                  {
                                    "val": 235423,
                                    "itms": [
                                      {
                                        "num": 25,
                                        "itm_det": {
                                          "rt": 0.25,
                                          "txval": 1234,
                                          "iamt": 3.09
                                        }
                                      }
                                    ],
                                    "flag": "N",
                                    "pos": "32",
                                    "idt": "08-03-2023",
                                    "inum": "URP2B-1",
                                    "sply_ty": "INTER",
                                    "inv_typ": "R",
                                    "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                                  }
                                ],
                                "rtin": "32KLJIP1179C1ZF"
                              }
                            ],
                            "urp2c": [
                              {
                                "csamt": 546,
                                "samt": 0,
                                "rt": 1,
                                "flag": "N",
                                "pos": "04",
                                "txval": 8778654,
                                "camt": 0,
                                "iamt": 87786.54,
                                "sply_ty": "INTER",
                                "chksum": "6927009f6608b520bb94b0b6890512a91dcc74e5a8723c91280241287058bf66"
                              }
                            ]
                          }
                        }
                      }
                    }
                  },
                  "wrong_params": {
                    "summary": "Wrong Params",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370541183,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "Invalid recipient GSTIN",
                          "error_cd": "RTNECOM-01"
                        }
                      },
                      "transaction_id": "23b92f47-08e6-4d4e-be6b-d082ac3da1af"
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370586912,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "bc1f4c19-564a-41ad-920e-a6269b90a670"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/exp/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A EXP",
        "deprecated": false,
        "description": "API call for getting invoices related to supplies exported for a return period.",
        "operationId": "getGstr1aExp",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aExpResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "exp": [
                            {
                              "exp_typ": "WPAY",
                              "inv": [
                                {
                                  "flag": "N",
                                  "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                                  "inum": "81542",
                                  "idt": "12-02-2016",
                                  "val": 995048.36,
                                  "sbpcode": "ASB991",
                                  "sbnum": "7896542",
                                  "sbdt": "04-10-2016",
                                  "diff_percent": 0.65,
                                  "srctyp": "EInvoice",
                                  "irn": "897ADG56RTY78956HYUG90BNHHIJK453GFTD99845672FDHHHSHGFH4567FG56TR",
                                  "irngendate": "24-12-2019",
                                  "itms": [
                                    {
                                      "txval": 10000,
                                      "rt": 5,
                                      "iamt": 833.33,
                                      "csamt": 100
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "exp_typ": "WOPAY",
                              "inv": [
                                {
                                  "flag": "N",
                                  "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                                  "inum": "81542",
                                  "idt": "12-02-2016",
                                  "val": 995048.36,
                                  "sbpcode": "ASB881",
                                  "sbnum": "7896542",
                                  "sbdt": "04-10-2016",
                                  "diff_percent": 0.65,
                                  "srctyp": "EInvoice",
                                  "irn": "897ADG56RTY78956HYUG90BNHHIJK453GFTD99845672FDHHHSHGFH4567FG56TR",
                                  "irngendate": "24-12-2019",
                                  "itms": [
                                    {
                                      "txval": 10000,
                                      "rt": 5,
                                      "iamt": 325,
                                      "csamt": 100
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370607620,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number might have been amended earlier. Search with latest amended document.",
                          "error_cd": "RET11417"
                        }
                      },
                      "transaction_id": "94225d8e-c8a7-4555-bc48-447dfaa170e9"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/cdnr/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A CDNR",
        "deprecated": false,
        "description": "This API will call CDNR for getting all amended Credit/Debit notes for a return period of Registered Taxpayers",
        "operationId": "getGstr1aCdnr",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Optional from date in `DD/MM/YYYY` format.",
            "required": false,
            "example": "04/02/2017",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aCdnrResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cdnr": [
                            {
                              "ctin": "01AAAAP1208Q1ZS",
                              "cfs": "Y",
                              "nt": [
                                {
                                  "chksum": "adsdsfsjskssssq",
                                  "cflag": "N",
                                  "updby": "S",
                                  "ntty": "C",
                                  "nt_num": "533515",
                                  "nt_dt": "23-09-2016",
                                  "p_gst": "N",
                                  "inum": "915914",
                                  "idt": "23-09-2016",
                                  "val": 123123,
                                  "opd": "2016-12",
                                  "pos": "03",
                                  "rchrg": "Y",
                                  "inv_typ": "DE",
                                  "d_flag": "Y",
                                  "flag": "N",
                                  "srctyp": "EInvoice",
                                  "irn": "897ADG56RTY78956HYUG90BNHHIJK453GFTD99845672FDHHHSHGFH4567FG56TR",
                                  "irngendate": "24-12-2019",
                                  "itms": [
                                    {
                                      "num": 1,
                                      "itm_det": {
                                        "rt": 10,
                                        "txval": 5225.28,
                                        "iamt": 845.22,
                                        "csamt": 789.52
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370634408,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "7e627d66-e1dc-4dc5-a761-86319ec73b45"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/expa/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A EXPA",
        "deprecated": false,
        "description": "API call for getting amended invoices related to supplies exported for a return period.",
        "operationId": "getGstr1aExpa",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aExpaResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "expa": [
                            {
                              "exp_typ": "WPAY",
                              "inv": [
                                {
                                  "flag": "N",
                                  "chksum": "AflJufPlFStqKBZ",
                                  "oinum": "81542",
                                  "oidt": "12-02-2016",
                                  "inum": "81542",
                                  "idt": "12-02-2016",
                                  "val": 995048.36,
                                  "sbpcode": "ASB995",
                                  "sbnum": "1234567",
                                  "sbdt": "04-10-2016",
                                  "diff_percent": 0.65,
                                  "itms": [
                                    {
                                      "txval": 10000,
                                      "rt": 5,
                                      "iamt": 325,
                                      "csamt": 100
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "exp_typ": "WOPAY",
                              "inv": [
                                {
                                  "flag": "N",
                                  "chksum": "AflJufPlFStqKBZ",
                                  "oinum": "81540",
                                  "oidt": "12-02-2016",
                                  "inum": "81540",
                                  "idt": "12-02-2016",
                                  "val": 995048.36,
                                  "sbpcode": "ASB905",
                                  "sbnum": "1232167",
                                  "sbdt": "04-10-2016",
                                  "diff_percent": 0.65,
                                  "itms": [
                                    {
                                      "txval": 10000,
                                      "rt": 5,
                                      "iamt": 833.33,
                                      "csamt": 100
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370653241,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number might have been amended earlier. Search with latest amended document.",
                          "error_cd": "RET11417"
                        }
                      },
                      "transaction_id": "0103100d-2e90-46a4-81cd-5f6165f487ee"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/hsn/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A HSN Summary",
        "deprecated": false,
        "description": "API call for getting HSN Summary details.",
        "operationId": "getGstr1aHsnSummary",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "03",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aHsnSummaryResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "hsn": {
                            "flag": "N",
                            "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                            "hsn_b2b": [
                              {
                                "num": 1,
                                "hsn_sc": "1102",
                                "desc": "CEREAL FLOURS OTHER THAN THAT OF WHEAT OR MESLIN",
                                "user_desc": "WHEAT FLOUR",
                                "uqc": "BOX",
                                "qty": 2,
                                "txval": 100,
                                "camt": 0.5,
                                "samt": 0.5,
                                "rt": 1
                              }
                            ],
                            "hsn_b2c": [
                              {
                                "num": 1,
                                "hsn_sc": "1301",
                                "desc": "LAC; NATURAL GUMS, RESINS",
                                "user_desc": "RESINS",
                                "uqc": "CTN",
                                "qty": 2,
                                "txval": 100,
                                "iamt": 1,
                                "csamt": 10,
                                "rt": 1
                              }
                            ]
                          }
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370669937,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "2b960f9f-506e-4629-b721-1bfcebdf6bf6"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/nil/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1A NIL Supplies",
        "deprecated": false,
        "description": "API call NIL for getting liabilities such as .Nil Rated.",
        "operationId": "getGstr1aNilSupplies",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aNilSuppliesResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "nil": {
                            "flag": "N",
                            "chksum": "ASDFGJKLPTBBJKBJKBBJKBB",
                            "inv": [
                              {
                                "sply_ty": "INTRB2B",
                                "expt_amt": 123.45,
                                "nil_amt": 1470.85,
                                "ngsup_amt": 1258.5
                              },
                              {
                                "sply_ty": "INTRB2C",
                                "expt_amt": 123.45,
                                "nil_amt": 1470.85,
                                "ngsup_amt": 1258.5
                              },
                              {
                                "sply_ty": "INTRAB2B",
                                "expt_amt": 123.45,
                                "nil_amt": 1470.85,
                                "ngsup_amt": 1258.5
                              },
                              {
                                "sply_ty": "INTRAB2C",
                                "expt_amt": 123.45,
                                "nil_amt": 1470.85,
                                "ngsup_amt": 1258.5
                              }
                            ]
                          }
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370688297,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "2004a610-d7e6-4f33-b856-659ec407e444"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/{year}/{month}": {
      "get": {
        "summary": "GSTR-1A Summary",
        "deprecated": false,
        "description": "This API is to get the table wise summary of GSTR1A data.",
        "operationId": "getGstr1aSummary",
        "tags": [
          "Taxpayer",
          "Returns",
          "File GSTR-1A"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aSummaryResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "gstin": "19KLJIP2115A1ZL",
                          "ret_period": "042021",
                          "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                          "smryTyp": "L",
                          "newSumFlag": true,
                          "sec_sum": [
                            {
                              "sec_nm": "AT",
                              "chksum": "da88731791fdf49c66735228563c4bc798f0af67ba0d1a7089c94762e9f724a6",
                              "ttl_rec": 2,
                              "ttl_tax": 44444420889.56,
                              "ttl_igst": -0.86,
                              "ttl_sgst": 11111111036.02,
                              "ttl_cgst": 11111111036.02,
                              "ttl_val": 122222153821.52,
                              "ttl_cess": 55555510860.78
                            },
                            {
                              "sec_nm": "ATA",
                              "chksum": "3ca0b723feba4b8b1f443d7d74d1b474a3a1aa7bad214f2e209cf60480b83692",
                              "ttl_rec": 2,
                              "ttl_tax": -899235,
                              "ttl_igst": -45000,
                              "ttl_sgst": 29.84,
                              "ttl_cgst": 29.84,
                              "ttl_val": -946497.32,
                              "ttl_cess": -2322,
                              "act_tax": 122220,
                              "act_igst": 2330,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 12330,
                              "act_cess": 1230
                            },
                            {
                              "sec_nm": "B2BA_4A",
                              "chksum": "6b3f23ef64d015c9cff462f29e3c122699348c268b43bab06ff7b04197dcbbfe",
                              "ttl_rec": 2,
                              "ttl_tax": 805243,
                              "ttl_igst": 804,
                              "ttl_sgst": 71868.87,
                              "ttl_cgst": 71868.87,
                              "ttl_val": -8798124,
                              "ttl_cess": 12567.99,
                              "act_tax": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 0,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "B2BA_4B",
                              "chksum": "4ae1d21d47de029c6d22b34e551f6b27edbcb45dd40e694eb32c51e0cf9b7bd5",
                              "ttl_rec": 2,
                              "ttl_tax": 1967508,
                              "ttl_igst": 49382.7,
                              "ttl_sgst": 58791.24,
                              "ttl_cgst": 58791.24,
                              "ttl_val": 889654,
                              "ttl_cess": 7676,
                              "act_tax": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 0,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "B2BA_6C",
                              "chksum": "ee5b0f23ff94b147ef55cc0f2b80e6ffbe725c64d4f032487b65faf1cea03328",
                              "ttl_rec": 2,
                              "ttl_tax": 38899,
                              "ttl_igst": -2592.75,
                              "ttl_sgst": 3407.34,
                              "ttl_cgst": 3407.34,
                              "ttl_val": -888889,
                              "ttl_cess": -3911,
                              "act_tax": 1230,
                              "act_igst": 2330,
                              "act_sgst": 23430,
                              "act_cgst": 2340,
                              "act_val": 2340,
                              "act_cess": 230
                            },
                            {
                              "sec_nm": "B2BA_SEZWOP",
                              "chksum": "ae90ec41964d5df24be221142fb2a462c01d68b3ad8f7f3c3357cab7f39dc7e6",
                              "ttl_rec": 1,
                              "ttl_tax": -60898,
                              "ttl_igst": 0,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 0,
                              "ttl_cess": 0,
                              "act_tax": 234430,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 0,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "B2BA_SEZWP",
                              "chksum": "7827685684828f58be2c1e52a3180795e589f8ad49e887f09ac50a62a4da485e",
                              "ttl_rec": 1,
                              "ttl_tax": 87654,
                              "ttl_igst": 10518.48,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 0,
                              "ttl_cess": 5678,
                              "act_tax": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 0,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "B2BA",
                              "chksum": "6b3f23ef64d015c9cff462f29e3c122699348c268b43bab06ff7b04197dcbbfe",
                              "ttl_rec": 8,
                              "ttl_tax": 2805243,
                              "ttl_igst": 23804,
                              "ttl_sgst": 71868.87,
                              "ttl_cgst": 71868.87,
                              "ttl_val": 8798124,
                              "ttl_cess": 12567.99,
                              "act_tax": 23434334,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 0,
                              "act_cess": 2323
                            },
                            {
                              "sec_nm": "B2B_4A",
                              "chksum": "a6239d4877ad5b51a197181db9480f8541bdfae67bdcd5c967c3fac99b682a29",
                              "ttl_rec": 1,
                              "ttl_tax": 33333333333.33,
                              "ttl_igst": 22222222222.22,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 2132131111111.12,
                              "ttl_cess": 11111111111.33,
                              "cpty_sum": [
                                {
                                  "ctin": "24AHLPP8362B1ZA",
                                  "chksum": "00829f0bacb4b482af681270aa90e382d2157079ddc489b9d679d952670a2131",
                                  "ttl_rec": 1,
                                  "ttl_tax": 33333333333.33,
                                  "ttl_igst": 22222222222.22,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 2132131111111.12,
                                  "ttl_cess": 11111111111.33
                                }
                              ]
                            },
                            {
                              "sec_nm": "B2B_4B",
                              "chksum": "c959cf095ce4b3db864758aa213565db4f841b0f779d230b34293bedef738a92",
                              "ttl_rec": 1,
                              "ttl_tax": 3213123,
                              "ttl_igst": 48196.85,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 2312312,
                              "ttl_cess": 31231,
                              "cpty_sum": [
                                {
                                  "ctin": "24AHLPP8362B1ZA",
                                  "chksum": "00829f0bacb4b482af681270aa90e382d2157079ddc489b9d679d952670a2131",
                                  "ttl_rec": 1,
                                  "ttl_tax": 33333333333.33,
                                  "ttl_igst": 22222222222.22,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 2132131111111.12,
                                  "ttl_cess": 11111111111.33
                                }
                              ]
                            },
                            {
                              "sec_nm": "B2B_6C",
                              "chksum": "390da75f029b2665e80fe9fa12693bc2f37bfeb502f1724d5cf0d54738726829",
                              "ttl_rec": 1,
                              "ttl_tax": 324324,
                              "ttl_igst": 0,
                              "ttl_sgst": 33333333333.77,
                              "ttl_cgst": 33333333333.77,
                              "ttl_val": 12321321,
                              "ttl_cess": 2131,
                              "cpty_sum": [
                                {
                                  "ctin": "24AHLPP8362B1ZA",
                                  "chksum": "00829f0bacb4b482af681270aa90e382d2157079ddc489b9d679d952670a2131",
                                  "ttl_rec": 1,
                                  "ttl_tax": 33333333333.33,
                                  "ttl_igst": 22222222222.22,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 2132131111111.12,
                                  "ttl_cess": 11111111111.33
                                }
                              ]
                            },
                            {
                              "sec_nm": "B2B_SEZWOP",
                              "chksum": "24f5856505826f8ce83c490c7f826213228a5ccba13cb7b6012398a475706603",
                              "ttl_rec": 1,
                              "ttl_tax": 23432433,
                              "ttl_igst": 0,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 675675,
                              "ttl_cess": 0,
                              "cpty_sum": [
                                {
                                  "ctin": "24AHLPP8362B1ZA",
                                  "chksum": "00829f0bacb4b482af681270aa90e382d2157079ddc489b9d679d952670a2131",
                                  "ttl_rec": 1,
                                  "ttl_tax": 33333333333.33,
                                  "ttl_igst": 22222222222.22,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 2132131111111.12,
                                  "ttl_cess": 11111111111.33
                                }
                              ]
                            },
                            {
                              "sec_nm": "B2B_SEZWP",
                              "chksum": "938a7da1b6692b772d3c04fe1a7005ba1508d765acd007df5ed7fb7b8cb38c05",
                              "ttl_rec": 1,
                              "ttl_tax": 3213,
                              "ttl_igst": 342,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 2332131,
                              "ttl_cess": 432,
                              "cpty_sum": [
                                {
                                  "ctin": "24AHLPP8362B1ZA",
                                  "chksum": "00829f0bacb4b482af681270aa90e382d2157079ddc489b9d679d952670a2131",
                                  "ttl_rec": 1,
                                  "ttl_tax": 33333333333.33,
                                  "ttl_igst": 22222222222.22,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 2132131111111.12,
                                  "ttl_cess": 11111111111.33
                                }
                              ]
                            },
                            {
                              "sec_nm": "B2B",
                              "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                              "ttl_rec": 5,
                              "ttl_tax": 2345634540,
                              "ttl_igst": 3432323230,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 3456543450,
                              "ttl_cess": 345543340
                            },
                            {
                              "sec_nm": "B2CL",
                              "chksum": "4554f3207eae9ba570e2ee41b841e869154572a59112c0f2a1f2f8852820c8fe",
                              "ttl_rec": 1,
                              "ttl_tax": 22222222222.23,
                              "ttl_igst": 55555555.56,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 2132132133333.78,
                              "ttl_cess": 33333333333.34
                            },
                            {
                              "sec_nm": "B2CLA",
                              "chksum": "437b8d4cdac2b9cef2d8d6e36123d7a00bd999a8598dd4edaf278c33fa8b1606",
                              "ttl_rec": 1,
                              "ttl_tax": -72000,
                              "ttl_igst": -12960,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 0,
                              "ttl_cess": -8100,
                              "act_tax": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 0,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "B2CS",
                              "chksum": "0b1403687e52935e3f26a8f4d8574e885930395c64bd20e00f898bbb123cdc84",
                              "ttl_rec": 1,
                              "ttl_tax": 22222222222.56,
                              "ttl_igst": 0,
                              "ttl_sgst": 77777777777.88,
                              "ttl_cgst": 77777777777.88,
                              "ttl_val": 211111111112.21,
                              "ttl_cess": 33333333333.89
                            },
                            {
                              "sec_nm": "B2CSA",
                              "chksum": "0492ae6db08db5a23e54c89b3870cb35d133affd2a37d1750af6e1e8eb742108",
                              "ttl_rec": 2,
                              "ttl_tax": 7654,
                              "ttl_igst": -22400,
                              "ttl_sgst": 3418.51,
                              "ttl_cgst": 3418.51,
                              "ttl_val": -10029.98,
                              "ttl_cess": -2121,
                              "act_tax": 186654,
                              "act_igst": 2520,
                              "act_sgst": 8683.51,
                              "act_cgst": 8683.51,
                              "act_val": 214320.02,
                              "act_cess": 7779
                            },
                            {
                              "sec_nm": "HSN",
                              "chksum": "60737d74bb569edfe4a23436e3793b1511072a742c4d5985579bd410dd61d1e0",
                              "ttl_rec": 1,
                              "ttl_tax": -3343244444.89,
                              "ttl_igst": -3333333333.78,
                              "ttl_sgst": -4444444444.89,
                              "ttl_cgst": -4444444444.89,
                              "ttl_val": 0,
                              "ttl_cess": -2222222222.89
                            },
                            {
                              "sec_nm": "HSN_B2B",
                              "chksum": "60737d74bb569edfe4a23436e3793b1511072a742c4d5985579bd410dd61d1e0",
                              "ttl_rec": 1,
                              "ttl_tax": -3343244444.89,
                              "ttl_igst": -3333333333.78,
                              "ttl_sgst": -4444444444.89,
                              "ttl_cgst": -4444444444.89,
                              "ttl_val": 0,
                              "ttl_cess": -2222222222.89
                            },
                            {
                              "sec_nm": "HSN_B2C",
                              "chksum": "60737d74bb569edfe4a23436e3793b1511072a742c4d5985579bd410dd61d1e0",
                              "ttl_rec": 1,
                              "ttl_tax": -3343244444.89,
                              "ttl_igst": -3333333333.78,
                              "ttl_sgst": -4444444444.89,
                              "ttl_cgst": -4444444444.89,
                              "ttl_val": 0,
                              "ttl_cess": -2222222222.89
                            },
                            {
                              "sec_nm": "NIL",
                              "chksum": "3a3c483a65d597a0fb4d49cfd5fdd4ca77c7e9eef2c19cebbf0fb9d89796617e",
                              "ttl_rec": 1,
                              "ttl_expt_amt": 22222222222.89,
                              "ttl_ngsup_amt": 22222222222.89,
                              "ttl_nilsup_amt": 33333333333.78
                            },
                            {
                              "sec_nm": "TTL_LIAB",
                              "chksum": "0b194f5f9cfeb178a4d1440103641b81eb17728b9afd6691a3661aa9c3dd0f8d",
                              "ttl_rec": 22,
                              "ttl_tax": 139906853335.47,
                              "ttl_igst": -9944445758.49,
                              "ttl_sgst": 122222222147.23,
                              "ttl_cgst": 122222222147.23,
                              "ttl_val": 996800682809.96,
                              "ttl_cess": -53208.64
                            },
                            {
                              "sec_nm": "TXPD",
                              "chksum": "178e78d07eef867df63103728398198d5f9ffa26fcc9da997b0c40d7fc1e007c",
                              "ttl_rec": 1,
                              "ttl_tax": 24234324444.78,
                              "ttl_igst": 0,
                              "ttl_sgst": 33333333333.89,
                              "ttl_cgst": 33333333333.89,
                              "ttl_val": 146456546668.45,
                              "ttl_cess": 55555555555.89
                            },
                            {
                              "sec_nm": "TXPDA",
                              "chksum": "2b2bb15c6988c490b7c065f3976e6046615f04a38f9621cca2bf8faa505a8e26",
                              "ttl_rec": 2,
                              "ttl_tax": 16419,
                              "ttl_igst": 2765.28,
                              "ttl_sgst": 392.58,
                              "ttl_cgst": 392.58,
                              "ttl_val": 21325.44,
                              "ttl_cess": 1356,
                              "act_tax": 123979,
                              "act_igst": 20524.08,
                              "act_sgst": 726.33,
                              "act_cgst": 726.33,
                              "act_val": 149118.74,
                              "act_cess": 3163
                            },
                            {
                              "sec_nm": "DOC_ISSUE",
                              "chksum": "e733fd4ff5a82a730dc75b0e44c602c3929984278bf49acb546cfec8750df8ae",
                              "ttl_rec": 1,
                              "ttl_doc_issued": 5555555555,
                              "ttl_doc_cancelled": 1111111111,
                              "net_doc_issued": 4444444444
                            },
                            {
                              "sec_nm": "CDNR",
                              "chksum": "5f2d31143d8b05a9e27c6bd8c5d01a8f7dad2a7f4bad863b141b55cafced9493",
                              "ttl_rec": 5,
                              "ttl_tax": -66666855864.78,
                              "ttl_igst": -33333292838.41,
                              "ttl_sgst": 33333333333.45,
                              "ttl_cgst": 33333333333.45,
                              "ttl_val": -2343245743552.89,
                              "ttl_cess": -77777754321.09,
                              "sub_sections": [
                                {
                                  "sec_nm": "CDNR_4A",
                                  "chksum": "08dd6ae65e1689cbbbfe558bb898676fc38bc31e63119168990a582358c2fab6",
                                  "ttl_rec": 1,
                                  "ttl_tax": -66666666666.78,
                                  "ttl_igst": -33333333333.78,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": -2343244444444.89,
                                  "ttl_cess": -77777777777.89,
                                  "cpty_sum": [
                                    {
                                      "ctin": "24AHLPP8362B1ZA",
                                      "chksum": "5d732555d08feecee547ba616ae7b6007743c5d0647dc1ab5a70e5db6d139777",
                                      "ttl_rec": 1,
                                      "ttl_tax": -66666666666.78,
                                      "ttl_igst": -33333333333.78,
                                      "ttl_sgst": 0,
                                      "ttl_cgst": 0,
                                      "ttl_val": -2343244444444.89,
                                      "ttl_cess": -77777777777.89
                                    }
                                  ]
                                },
                                {
                                  "sec_nm": "CDNR_4B",
                                  "chksum": "185f1a3485f34bcf6ec516462e50505be0e39cd02c69c506cb3a9a64a4d67734",
                                  "ttl_rec": 1,
                                  "ttl_tax": 3123123,
                                  "ttl_igst": 46846.85,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 3123213,
                                  "ttl_cess": 65765,
                                  "cpty_sum": [
                                    {
                                      "ctin": "24AHLPP8362B1ZA",
                                      "chksum": "5d732555d08feecee547ba616ae7b6007743c5d0647dc1ab5a70e5db6d139777",
                                      "ttl_rec": 1,
                                      "ttl_tax": -66666666666.78,
                                      "ttl_igst": -33333333333.78,
                                      "ttl_sgst": 0,
                                      "ttl_cgst": 0,
                                      "ttl_val": -2343244444444.89,
                                      "ttl_cess": -77777777777.89
                                    }
                                  ]
                                },
                                {
                                  "sec_nm": "CDNR_6C",
                                  "chksum": "c1a41c8323ca49803429e47f158cd09588407a97b36d8d4027d1493fa0cc7d0c",
                                  "ttl_rec": 1,
                                  "ttl_tax": 324234,
                                  "ttl_igst": 0,
                                  "ttl_sgst": 33333333333.45,
                                  "ttl_cgst": 33333333333.45,
                                  "ttl_val": 34324,
                                  "ttl_cess": 33.8,
                                  "cpty_sum": [
                                    {
                                      "ctin": "24AHLPP8362B1ZA",
                                      "chksum": "5d732555d08feecee547ba616ae7b6007743c5d0647dc1ab5a70e5db6d139777",
                                      "ttl_rec": 1,
                                      "ttl_tax": -66666666666.78,
                                      "ttl_igst": -33333333333.78,
                                      "ttl_sgst": 0,
                                      "ttl_cgst": 0,
                                      "ttl_val": -2343244444444.89,
                                      "ttl_cess": -77777777777.89
                                    }
                                  ]
                                },
                                {
                                  "sec_nm": "CDNR_SEZWOP",
                                  "chksum": "947859622e8a9ba017c084f02b51b58859d938ae7a9bd36a9551b1031656e0d9",
                                  "ttl_rec": 1,
                                  "ttl_tax": -3213123,
                                  "ttl_igst": 0,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": -213213,
                                  "ttl_cess": 0,
                                  "cpty_sum": [
                                    {
                                      "ctin": "24AHLPP8362B1ZA",
                                      "chksum": "5d732555d08feecee547ba616ae7b6007743c5d0647dc1ab5a70e5db6d139777",
                                      "ttl_rec": 1,
                                      "ttl_tax": -66666666666.78,
                                      "ttl_igst": -33333333333.78,
                                      "ttl_sgst": 0,
                                      "ttl_cgst": 0,
                                      "ttl_val": -2343244444444.89,
                                      "ttl_cess": -77777777777.89
                                    }
                                  ]
                                },
                                {
                                  "sec_nm": "CDNR_SEZWP",
                                  "chksum": "a137b006e96e6f660b4fde19ff624f678b9007690f7d247217d1823a8db2cf68",
                                  "ttl_rec": 1,
                                  "ttl_tax": -423432,
                                  "ttl_igst": -6351.48,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": -4243432,
                                  "ttl_cess": -42342,
                                  "cpty_sum": [
                                    {
                                      "ctin": "24AHLPP8362B1ZA",
                                      "chksum": "5d732555d08feecee547ba616ae7b6007743c5d0647dc1ab5a70e5db6d139777",
                                      "ttl_rec": 1,
                                      "ttl_tax": -66666666666.78,
                                      "ttl_igst": -33333333333.78,
                                      "ttl_sgst": 0,
                                      "ttl_cgst": 0,
                                      "ttl_val": -2343244444444.89,
                                      "ttl_cess": -77777777777.89
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "sec_nm": "CDNRA",
                              "chksum": "42406abc0f8076aac31811e985a916a1e18c9a68c715977718918615da9f980f",
                              "ttl_rec": 8,
                              "ttl_tax": -74530,
                              "ttl_igst": -27948.19,
                              "ttl_sgst": -10484.42,
                              "ttl_cgst": -10484.42,
                              "ttl_val": -9898654,
                              "ttl_cess": -77459,
                              "act_tax": -196528,
                              "act_igst": -13371.73,
                              "act_sgst": -37044.2,
                              "act_cgst": -37044.2,
                              "act_val": -108419,
                              "act_cess": -71148,
                              "sub_sections": [
                                {
                                  "sec_nm": "CDNRA_4A",
                                  "chksum": "568b1d868a64fb0f22079968624ccf6b46e93579b092c2390ded564015099ede",
                                  "ttl_rec": 2,
                                  "ttl_tax": 70865,
                                  "ttl_igst": 5740.73,
                                  "ttl_sgst": -212.93,
                                  "ttl_cgst": -212.93,
                                  "ttl_val": -111111,
                                  "ttl_cess": -51111,
                                  "act_tax": 12340,
                                  "act_igst": 2340,
                                  "act_sgst": 340,
                                  "act_cgst": 234230,
                                  "act_val": 343430,
                                  "act_cess": 355550
                                },
                                {
                                  "sec_nm": "CDNRA_4B",
                                  "chksum": "dfa3695a8fcffcb045bc18a12b6ef6f3ec89dda5ef798d04f5c6746de8f24bd9",
                                  "ttl_rec": 2,
                                  "ttl_tax": -66506,
                                  "ttl_igst": -10197.6,
                                  "ttl_sgst": -1382.64,
                                  "ttl_cgst": -1382.64,
                                  "ttl_val": 0,
                                  "ttl_cess": -14568,
                                  "act_tax": 12320,
                                  "act_igst": 23230,
                                  "act_sgst": 3330,
                                  "act_cgst": 3430,
                                  "act_val": 0,
                                  "act_cess": 23450
                                },
                                {
                                  "sec_nm": "CDNRA_6C",
                                  "chksum": "ebb858ce1e546f8b07928d188b18ae12d7c64d3fa0d4bb092a542269672f3937",
                                  "ttl_rec": 2,
                                  "ttl_tax": -90000,
                                  "ttl_igst": 1051.8,
                                  "ttl_sgst": -8888.85,
                                  "ttl_cgst": -8888.85,
                                  "ttl_val": -9787543,
                                  "ttl_cess": -6102,
                                  "act_tax": 232330,
                                  "act_igst": 3430,
                                  "act_sgst": 3430,
                                  "act_cgst": 2340,
                                  "act_val": 230,
                                  "act_cess": 3430
                                },
                                {
                                  "sec_nm": "CDNRA_SEZWOP",
                                  "chksum": "ace4f2ab79c2301e6879fc47c4b369a77971e6a3c1090f9dde1ed62e6591c2fb",
                                  "ttl_rec": 1,
                                  "ttl_tax": 98765,
                                  "ttl_igst": 0,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 0,
                                  "ttl_cess": 0,
                                  "act_tax": 4322330,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 0,
                                  "act_cess": 0
                                },
                                {
                                  "sec_nm": "CDNRA_SEZWP",
                                  "chksum": "5e701432e85eb69a8cdc961cf79e20415178a1734914f1833d861e752ee005fe",
                                  "ttl_rec": 1,
                                  "ttl_tax": -87654,
                                  "ttl_igst": -24543.12,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 0,
                                  "ttl_cess": -5678,
                                  "act_tax": 234230,
                                  "act_igst": 2321220,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 0,
                                  "act_cess": 8320
                                }
                              ]
                            },
                            {
                              "sec_nm": "CDNUR",
                              "chksum": "5e73987481582753bf2e7c4baab4b5b11000f83fe872ef86e2142eb50d45e32e",
                              "ttl_rec": 3,
                              "ttl_tax": -23865462562.55,
                              "ttl_igst": -21111106414.6,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": -3333333444453.45,
                              "ttl_cess": -66666635435.78,
                              "sub_sections": [
                                {
                                  "chksum": "f09efe96d759c539d783a7d3c99b2a2f157b077ea81833dc955976c362f2fa60",
                                  "typ": "B2CL",
                                  "ttl_rec": 1,
                                  "ttl_tax": -23442343243.55,
                                  "ttl_igst": -21111111111.45,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": -3333333333333.45,
                                  "ttl_cess": -66666666666.78
                                },
                                {
                                  "chksum": "a987e5146073c237d0ac510b40ece2279bffe065b8b6d8db5a0794cba85ce083",
                                  "typ": "EXPWOP",
                                  "ttl_rec": 1,
                                  "ttl_tax": -423432442,
                                  "ttl_igst": 0,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": -423432,
                                  "ttl_cess": 0
                                },
                                {
                                  "chksum": "0e5b2598683c690288f16a35b698fcfb544e0c47130fa2a41e3f5dff69684e62",
                                  "typ": "EXPWP",
                                  "ttl_rec": 1,
                                  "ttl_tax": 313123,
                                  "ttl_igst": 4696.85,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 312312,
                                  "ttl_cess": 31231
                                }
                              ]
                            },
                            {
                              "sec_nm": "CDNURA",
                              "chksum": "8702dbcca009aad165a1400f56500c565c2a3d3293b130a151c4c19517781dc8",
                              "ttl_rec": 3,
                              "ttl_tax": -30702,
                              "ttl_igst": -8721.36,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": -22225,
                              "ttl_cess": -8678,
                              "act_tax": 21230,
                              "act_igst": 23420,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 232330,
                              "act_cess": 2320,
                              "sub_sections": [
                                {
                                  "chksum": "f0940c5a2aa79e4f99c5d40350661711b6a3092a3737b70cc14f61d83b9b37c4",
                                  "typ": "B2CL",
                                  "ttl_rec": 1,
                                  "ttl_tax": -67000,
                                  "ttl_igst": -8040,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 0,
                                  "ttl_cess": -8000,
                                  "act_tax": 72320,
                                  "act_igst": 76660,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 0,
                                  "act_cess": 0
                                },
                                {
                                  "chksum": "28894f53eac244bf9bbb84ce0ba7c78fb45f907c78c6199043b20d177c27c72c",
                                  "typ": "EXPWOP",
                                  "ttl_rec": 1,
                                  "ttl_tax": 41976,
                                  "ttl_igst": 0,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 0,
                                  "ttl_cess": 0,
                                  "act_tax": 68760,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 0,
                                  "act_cess": 0
                                },
                                {
                                  "chksum": "52da2fc8812102fad05d7c4341bc55d1ea23e2ce9c476248e94b6534cd1a1696",
                                  "typ": "EXPWP",
                                  "ttl_rec": 1,
                                  "ttl_tax": -5678,
                                  "ttl_igst": -681.36,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": -22225,
                                  "ttl_cess": -678,
                                  "act_tax": 3450,
                                  "act_igst": 340,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 98760,
                                  "act_cess": 760
                                }
                              ]
                            },
                            {
                              "sec_nm": "EXP",
                              "chksum": "d8f1cc1c2ca19c2ce0f81f8464f05a71d7cb00225b54e695b0a0594d84b01953",
                              "ttl_rec": 2,
                              "ttl_tax": 54646546667.34,
                              "ttl_igst": 22222222222.45,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 2222222266667.12,
                              "ttl_cess": 66666666666.78,
                              "sub_sections": [
                                {
                                  "chksum": "0aed99b028cc6ecc9f022148e6fd85ffb0df750671c4ba3782263ab4e959c42a",
                                  "typ": "EXPWOP",
                                  "ttl_rec": 1,
                                  "ttl_tax": 21313213333.78,
                                  "ttl_igst": 0,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 44444.78,
                                  "ttl_cess": 0
                                },
                                {
                                  "chksum": "adcf09377e50ff9820098c18d69cf2b31205ccff207893168855f4610d0ff518",
                                  "typ": "EXPWP",
                                  "ttl_rec": 1,
                                  "ttl_tax": 33333333333.56,
                                  "ttl_igst": 22222222222.45,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 2222222222222.34,
                                  "ttl_cess": 66666666666.78
                                }
                              ]
                            },
                            {
                              "sec_nm": "EXPA",
                              "chksum": "46239891d3778fafb6c14767fbaf703a43f02fc18ab8adfcaf1fa2a8e2c401b9",
                              "ttl_rec": 2,
                              "ttl_tax": 5467,
                              "ttl_igst": 548.04,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": -901000,
                              "ttl_cess": 5678,
                              "act_tax": 7650,
                              "act_igst": 760,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 65430,
                              "act_cess": 4540,
                              "sub_sections": [
                                {
                                  "chksum": "c84883e80c80c80bbb3beff569f760a92ee5fc68dcc7e380b71a8d4a6d89b815",
                                  "typ": "EXPWOP",
                                  "ttl_rec": 1,
                                  "ttl_tax": 900,
                                  "ttl_igst": 0,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": -909654,
                                  "ttl_cess": 0,
                                  "act_tax": 1450,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 1222220,
                                  "act_cess": 0
                                },
                                {
                                  "chksum": "b44d75cb450958b6f8916f68e7c080e34eaea31e9616a0432db43461c3d9c18e",
                                  "typ": "EXPWP",
                                  "ttl_rec": 1,
                                  "ttl_tax": 4567,
                                  "ttl_igst": 548.04,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 8654,
                                  "ttl_cess": 5678,
                                  "act_tax": 9340,
                                  "act_igst": 750,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 2340,
                                  "act_cess": 2340
                                }
                              ]
                            },
                            {
                              "sec_nm": "SUPECOM",
                              "chksum": "7d81926dfe1a5b929766676f45205a356a7dc8295ebfecfe8fec9513273a1ae7",
                              "ttl_rec": 2,
                              "ttl_tax": 348,
                              "ttl_igst": 36,
                              "ttl_sgst": 38,
                              "ttl_cgst": 38,
                              "ttl_val": 348,
                              "ttl_cess": 33,
                              "sub_sections": [
                                {
                                  "sec_nm": "SUPECOM_14A",
                                  "chksum": "5c212e3986e7c4bbd6ed05b393d73231f54fb1559b7c3716a473870eb7ac5084",
                                  "ttl_rec": 1,
                                  "ttl_tax": 336,
                                  "ttl_igst": 33,
                                  "ttl_sgst": 33,
                                  "ttl_cgst": 33,
                                  "ttl_val": 336,
                                  "ttl_cess": 33
                                },
                                {
                                  "sec_nm": "SUPECOM_14B",
                                  "chksum": "73b4a40b2a61e803788dfcfabbf6bf20e1261ea2d865261dd66cc64c1f6b2aef",
                                  "ttl_rec": 1,
                                  "ttl_tax": 12,
                                  "ttl_igst": 3,
                                  "ttl_sgst": 5,
                                  "ttl_cgst": 5,
                                  "ttl_val": 12,
                                  "ttl_cess": 0
                                }
                              ]
                            },
                            {
                              "sec_nm": "SUPECOMA",
                              "chksum": "7d81926dfe1a5b929766676f45205a356a7dc8295ebfecfe8fec9513273a1ae7",
                              "ttl_rec": 2,
                              "ttl_tax": 348,
                              "ttl_igst": 36,
                              "ttl_sgst": 38,
                              "ttl_cgst": 38,
                              "ttl_val": 348,
                              "ttl_cess": 33,
                              "act_tax": 0,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 0,
                              "act_cess": 0,
                              "sub_sections": [
                                {
                                  "sec_nm": "SUPECOMA_14A",
                                  "chksum": "5c212e3986e7c4bbd6ed05b393d73231f54fb1559b7c3716a473870eb7ac5084",
                                  "ttl_rec": 1,
                                  "ttl_tax": 336,
                                  "ttl_igst": 33,
                                  "ttl_sgst": 33,
                                  "ttl_cgst": 33,
                                  "ttl_val": 336,
                                  "ttl_cess": 33,
                                  "act_tax": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 0,
                                  "act_cess": 0
                                },
                                {
                                  "sec_nm": "SUPECOMA_14B",
                                  "chksum": "73b4a40b2a61e803788dfcfabbf6bf20e1261ea2d865261dd66cc64c1f6b2aef",
                                  "ttl_rec": 1,
                                  "ttl_tax": 12,
                                  "ttl_igst": 3,
                                  "ttl_sgst": 5,
                                  "ttl_cgst": 5,
                                  "ttl_val": 12,
                                  "ttl_cess": 0,
                                  "act_tax": 0,
                                  "act_igst": 0,
                                  "act_sgst": 0,
                                  "act_cgst": 0,
                                  "act_val": 0,
                                  "act_cess": 0
                                }
                              ]
                            },
                            {
                              "sec_nm": "ECOM",
                              "chksum": "6875fc03beb9e340ab85b9d5134a759b850d5228df25fb562032404daac6d2f4",
                              "ttl_rec": 8,
                              "ttl_tax": 181931,
                              "ttl_igst": 1802.41,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 16258788,
                              "ttl_cess": 0
                            },
                            {
                              "sec_nm": "ECOMA",
                              "chksum": "c85d8b96ff09a00aa2342288025e22a5f96d14da322edcf2274170fa89fab58a",
                              "ttl_rec": 4,
                              "ttl_tax": -52552,
                              "ttl_igst": -569.53,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 424110,
                              "ttl_cess": 0,
                              "act_tax": 92790,
                              "act_igst": 876.24,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 8459576,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "ECOM_REG",
                              "chksum": "78f0b5328941c143471dc1fad292f35372989ce324e7fd5253a2a7c781beadbf",
                              "ttl_rec": 5,
                              "ttl_tax": 102056,
                              "ttl_igst": 1011.31,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 8569000,
                              "ttl_cess": 0,
                              "cpty_sum": [
                                {
                                  "ctin": "32KLJIP1179C1ZF",
                                  "chksum": "7cd3a81fa83283435a6f6ebc47a4bfe0efebd073638580219f794b3067879dba",
                                  "ttl_rec": 1,
                                  "ttl_tax": 1234,
                                  "ttl_igst": 3.09,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 235423,
                                  "ttl_cess": 0,
                                  "trade_name": "GSTN"
                                },
                                {
                                  "ctin": "37BALAB1221B1ZD",
                                  "chksum": "0322c61becc2b7a586bbbded562192ff91726f4a3286d6b779beaa7c0e6ba4dd",
                                  "ttl_rec": 4,
                                  "ttl_tax": 100822,
                                  "ttl_igst": 1008.22,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 8333577,
                                  "ttl_cess": 0,
                                  "trade_name": "GSTN"
                                }
                              ]
                            },
                            {
                              "sec_nm": "ECOM_DE",
                              "chksum": "365e784528c413e54d3cd30f576677efd8ab2fa2910e8db13bdfff5131d23a22",
                              "ttl_rec": 1,
                              "ttl_tax": 456,
                              "ttl_igst": 4.56,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 34567,
                              "ttl_cess": 0,
                              "cpty_sum": [
                                {
                                  "ctin": "32KLJIP1179C1ZF",
                                  "chksum": "495be5a52fd3253537e4e173ca320c220bfd011cd4331005d01a4c649bef1961",
                                  "ttl_rec": 1,
                                  "ttl_tax": 456,
                                  "ttl_igst": 4.56,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 34567,
                                  "ttl_cess": 0,
                                  "trade_name": "GSTN"
                                }
                              ]
                            },
                            {
                              "sec_nm": "ECOM_SEZWOP",
                              "chksum": "73cae6922710190936824ad3a7fd3b4797401afcb3bb85aaefc26517a37a388a",
                              "ttl_rec": 1,
                              "ttl_tax": 765,
                              "ttl_igst": 0,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 567,
                              "ttl_cess": 0,
                              "cpty_sum": [
                                {
                                  "ctin": "37AABMH4573CKZN",
                                  "chksum": "c7b5ef1fd78a441fac4b66d53d62c373ef2cc8d236f124656e905e67fb30a856",
                                  "ttl_rec": 1,
                                  "ttl_tax": 765,
                                  "ttl_igst": 0,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 567,
                                  "ttl_cess": 0,
                                  "trade_name": "GSTN"
                                }
                              ]
                            },
                            {
                              "sec_nm": "ECOM_SEZWP",
                              "chksum": "8c0bc06c05592535f80ce5b3cc0fa968babdc8573b62d3913d9f4d17e11db881",
                              "ttl_rec": 1,
                              "ttl_tax": 78654,
                              "ttl_igst": 786.54,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 7654654,
                              "ttl_cess": 0,
                              "cpty_sum": [
                                {
                                  "ctin": "37AABMH4573CKZN",
                                  "chksum": "f99fb68cba5e8a8a00582aecbfcf9e5fe172309f09b455d25d96606f904dea86",
                                  "ttl_rec": 1,
                                  "ttl_tax": 78654,
                                  "ttl_igst": 786.54,
                                  "ttl_sgst": 0,
                                  "ttl_cgst": 0,
                                  "ttl_val": 7654654,
                                  "ttl_cess": 0,
                                  "trade_name": "GSTN"
                                }
                              ]
                            },
                            {
                              "sec_nm": "ECOM_UNREG",
                              "chksum": "cfbe892f5f8de7c1a5799f4fffcaa9b36691067666e17ac7d15f9e0ca1b84dc8",
                              "ttl_rec": 3,
                              "ttl_tax": 358236,
                              "ttl_igst": 4030.37,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 156733701,
                              "ttl_cess": 0
                            },
                            {
                              "sec_nm": "ECOMA_REG",
                              "chksum": "27afd1bb97c4425f5b12d84a8b1253ed7db5b7c3b39645b23c25042fe06596d0",
                              "ttl_rec": 1,
                              "ttl_tax": 0,
                              "ttl_igst": 0,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 0,
                              "ttl_cess": 0,
                              "act_tax": 65467,
                              "act_igst": 654.67,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 345678,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "ECOMA_DE",
                              "chksum": "f56cb3859947deaaa4e3887a659feccfa41459cc7b55a0b0bf5b0216c57749f2",
                              "ttl_rec": 1,
                              "ttl_tax": 8000,
                              "ttl_igst": 80,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 411110,
                              "ttl_cess": 0,
                              "act_tax": 8456,
                              "act_igst": 84.56,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 445677,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "ECOMA_SEZWOP",
                              "chksum": "072c58fbee1d74fff28822b71327bca58c012a91d0a93f3bd8f4767c3f9bd5ab",
                              "ttl_rec": 1,
                              "ttl_tax": 13535,
                              "ttl_igst": 0,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 13000,
                              "ttl_cess": 0,
                              "act_tax": 14300,
                              "act_igst": 0,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 13567,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "ECOMA_SEZWP",
                              "chksum": "6cb1501d61e9bc342289f300f2d47a56834ea496897917b7775af7a015f3579c",
                              "ttl_rec": 1,
                              "ttl_tax": -74087,
                              "ttl_igst": -649.53,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 0,
                              "ttl_cess": 0,
                              "act_tax": 4567,
                              "act_igst": 137.01,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 7654654,
                              "act_cess": 0
                            },
                            {
                              "sec_nm": "ECOMA_UNREG",
                              "chksum": "6040e2c3d8a1bc615afbf7992b8761af4fdd61d0deea453e50d9c62ce0a5adc6",
                              "ttl_rec": 1,
                              "ttl_tax": 0,
                              "ttl_igst": 0,
                              "ttl_sgst": 0,
                              "ttl_cgst": 0,
                              "ttl_val": 0,
                              "ttl_cess": 0,
                              "act_tax": 7865,
                              "act_igst": 117.98,
                              "act_sgst": 0,
                              "act_cgst": 0,
                              "act_val": 98765434,
                              "act_cess": 0
                            }
                          ]
                        }
                      }
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/supecoa/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1A SUPECOA",
        "deprecated": false,
        "description": "This API is to get Supplier ECOA Details",
        "operationId": "getGstr1aSupecoa",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sub_section",
            "in": "query",
            "description": "Optional subsection filter.",
            "required": false,
            "example": "ECOM_B2B",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aSupecoaResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "supecoa": {
                            "clttxa": [
                              {
                                "oetin": "20ALYPD6528PQC5",
                                "etin": "20ALYPD6528PQC5",
                                "suppval": 10000,
                                "igst": 1000,
                                "cgst": 0,
                                "sgst": 0,
                                "cess": 0,
                                "flag": "E",
                                "omon": "052023"
                              }
                            ],
                            "paytxa": [
                              {
                                "oetin": "20ALYPD6528PQC5",
                                "etin": "20ALYPD6528PQC5",
                                "suppval": 10000,
                                "igst": 1000,
                                "cgst": 0,
                                "sgst": 0,
                                "cess": 0,
                                "flag": "D",
                                "omon": "052023"
                              }
                            ]
                          }
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370734934,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No invoices found!!",
                          "error_cd": "RETWEB_04"
                        }
                      },
                      "transaction_id": "ee0202b0-d6f7-4fcf-9d0c-18bb1a232a65"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/txpa/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1A TXPA",
        "deprecated": false,
        "description": "This API calls to get TXPA invoices for the tax period.",
        "operationId": "getGstr1aTxpa",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aTxpaResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "txpda": [
                            {
                              "flag": "N",
                              "chksum": "ASDFGJKLPTKBBJKBB",
                              "omon": "122016",
                              "pos": "05",
                              "sply_ty": "INTER",
                              "itms": [
                                {
                                  "rt": 5,
                                  "ad_amt": 100,
                                  "iamt": 9400,
                                  "csamt": 500
                                }
                              ]
                            }
                          ]
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370767070,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No document found in selected financial year. Either this document exists in a different financial year or the document number is incorrect.",
                          "error_cd": "RET11416"
                        }
                      },
                      "transaction_id": "aa6c6de8-3e7d-4db8-84e5-4693fa7ca6cc"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/gstr-1a/supeco/{year}/{month}": {
      "get": {
        "summary": "Get GSTR-1A SUPECO",
        "deprecated": false,
        "description": "This API is to get Supplier ECO Details",
        "operationId": "getGstr1aSupeco",
        "tags": [
          "Taxpayer",
          "Returns",
          "GSTR-1A Documents"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return year, for example `2025`.",
            "required": true,
            "example": "2025",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return month, for example `04`.",
            "required": true,
            "example": "04",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sub_section",
            "in": "query",
            "description": "Optional subsection filter.",
            "required": false,
            "example": "ECOM_B2B",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "Optional from date in `DD/MM/YYYY` format.",
            "required": false,
            "example": "04/02/2017",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstr1aSupecoResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "supeco": {
                            "clttx": [
                              {
                                "etin": "20ALYPD6528PQC5",
                                "suppval": 10000,
                                "igst": 1000,
                                "cgst": 0,
                                "sgst": 0,
                                "cess": 0,
                                "flag": "E"
                              }
                            ],
                            "paytx": [
                              {
                                "etin": "20ALYPD6528PQC5",
                                "suppval": 10000,
                                "igst": 1000,
                                "cgst": 0,
                                "sgst": 0,
                                "cess": 0,
                                "flag": "D"
                              }
                            ]
                          }
                        }
                      }
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370817772,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No invoices found!!",
                          "error_cd": "RETWEB_04"
                        }
                      },
                      "transaction_id": "efb39823-2599-4688-aa9c-b5bf46700ad2"
                    }
                  },
                  "wrong_params": {
                    "summary": "Wrong Params",
                    "value": {
                      "code": 200,
                      "timestamp": 1782370893250,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "Invalid sub section",
                          "error_cd": "RTNECO-02"
                        }
                      },
                      "transaction_id": "c8f943ce-8b75-45d5-8180-ec3fca080249"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/{year}/{month}/track": {
      "get": {
        "summary": "Track Returns",
        "deprecated": false,
        "description": "List filed GST returns for a return period for an authenticated taxpayer.",
        "operationId": "trackReturns",
        "tags": [
          "Taxpayer",
          "Returns"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return period year.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string",
              "example": "2024"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return period month.",
            "required": true,
            "example": "03",
            "schema": {
              "type": "string",
              "example": "05"
            }
          },
          {
            "name": "return_type",
            "in": "query",
            "description": "Optional return type filter. Use repo-style values such as `gstr-1`, `gstr-3b`, or `gstr-9`.",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "example": "gstr-1"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version.",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success. On GST-side business failure, the sandbox wrapper still returns 200 with `data.status_cd = \"0\"` and an `error` object.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TrackReturnsResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "EFiledlist": [
                            {
                              "arn": "AA010143556585B",
                              "ret_prd": "022017",
                              "mof": "ONLINE",
                              "dof": "08-02-2017",
                              "rtntype": "GSTR2",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA010143556585B",
                              "ret_prd": "022017",
                              "mof": "ONLINE",
                              "dof": "07-02-2017",
                              "rtntype": "GSTR1",
                              "status": "Filed",
                              "valid": "Y"
                            },
                            {
                              "arn": "AA010143556587A",
                              "ret_prd": "032017",
                              "mof": "ONLINE",
                              "dof": "07-03-2017",
                              "rtntype": "GSTR3",
                              "status": "Filed",
                              "valid": "N"
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "0ca94d55-c0ab-452f-9d28-e0f9509d1df4"
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782371188498,
                      "data": {
                        "status_cd": "1",
                        "data": {}
                      },
                      "transaction_id": "9fff47a3-15e0-4cd1-864f-7cf72338498c"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/{year}/{month}/status": {
      "get": {
        "summary": "GST Return status",
        "deprecated": false,
        "description": "Get advance tax details for a return period for authenticated taxpayer",
        "operationId": "getGstReturnStatus",
        "tags": [
          "Taxpayer",
          "Returns"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "reference_id",
            "in": "query",
            "description": "`required` Reference ID",
            "required": true,
            "schema": {
              "type": "string",
              "example": "{{reference_id}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 GSTR-1 save processed / 200 GSTR-1 save processed with error / 200 GSTR-1 reset processed / 200 GSTR-3B save processed / 200 GSTR-9 save processed / 200 GSTR-9 save processed with error / RET191350 HSN code is not valid as per AATO / RET191353 The UQC entered is not valid / RET191355 The Quantity entered is not valid / RET191175 Enter GST rate as per the rate list / RET191106 Error in JSON structure / RET191251 RESET is under process / 200 Reset Request Received",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGstReturnStatusResponse"
                },
                "examples": {
                  "200 GSTR-1 reset processed": {
                    "summary": "200 GSTR-1 reset processed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "RESET",
                          "form_typ": "R1",
                          "status_cd": "P"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "c34bd5f1-d986-46fd-be85-457587ffda0e"
                    }
                  },
                  "200 GSTR-1 save processed": {
                    "summary": "200 GSTR-1 save processed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "form_typ": "R1",
                          "status_cd": "P"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "dc8e3fd8-6e7e-49aa-9c79-16b473f05e34"
                    }
                  },
                  "200 GSTR-1 save processed with error": {
                    "summary": "200 GSTR-1 save processed with error",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "error_report": {
                            "at": [
                              {
                                "error_cd": "RET191114",
                                "error_msg": "Invalid POS",
                                "itms": [
                                  {
                                    "ad_amt": 100,
                                    "csamt": 500,
                                    "iamt": 9400,
                                    "rt": 5
                                  }
                                ],
                                "pos": "05",
                                "sply_ty": "INTER"
                              }
                            ],
                            "b2b": [
                              {
                                "ctin": "05CGDPP1321G1ZV",
                                "error_cd": "RET191114",
                                "error_msg": "Date is Invalid. Date of invoice cannot exceed the current tax period and be older than 18 months or older than registration date.",
                                "inv": [
                                  {
                                    "etin": "01AABCE5507R1Z4",
                                    "idt": "24-11-2016",
                                    "inum": "S008400",
                                    "inv_typ": "R",
                                    "itms": [
                                      {
                                        "itm_det": {
                                          "csamt": 500,
                                          "iamt": 833.33,
                                          "rt": 5,
                                          "txval": 10000
                                        },
                                        "num": 1
                                      }
                                    ],
                                    "pos": "06",
                                    "rchrg": "N",
                                    "val": 729248.16
                                  }
                                ]
                              }
                            ],
                            "b2cl": [
                              {
                                "error_cd": "RET191114",
                                "error_msg": "Date is Invalid. Date of invoice cannot exceed the current tax period and be older than 18 months or older than registration date.",
                                "inv": [
                                  {
                                    "etin": "27AHQPA8875L1ZU",
                                    "idt": "10-01-2016",
                                    "inum": "92661",
                                    "itms": [
                                      {
                                        "itm_det": {
                                          "csamt": 500,
                                          "iamt": 833.33,
                                          "rt": 5,
                                          "txval": 10000
                                        },
                                        "num": 1
                                      }
                                    ],
                                    "val": 784586.33
                                  }
                                ],
                                "pos": "05"
                              }
                            ],
                            "b2cs": [
                              {
                                "csamt": 10,
                                "error_cd": "RET191114",
                                "error_msg": "Date is Invalid. Date of invoice cannot exceed the current tax period and be older than 18 months or older than registration date.",
                                "etin": "20ABCDE7588L1ZJ",
                                "iamt": 10,
                                "pos": "05",
                                "rt": 5,
                                "sply_ty": "INTER",
                                "txval": 110,
                                "typ": "E"
                              }
                            ],
                            "cdnr": [
                              {
                                "ctin": "01AAAAP1208Q1ZS",
                                "error_cd": "RET191115",
                                "error_msg": "Date is Invalid. Date of note cannot exceed the current tax period .",
                                "nt": [
                                  {
                                    "idt": "23-09-2016",
                                    "inum": "915914",
                                    "itms": [
                                      {
                                        "itm_det": {
                                          "csamt": 789.52,
                                          "iamt": 845.22,
                                          "rt": 10,
                                          "txval": 5225.28
                                        },
                                        "num": 1
                                      }
                                    ],
                                    "nt_dt": "23-09-2016",
                                    "nt_num": "533515",
                                    "ntty": "C",
                                    "p_gst": "N",
                                    "rsn": "Post Sale Discount",
                                    "val": 123123
                                  }
                                ]
                              }
                            ],
                            "cdnur": [
                              {
                                "error_cd": "RET191115",
                                "error_msg": "Date is Invalid. Date of note cannot exceed the current tax period .",
                                "idt": "23-09-2016",
                                "inum": "915914",
                                "itms": [
                                  {
                                    "itm_det": {
                                      "csamt": 789.52,
                                      "iamt": 845.22,
                                      "rt": 10,
                                      "txval": 5225.28
                                    },
                                    "num": 1
                                  }
                                ],
                                "nt_dt": "23-09-2016",
                                "nt_num": "533515",
                                "ntty": "C",
                                "p_gst": "N",
                                "rsn": "Post Sale Discount",
                                "typ": "B2CL",
                                "val": 64646
                              }
                            ],
                            "doc_issue": {
                              "doc_det": [
                                {
                                  "doc_num": 1,
                                  "docs": [
                                    {
                                      "cancel": 3,
                                      "from": "20",
                                      "net_issue": 17,
                                      "num": 1,
                                      "to": "29",
                                      "totnum": 20
                                    }
                                  ]
                                }
                              ],
                              "error_cd": "ERRORCODE",
                              "error_msg": "ERRORMESSAGE"
                            },
                            "exp": [
                              {
                                "error_cd": "RET191114",
                                "error_msg": "Date is Invalid. Date of invoice cannot exceed the current tax period and be older than 18 months or older than registration date.",
                                "exp_typ": "WPAY",
                                "inv": [
                                  {
                                    "idt": "12-02-2016",
                                    "inum": "81542",
                                    "itms": [
                                      {
                                        "iamt": 833.33,
                                        "rt": 5,
                                        "txval": 10000
                                      }
                                    ],
                                    "sbdt": "04-10-2016",
                                    "sbnum": 7896542,
                                    "sbpcode": "ASB991",
                                    "val": 995048.36
                                  }
                                ]
                              }
                            ],
                            "hsn": {
                              "data": [
                                {
                                  "csamt": 500,
                                  "desc": "Goods Description",
                                  "hsn_sc": "1009",
                                  "iamt": 14.52,
                                  "num": 1,
                                  "qty": 2.05,
                                  "txval": 10.23,
                                  "uqc": "kg",
                                  "val": 995048.36
                                }
                              ],
                              "error_cd": "RET191114",
                              "error_msg": "Date is Invalid. Date of invoice cannot exceed the current tax period and be older than 18 months or older than registration date."
                            },
                            "nil": {
                              "error_cd": "RET191114",
                              "error_msg": "Date is Invalid. Date of invoice cannot exceed the current tax period and be older than 18 months or older than registration date.",
                              "inv": [
                                {
                                  "expt_amt": 123.45,
                                  "ngsup_amt": 1258.5,
                                  "nil_amt": 1470.85,
                                  "sply_ty": "INTRB2B"
                                },
                                {
                                  "expt_amt": 123.45,
                                  "ngsup_amt": 1258.5,
                                  "nil_amt": 1470.85,
                                  "sply_ty": "INTRB2C"
                                }
                              ]
                            },
                            "txpd": [
                              {
                                "error_cd": "RET191114",
                                "error_msg": "Invalid POS",
                                "itms": [
                                  {
                                    "ad_amt": 100,
                                    "csamt": 500,
                                    "iamt": 9400,
                                    "rt": 5
                                  }
                                ],
                                "pos": "05",
                                "sply_ty": "INTER"
                              }
                            ]
                          },
                          "form_typ": "R1",
                          "status_cd": "PE"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "77dbb7b7-f586-4883-94cd-1de088a7f660"
                    }
                  },
                  "200 GSTR-3B save processed": {
                    "summary": "200 GSTR-3B save processed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "form_typ": "R3B",
                          "status_cd": "P"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "127f9782-c3db-4b6d-be73-753dbcfe9c84"
                    }
                  },
                  "200 GSTR-9 save processed": {
                    "summary": "200 GSTR-9 save processed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "form_typ": "R9",
                          "status_cd": "P"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "f7cea944-c467-425f-abaa-97ea142fa0b2"
                    }
                  },
                  "200 GSTR-9 save processed with error": {
                    "summary": "200 GSTR-9 save processed with error",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "error_report": {
                            "table17": {
                              "items": [
                                {
                                  "camt": 48287.66,
                                  "csamt": 0,
                                  "error_cd": "RET91708",
                                  "error_msg": "The reported tax amount differs with the computed value by more than Rs. 10/-. Please report the correct tax amount within the acceptable range to proceed with the record",
                                  "hsn_sc": "997331",
                                  "iamt": 0,
                                  "isconcesstional": "N",
                                  "rt": 18,
                                  "samt": 48287.66,
                                  "txval": 536762
                                },
                                {
                                  "camt": 207620.5,
                                  "csamt": 0,
                                  "error_cd": "RET91708",
                                  "error_msg": "The reported tax amount differs with the computed value by more than Rs. 10/-. Please report the correct tax amount within the acceptable range to proceed with the record",
                                  "hsn_sc": "998232",
                                  "iamt": 5676040.91,
                                  "isconcesstional": "N",
                                  "rt": 18,
                                  "samt": 207620.5,
                                  "txval": 33840209.41
                                }
                              ]
                            }
                          },
                          "form_typ": "R9",
                          "status_cd": "PE"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e6cc99e6-e5d2-4b7b-853c-7c647c0222df"
                    }
                  },
                  "200 Reset Request Received": {
                    "summary": "200 Reset Request Received",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "RESET",
                          "form_typ": "R1",
                          "status_cd": "REC"
                        }
                      },
                      "timestamp": 1739192256000,
                      "transaction_id": "bdb2cf8c-3c83-43ab-b3c4-68f726603b7e"
                    }
                  },
                  "RET191106 Error in JSON structure": {
                    "summary": "RET191106 Error in JSON structure",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "error_report": {
                            "error_cd": "RET191106",
                            "error_msg": "Error in Json structure validation."
                          },
                          "form_typ": "R1",
                          "status_cd": "ER"
                        }
                      },
                      "timestamp": 1739183552000,
                      "transaction_id": "43bf3220-b11f-4380-854b-91030fe8be53"
                    }
                  },
                  "RET191175 Enter GST rate as per the rate list": {
                    "summary": "RET191175 Enter GST rate as per the rate list",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "error_report": {
                            "b2b": [
                              {
                                "ctin": "23ACYFS6212N1ZH",
                                "error_cd": "RET191175",
                                "error_msg": "Do enter the correct rate as per the rate list.",
                                "inv": [
                                  {
                                    "idt": "29-01-2025",
                                    "inum": "INV12345",
                                    "inv_typ": "R",
                                    "isEdit": false,
                                    "itms": [
                                      {
                                        "itm_det": {
                                          "iamt": 18,
                                          "rt": 0.18,
                                          "txval": 100
                                        },
                                        "num": 1
                                      }
                                    ],
                                    "pos": "23",
                                    "rchrg": "N",
                                    "val": 118
                                  }
                                ]
                              }
                            ]
                          },
                          "form_typ": "R1",
                          "status_cd": "PE"
                        }
                      },
                      "timestamp": 1738757834000,
                      "transaction_id": "4fa30636-9f23-4dd5-893c-fbfb236a6848"
                    }
                  },
                  "RET191251 RESET is under process": {
                    "summary": "RET191251 RESET is under process",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "error_report": {
                            "error_cd": "RET191251",
                            "error_msg": "RESET is under process. Please try again later"
                          },
                          "form_typ": "R1",
                          "status_cd": "ER"
                        }
                      },
                      "timestamp": 1739183803000,
                      "transaction_id": "6e736307-a6f1-45f4-9353-e6d25a17f9d9"
                    }
                  },
                  "RET191350 HSN code is not valid as per AATO": {
                    "summary": "RET191350 HSN code is not valid as per AATO",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "error_report": {
                            "hsn": [
                              {
                                "chksum": "df61c0865eb0d71db87b3660f876cd25211d39aa245fa51b1cf105188a20da1d",
                                "data": [
                                  {
                                    "camt": 0,
                                    "csamt": 0,
                                    "desc": "Fees",
                                    "hsn_sc": "9983",
                                    "iamt": 0.36,
                                    "num": 1,
                                    "qty": 0,
                                    "rt": 18,
                                    "samt": 0,
                                    "txval": 2,
                                    "uqc": "NA"
                                  }
                                ],
                                "error_cd": "RET191350",
                                "error_msg": "Length of entered HSN code is not valid as per AATO"
                              }
                            ]
                          },
                          "form_typ": "R1",
                          "status_cd": "PE"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "187c5dde-76cd-4ebf-9414-77fe66a47cf7"
                    }
                  },
                  "RET191353 The UQC entered is not valid": {
                    "summary": "RET191353 The UQC entered is not valid",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "error_report": {
                            "hsn": [
                              {
                                "chksum": "1a0926afb7f7392e4bb5484a453030a1f4b6098240aa4f55fc27369140ecbe0c",
                                "data": [
                                  {
                                    "camt": 0,
                                    "csamt": 0,
                                    "desc": "Fees",
                                    "hsn_sc": "998399",
                                    "iamt": 0.36,
                                    "num": 1,
                                    "qty": 0,
                                    "rt": 18,
                                    "samt": 0,
                                    "txval": 2,
                                    "uqc": "PCS"
                                  }
                                ],
                                "error_cd": "RET191353",
                                "error_msg": "The UQC entered is not valid"
                              }
                            ]
                          },
                          "form_typ": "R1",
                          "status_cd": "PE"
                        }
                      },
                      "timestamp": 1738754890000,
                      "transaction_id": "b725c670-72ca-4a69-a92b-3389d5285a36"
                    }
                  },
                  "RET191355 The Quantity entered is not valid": {
                    "summary": "RET191355 The Quantity entered is not valid",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "action": "SAVE",
                          "error_report": {
                            "hsn": [
                              {
                                "chksum": "945a8ab479b44ba81eb7972ab01c4da58ab82063ec537233c4b7267d57211ea3",
                                "data": [
                                  {
                                    "camt": 0,
                                    "csamt": 0,
                                    "desc": "Fees",
                                    "hsn_sc": "998399",
                                    "iamt": 0.36,
                                    "num": 1,
                                    "qty": 1,
                                    "rt": 18,
                                    "samt": 0,
                                    "txval": 2,
                                    "uqc": "NA"
                                  }
                                ],
                                "error_cd": "RET191355",
                                "error_msg": "The Quantity entered is not valid."
                              }
                            ]
                          },
                          "form_typ": "R1",
                          "status_cd": "PE"
                        }
                      },
                      "timestamp": 1738755264000,
                      "transaction_id": "e4f97a39-5860-418c-b041-4900e5d14f4c"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/preference": {
      "get": {
        "summary": "Get Preference",
        "deprecated": false,
        "description": "Get Preference",
        "operationId": "getPreference",
        "tags": [
          "Taxpayer",
          "Returns"
        ],
        "parameters": [
          {
            "name": "financial_year",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string",
              "example": "FY 2024-25"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetPreferenceResponse"
                },
                "examples": {
                  "Success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "response": [
                            {
                              "preference": "M",
                              "quarter": "Q1"
                            },
                            {
                              "preference": "M",
                              "quarter": "Q2"
                            },
                            {
                              "preference": "M",
                              "quarter": "Q3"
                            },
                            {
                              "preference": "M",
                              "quarter": "Q4"
                            }
                          ]
                        }
                      },
                      "timestamp": 1685540172000,
                      "transaction_id": "3733caed-31b1-45db-8cfa-0144afd983eb"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Save Preference",
        "deprecated": false,
        "description": "Get advance tax details for a return period for authenticated taxpayer",
        "operationId": "savePreference",
        "tags": [
          "Taxpayer",
          "Returns"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SavePreferenceRequest"
              },
              "examples": {
                "Success": {
                  "value": {
                    "fy": "2020-21",
                    "preference": "M",
                    "quarter": "Q2",
                    "gstin": "27COWPR1617C2ZN"
                  },
                  "summary": "Success"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SavePreferenceResponse"
                },
                "examples": {
                  "Success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "GSTN-EXEC2003",
                          "message": "Something seems to have gone wrong while processing your request. Please try again. If error persists quote error number GSTN-EXEC2003 when you contact customer care for quick resolution "
                        }
                      },
                      "timestamp": 1655494089128,
                      "transaction_id": "189071f9-671d-4f1d-a89e-55c19bec7002"
                    }
                  },
                  "Success 2": {
                    "summary": "Success 2",
                    "value": {
                      "code": 200,
                      "timestamp": 1655494089128,
                      "transaction_id": "189071f9-671d-4f1d-a89e-55c19bec7002",
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "Something seems to have gone wrong while processing your request. Please try again. \nIf error persists quote error number GSTN-EXEC2003 when you contact customer care for quick resolution ",
                          "error_cd": "GSTN-EXEC2003"
                        }
                      }
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/{gstr}/{year}/{month}/new-proceed": {
      "post": {
        "summary": "New Proceed to File",
        "deprecated": false,
        "description": "Authenticated tax payer can save entire GSTR-1 invoices by uploading json to GST portal",
        "operationId": "newProceedToFileGstr",
        "tags": [
          "Taxpayer",
          "Returns"
        ],
        "parameters": [
          {
            "name": "gstr",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "is_nil",
            "in": "query",
            "description": "For proceeding to file nil report Possible values: Y or N",
            "required": false,
            "schema": {
              "type": "string",
              "example": "Y"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / RET192409 GSTR-3B not filed / AUTH154 Invalid return type / RET00009 Return Form already filed",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NewProceedToFileGstrResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "897c98eb-7877-4252-934d-46cb3a86c51a"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "557c0450-7ca9-45f2-ba07-b8d104cbc8b2"
                    }
                  },
                  "AUTH154 Invalid return type": {
                    "summary": "AUTH154 Invalid return type",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "AUTH154",
                          "message": "Invalid Return Type"
                        }
                      },
                      "timestamp": 1734692202000,
                      "transaction_id": "b8df8bdc-2219-4c04-89ba-e85a76f34222"
                    }
                  },
                  "RET00009 Return Form already filed": {
                    "summary": "RET00009 Return Form already filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET00009",
                          "message": "Return Form already filed"
                        }
                      },
                      "timestamp": 1734694283000,
                      "transaction_id": "9b91308a-a98d-4fb3-a6ec-c08634fe933b"
                    }
                  },
                  "RET192409 GSTR-3B not filed": {
                    "summary": "RET192409 GSTR-3B not filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET192409",
                          "message": "As per Rule 59(6) of CGST Rules-2017, this GSTR-1/IFF cannot be Filed as GSTR-3B for March-2024 is not Filed. Records added shall continue to remain Saved. Please try again after filing pending GSTR-3B."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "76f3cdcc-ac11-4c40-94f8-7e8e0acb7dc7"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/{gstr}/{year}/{month}/proceed": {
      "post": {
        "summary": "Proceed to file",
        "deprecated": false,
        "description": "Proceed to file marks the return ready for filing. Post this EVC OTP can be generated for filing.",
        "operationId": "proceedToFileGstr",
        "tags": [
          "Taxpayer",
          "Returns"
        ],
        "parameters": [
          {
            "name": "gstr",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success / AUTH154 Invalid return type / RET00003 Return already ready to be filed",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProceedToFileGstrResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "reference_id": "897c98eb-7877-4252-934d-46cb3a86c51a"
                        }
                      },
                      "timestamp": 1685540073000,
                      "transaction_id": "cceee039-ceea-4db2-94c8-057b78180163"
                    }
                  },
                  "AUTH154 Invalid return type": {
                    "summary": "AUTH154 Invalid return type",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "AUTH154",
                          "message": "Invalid Return Type"
                        }
                      },
                      "timestamp": 1734692770000,
                      "transaction_id": "d457dc53-c8c2-4eb0-b8bc-bb04c9062b91"
                    }
                  },
                  "RET00003 Return already ready to be filed": {
                    "summary": "RET00003 Return already ready to be filed",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "RET00003",
                          "message": "Return Form already ready to be filed"
                        }
                      },
                      "timestamp": 1734952533000,
                      "transaction_id": "5e20f940-3bf4-45a3-99a3-c8a6f40ce18f"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/{year}/{month}/file-details/download": {
      "post": {
        "summary": "Download File Details Job",
        "deprecated": false,
        "description": "Download File Details Job",
        "operationId": "downloadFileDetailsJob",
        "tags": [
          "Taxpayer",
          "Returns"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "@entity": {
                    "type": "string",
                    "example": "in.co.sandbox.gst.compliance.taxpayer.file_details.request"
                  },
                  "token": {
                    "type": "string",
                    "example": "2123fdwdwt34464f3et6y5f46"
                  }
                }
              },
              "examples": {
                "200 job created": {
                  "value": {
                    "@entity": "in.co.sandbox.gst.compliance.taxpayer.file_details.request",
                    "token": "2123fdwdwt34464f3et6y5f46"
                  },
                  "summary": "200 job created"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success / 200 job created",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string",
                          "example": "in.co.sandbox.gst.compliance.taxpayer.file_details.job"
                        },
                        "created_at": {
                          "type": "number",
                          "example": 1756068627637
                        },
                        "error": {
                          "type": "object",
                          "properties": {
                            "error_cd": {
                              "type": "string",
                              "example": "RET13508"
                            },
                            "message": {
                              "type": "string",
                              "example": "No Details Found for the Provided Inputs"
                            }
                          }
                        },
                        "job_id": {
                          "type": "string",
                          "example": "c408ff9d-e207-4fc6-babf-c51acdee06ed"
                        },
                        "month": {
                          "type": "string",
                          "example": "05"
                        },
                        "status": {
                          "type": "string",
                          "example": "created"
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "0"
                        },
                        "token": {
                          "type": "string",
                          "example": "2123fdwdwt34464f3et6y5f46"
                        },
                        "year": {
                          "type": "string",
                          "example": "2025"
                        }
                      }
                    },
                    "timestamp": {
                      "anyOf": [
                        {
                          "type": "string",
                          "example": "1685540620000"
                        },
                        {
                          "type": "number",
                          "example": 1756068623986
                        }
                      ],
                      "example": "1685540620000"
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "bd42a442-0aea-47e9-84f6-190f8792e664"
                    }
                  }
                },
                "examples": {
                  "200 job created": {
                    "summary": "200 job created",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.taxpayer.file_details.job",
                        "created_at": 1756068627637,
                        "job_id": "c408ff9d-e207-4fc6-babf-c51acdee06ed",
                        "month": "05",
                        "status": "created",
                        "token": "2123fdwdwt34464f3et6y5f46",
                        "year": "2025"
                      },
                      "timestamp": 1756068623986,
                      "transaction_id": "6223cd83-9307-4c97-98cf-bd099c636bb2"
                    }
                  },
                  "Success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_cd": "RET13508",
                          "message": "No Details Found for the Provided Inputs"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": "1685540620000",
                      "transaction_id": "bd42a442-0aea-47e9-84f6-190f8792e664"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/gstrs/file-details/download": {
      "get": {
        "summary": "Download File Details Job Status",
        "deprecated": false,
        "description": "Download File Details Job Status",
        "operationId": "downloadFileDetailsJobStatus",
        "tags": [
          "Taxpayer",
          "Returns"
        ],
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{job_id}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "error": {
                          "type": "object",
                          "properties": {
                            "error_cd": {
                              "type": "string",
                              "example": "RET13508"
                            },
                            "message": {
                              "type": "string",
                              "example": "No Details Found for the Provided Inputs"
                            }
                          }
                        },
                        "status_cd": {
                          "type": "string",
                          "example": "0"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "string",
                      "example": "1685540620000"
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "bd42a442-0aea-47e9-84f6-190f8792e664"
                    }
                  }
                },
                "examples": {
                  "Success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_cd": "RET13508",
                          "message": "No Details Found for the Provided Inputs"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": "1685540620000",
                      "transaction_id": "bd42a442-0aea-47e9-84f6-190f8792e664"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/ledgers/bal/{year}/{month}": {
      "get": {
        "summary": "Cash ITC Balance",
        "deprecated": false,
        "description": "Get balance for ITC and Cash as on date for authenticated taxpayer",
        "operationId": "getCashItcBalance",
        "tags": [
          "Taxpayer",
          "Ledgers"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCashItcBalanceResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cash_bal": {
                            "cess": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tx": 0
                            },
                            "cess_tot_bal": 0,
                            "cgst": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tx": 0
                            },
                            "cgst_tot_bal": 0,
                            "igst": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tx": 0
                            },
                            "igst_tot_bal": 0,
                            "sgst": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tx": 0
                            },
                            "sgst_tot_bal": 0
                          },
                          "gstin": "29AAACQ3770E000",
                          "itc_bal": {
                            "cess_bal": 0,
                            "cgst_bal": 0,
                            "igst_bal": 0,
                            "sgst_bal": 0
                          },
                          "itc_blck_bal": {
                            "cess_blck_bal": 0,
                            "cgst_blck_bal": 0,
                            "igst_blck_bal": 0,
                            "sgst_blck_bal": 0
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "401d25c5-c6bf-47c3-a7f2-7e396c7ca331"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/ledgers/cash": {
      "get": {
        "summary": "Cash Ledger",
        "deprecated": false,
        "description": "Get Cash Ledger for the specified period for authenticated taxpayer",
        "operationId": "getCashLedger",
        "tags": [
          "Taxpayer",
          "Ledgers"
        ],
        "parameters": [
          {
            "name": "to",
            "in": "query",
            "description": "`required` To Date (DD/MM/YYYY)",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{to_date}}"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "From Date (DD/MM/YYYY)",
            "required": false,
            "schema": {
              "type": "string",
              "example": "{{from_date}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "LG9089 To date cannot be beyond the current date / 200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCashLedgerResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cl_bal": {
                            "cessbal": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tot": 0,
                              "tx": 0
                            },
                            "cgstbal": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tot": 0,
                              "tx": 0
                            },
                            "desc": "Closing Balance",
                            "igstbal": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tot": 0,
                              "tx": 0
                            },
                            "sgstbal": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tot": 0,
                              "tx": 0
                            },
                            "tot_rng_bal": 0
                          },
                          "fr_dt": "01/04/2024",
                          "gstin": "24AAACQ3770E1ZP",
                          "op_bal": {
                            "cessbal": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tot": 0,
                              "tx": 0
                            },
                            "cgstbal": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tot": 0,
                              "tx": 0
                            },
                            "desc": "Opening Balance",
                            "igstbal": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tot": 0,
                              "tx": 0
                            },
                            "sgstbal": {
                              "fee": 0,
                              "intr": 0,
                              "oth": 0,
                              "pen": 0,
                              "tot": 0,
                              "tx": 0
                            },
                            "tot_rng_bal": 0
                          },
                          "to_dt": "11/04/2024",
                          "tr": []
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "01459da0-b84b-4aab-9867-bb84e8c67348"
                    }
                  },
                  "LG9089 To date cannot be beyond the current date": {
                    "summary": "LG9089 To date cannot be beyond the current date",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "LG9089",
                          "message": "To Date cannot be beyond the current date"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6fd2b813-bc69-40cf-a033-2d4f319ef728"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/ledgers/itc": {
      "get": {
        "summary": "ITC Ledger",
        "deprecated": false,
        "description": "Get ITC Ledger for the specified period for authenticated taxpayer",
        "operationId": "getItcLedger",
        "tags": [
          "Taxpayer",
          "Ledgers"
        ],
        "parameters": [
          {
            "name": "to",
            "in": "query",
            "description": "`required` To Date (DD/MM/YYYY)",
            "required": true,
            "schema": {
              "type": "string",
              "example": "01/01/2024"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "From Date (DD/MM/YYYY)",
            "required": true,
            "schema": {
              "type": "string",
              "example": "01/01/2023"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItcLedgerResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "itcLdgDtls": {
                            "cl_bal": {
                              "cessTaxBal": 0,
                              "cgstTaxBal": 6161,
                              "desc": "Closing Balance",
                              "igstTaxBal": 40376,
                              "sgstTaxBal": 6161,
                              "tot_rng_bal": 52698
                            },
                            "fr_dt": "01/01/2023",
                            "gstin": "29AAACQ3770E000",
                            "op_bal": {
                              "cessTaxBal": 0,
                              "cgstTaxBal": 0,
                              "desc": "Opening Balance",
                              "igstTaxBal": 0,
                              "sgstTaxBal": 0,
                              "tot_rng_bal": 0
                            },
                            "to_dt": "01/01/2024",
                            "tr": [
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 21150,
                                "cgstTaxBal": 21150,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "19/01/2023",
                                "igstTaxAmt": 279760,
                                "igstTaxBal": 279760,
                                "ref_no": "AB241222611372T",
                                "ret_period": "122022",
                                "sgstTaxAmt": 21150,
                                "sgstTaxBal": 21150,
                                "tot_rng_bal": 322060,
                                "tot_tr_amt": 322060,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 21150,
                                "cgstTaxBal": 0,
                                "desc": "Other than reverse charge",
                                "dt": "19/01/2023",
                                "igstTaxAmt": 279760,
                                "igstTaxBal": 0,
                                "ref_no": "DI2401230352830",
                                "ret_period": "122022",
                                "sgstTaxAmt": 21150,
                                "sgstTaxBal": 0,
                                "tot_rng_bal": 0,
                                "tot_tr_amt": 322060,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 4586,
                                "cgstTaxBal": 4586,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "21/02/2023",
                                "igstTaxAmt": 220257,
                                "igstTaxBal": 220257,
                                "ref_no": "AB240123483550I",
                                "ret_period": "012023",
                                "sgstTaxAmt": 4586,
                                "sgstTaxBal": 4586,
                                "tot_rng_bal": 229429,
                                "tot_tr_amt": 229429,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 4586,
                                "cgstTaxBal": 0,
                                "desc": "Other than reverse charge",
                                "dt": "21/02/2023",
                                "igstTaxAmt": 220257,
                                "igstTaxBal": 0,
                                "ref_no": "DI2402230412202",
                                "ret_period": "012023",
                                "sgstTaxAmt": 4586,
                                "sgstTaxBal": 0,
                                "tot_rng_bal": 0,
                                "tot_tr_amt": 229429,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 4224,
                                "cgstTaxBal": 4224,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "20/03/2023",
                                "igstTaxAmt": 185142,
                                "igstTaxBal": 185142,
                                "ref_no": "AB240223349643C",
                                "ret_period": "022023",
                                "sgstTaxAmt": 4224,
                                "sgstTaxBal": 4224,
                                "tot_rng_bal": 193590,
                                "tot_tr_amt": 193590,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 4224,
                                "cgstTaxBal": 0,
                                "desc": "Other than reverse charge",
                                "dt": "20/03/2023",
                                "igstTaxAmt": 185142,
                                "igstTaxBal": 0,
                                "ref_no": "DI2403230337205",
                                "ret_period": "022023",
                                "sgstTaxAmt": 4224,
                                "sgstTaxBal": 0,
                                "tot_rng_bal": 0,
                                "tot_tr_amt": 193590,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 4626,
                                "cgstTaxBal": 4626,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "21/04/2023",
                                "igstTaxAmt": 194395,
                                "igstTaxBal": 194395,
                                "ref_no": "AB240323888367U",
                                "ret_period": "032023",
                                "sgstTaxAmt": 4626,
                                "sgstTaxBal": 4626,
                                "tot_rng_bal": 203647,
                                "tot_tr_amt": 203647,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 4626,
                                "cgstTaxBal": 0,
                                "desc": "Other than reverse charge",
                                "dt": "21/04/2023",
                                "igstTaxAmt": 194395,
                                "igstTaxBal": 0,
                                "ref_no": "DI2404230541619",
                                "ret_period": "032023",
                                "sgstTaxAmt": 4626,
                                "sgstTaxBal": 0,
                                "tot_rng_bal": 0,
                                "tot_tr_amt": 203647,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 10186,
                                "cgstTaxBal": 10186,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "19/05/2023",
                                "igstTaxAmt": 145676,
                                "igstTaxBal": 145676,
                                "ref_no": "AB240423268369Y",
                                "ret_period": "042023",
                                "sgstTaxAmt": 10186,
                                "sgstTaxBal": 10186,
                                "tot_rng_bal": 166048,
                                "tot_tr_amt": 166048,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 0,
                                "cgstTaxBal": 10186,
                                "desc": "Other than reverse charge",
                                "dt": "19/05/2023",
                                "igstTaxAmt": 107278,
                                "igstTaxBal": 38398,
                                "ref_no": "DI2405230279921",
                                "ret_period": "042023",
                                "sgstTaxAmt": 0,
                                "sgstTaxBal": 10186,
                                "tot_rng_bal": 58770,
                                "tot_tr_amt": 107278,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 3789,
                                "cgstTaxBal": 13975,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "20/06/2023",
                                "igstTaxAmt": 75088,
                                "igstTaxBal": 113486,
                                "ref_no": "AB240523404683E",
                                "ret_period": "052023",
                                "sgstTaxAmt": 3789,
                                "sgstTaxBal": 13975,
                                "tot_rng_bal": 141436,
                                "tot_tr_amt": 82666,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 0,
                                "cgstTaxBal": 13975,
                                "desc": "Other than reverse charge",
                                "dt": "20/06/2023",
                                "igstTaxAmt": 38902,
                                "igstTaxBal": 74584,
                                "ref_no": "DI2406230318105",
                                "ret_period": "052023",
                                "sgstTaxAmt": 0,
                                "sgstTaxBal": 13975,
                                "tot_rng_bal": 102534,
                                "tot_tr_amt": 38902,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 10612,
                                "cgstTaxBal": 24587,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "20/07/2023",
                                "igstTaxAmt": 62424,
                                "igstTaxBal": 137008,
                                "ref_no": "AB240623763835V",
                                "ret_period": "062023",
                                "sgstTaxAmt": 10612,
                                "sgstTaxBal": 24587,
                                "tot_rng_bal": 186182,
                                "tot_tr_amt": 83648,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 24587,
                                "cgstTaxBal": 0,
                                "desc": "Other than reverse charge",
                                "dt": "20/07/2023",
                                "igstTaxAmt": 137008,
                                "igstTaxBal": 0,
                                "ref_no": "DI2407230436575",
                                "ret_period": "062023",
                                "sgstTaxAmt": 24587,
                                "sgstTaxBal": 0,
                                "tot_rng_bal": 0,
                                "tot_tr_amt": 186182,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 107060,
                                "cgstTaxBal": 107060,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "19/08/2023",
                                "igstTaxAmt": 274929,
                                "igstTaxBal": 274929,
                                "ref_no": "AB240723332901D",
                                "ret_period": "072023",
                                "sgstTaxAmt": 107060,
                                "sgstTaxBal": 107060,
                                "tot_rng_bal": 489049,
                                "tot_tr_amt": 489049,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 107060,
                                "cgstTaxBal": 0,
                                "desc": "Other than reverse charge",
                                "dt": "19/08/2023",
                                "igstTaxAmt": 274929,
                                "igstTaxBal": 0,
                                "ref_no": "DI2408230327783",
                                "ret_period": "072023",
                                "sgstTaxAmt": 107060,
                                "sgstTaxBal": 0,
                                "tot_rng_bal": 0,
                                "tot_tr_amt": 489049,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 12160,
                                "cgstTaxBal": 12160,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "20/09/2023",
                                "igstTaxAmt": 75109,
                                "igstTaxBal": 75109,
                                "ref_no": "AB240823420839X",
                                "ret_period": "082023",
                                "sgstTaxAmt": 12160,
                                "sgstTaxBal": 12160,
                                "tot_rng_bal": 99429,
                                "tot_tr_amt": 99429,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 12160,
                                "cgstTaxBal": 0,
                                "desc": "Other than reverse charge",
                                "dt": "20/09/2023",
                                "igstTaxAmt": 75109,
                                "igstTaxBal": 0,
                                "ref_no": "DI2409230367302",
                                "ret_period": "082023",
                                "sgstTaxAmt": 12160,
                                "sgstTaxBal": 0,
                                "tot_rng_bal": 0,
                                "tot_tr_amt": 99429,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 11574,
                                "cgstTaxBal": 11574,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "20/10/2023",
                                "igstTaxAmt": 60039,
                                "igstTaxBal": 60039,
                                "ref_no": "AB2409239233157",
                                "ret_period": "092023",
                                "sgstTaxAmt": 11574,
                                "sgstTaxBal": 11574,
                                "tot_rng_bal": 83187,
                                "tot_tr_amt": 83187,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 11574,
                                "cgstTaxBal": 0,
                                "desc": "Other than reverse charge",
                                "dt": "20/10/2023",
                                "igstTaxAmt": 60039,
                                "igstTaxBal": 0,
                                "ref_no": "DI2410230565591",
                                "ret_period": "092023",
                                "sgstTaxAmt": 11574,
                                "sgstTaxBal": 0,
                                "tot_rng_bal": 0,
                                "tot_tr_amt": 83187,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 3135,
                                "cgstTaxBal": 3135,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "20/11/2023",
                                "igstTaxAmt": 107711,
                                "igstTaxBal": 107711,
                                "ref_no": "AB241023235025W",
                                "ret_period": "102023",
                                "sgstTaxAmt": 3135,
                                "sgstTaxBal": 3135,
                                "tot_rng_bal": 113981,
                                "tot_tr_amt": 113981,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 0,
                                "cgstTaxBal": 3135,
                                "desc": "Other than reverse charge",
                                "dt": "20/11/2023",
                                "igstTaxAmt": 54790,
                                "igstTaxBal": 52921,
                                "ref_no": "DI2411230247247",
                                "ret_period": "102023",
                                "sgstTaxAmt": 0,
                                "sgstTaxBal": 3135,
                                "tot_rng_bal": 59191,
                                "tot_tr_amt": 54790,
                                "tr_typ": "Dr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 3026,
                                "cgstTaxBal": 6161,
                                "desc": "ITC accrued through - Inputs",
                                "dt": "18/12/2023",
                                "igstTaxAmt": 9179,
                                "igstTaxBal": 62100,
                                "ref_no": "AB241123065466C",
                                "ret_period": "112023",
                                "sgstTaxAmt": 3026,
                                "sgstTaxBal": 6161,
                                "tot_rng_bal": 74422,
                                "tot_tr_amt": 15231,
                                "tr_typ": "Cr"
                              },
                              {
                                "cessTaxAmt": 0,
                                "cessTaxBal": 0,
                                "cgstTaxAmt": 0,
                                "cgstTaxBal": 6161,
                                "desc": "Other than reverse charge",
                                "dt": "18/12/2023",
                                "igstTaxAmt": 21724,
                                "igstTaxBal": 40376,
                                "ref_no": "DI2412230154798",
                                "ret_period": "112023",
                                "sgstTaxAmt": 0,
                                "sgstTaxBal": 6161,
                                "tot_rng_bal": 52698,
                                "tot_tr_amt": 21724,
                                "tr_typ": "Dr"
                              }
                            ]
                          },
                          "provCrdBalList": {
                            "provCrdBal": []
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4b2f229e-b771-4011-9290-a1d715fa80ec"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/ledgers/tax/{year}/{month}": {
      "get": {
        "summary": "Return Liability Ledger",
        "deprecated": false,
        "description": "Get ITC Ledger for the specified period for authenticated taxpayer",
        "operationId": "getReturnLiabilityLedger",
        "tags": [
          "Taxpayer",
          "Ledgers"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "to",
            "in": "query",
            "description": "To Date (DD/MM/YYYY)",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "From Date (DD/MM/YYYY)",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetReturnLiabilityLedgerResponse"
                },
                "examples": {
                  "Success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "cl_bal": {
                            "cessbal": {
                              "fee": 1,
                              "intr": 1,
                              "oth": 1,
                              "pen": 1,
                              "tot": 6,
                              "tx": 1
                            },
                            "cgstbal": {
                              "fee": 1,
                              "intr": 1,
                              "oth": 1,
                              "pen": 1,
                              "tot": 6,
                              "tx": 1
                            },
                            "desc": "Closing Balance",
                            "igstbal": {
                              "fee": 1,
                              "intr": 1,
                              "oth": 1,
                              "pen": 1,
                              "tot": 6,
                              "tx": 1
                            },
                            "sgstbal": {
                              "fee": 1,
                              "intr": 1,
                              "oth": 1,
                              "pen": 1,
                              "tot": 6,
                              "tx": 1
                            },
                            "tot_rng_bal": 24
                          },
                          "fr_dt": "092018",
                          "gstin": "06AAAAA0000A1Z6",
                          "to_dt": "122018",
                          "tr": [
                            {
                              "cess": {
                                "fee": 2,
                                "intr": 2,
                                "oth": 2,
                                "pen": 2,
                                "tot": 12,
                                "tx": 2
                              },
                              "cessbal": {
                                "fee": 2,
                                "intr": 2,
                                "oth": 2,
                                "pen": 2,
                                "tot": 12,
                                "tx": 2
                              },
                              "cgst": {
                                "fee": 2,
                                "intr": 2,
                                "oth": 2,
                                "pen": 2,
                                "tot": 12,
                                "tx": 2
                              },
                              "cgstbal": {
                                "fee": 2,
                                "intr": 2,
                                "oth": 2,
                                "pen": 2,
                                "tot": 12,
                                "tx": 2
                              },
                              "desc": "Other than reverse charge",
                              "dschrg_typ": "",
                              "dt": "09/03/2017",
                              "igst": {
                                "fee": 2,
                                "intr": 2,
                                "oth": 2,
                                "pen": 2,
                                "tot": 12,
                                "tx": 2
                              },
                              "igstbal": {
                                "fee": 2,
                                "intr": 2,
                                "oth": 2,
                                "pen": 2,
                                "tot": 12,
                                "tx": 2
                              },
                              "ref_no": "AM051216747183N",
                              "sgst": {
                                "fee": 2,
                                "intr": 2,
                                "oth": 2,
                                "pen": 2,
                                "tot": 12,
                                "tx": 2
                              },
                              "sgstbal": {
                                "fee": 2,
                                "intr": 2,
                                "oth": 2,
                                "pen": 2,
                                "tot": 12,
                                "tx": 2
                              },
                              "tot_rng_bal": 48,
                              "tot_tr_amt": 48,
                              "tr_typ": "Dr"
                            },
                            {
                              "cess": {
                                "fee": 1,
                                "intr": 1,
                                "oth": 1,
                                "pen": 1,
                                "tot": 6,
                                "tx": 1
                              },
                              "cessbal": {
                                "fee": 1,
                                "intr": 1,
                                "oth": 1,
                                "pen": 1,
                                "tot": 6,
                                "tx": 1
                              },
                              "cgst": {
                                "fee": 1,
                                "intr": 1,
                                "oth": 1,
                                "pen": 1,
                                "tot": 6,
                                "tx": 1
                              },
                              "cgstbal": {
                                "fee": 1,
                                "intr": 1,
                                "oth": 1,
                                "pen": 1,
                                "tot": 6,
                                "tx": 1
                              },
                              "desc": "Other than reverse charge",
                              "dschrg_typ": "credit",
                              "dt": "10/03/2017",
                              "igst": {
                                "fee": 1,
                                "intr": 1,
                                "oth": 1,
                                "pen": 1,
                                "tot": 6,
                                "tx": 1
                              },
                              "igstbal": {
                                "fee": 1,
                                "intr": 1,
                                "oth": 1,
                                "pen": 1,
                                "tot": 6,
                                "tx": 1
                              },
                              "ref_no": "DI0506170000004",
                              "sgst": {
                                "fee": 1,
                                "intr": 1,
                                "oth": 1,
                                "pen": 1,
                                "tot": 6,
                                "tx": 1
                              },
                              "sgstbal": {
                                "fee": 1,
                                "intr": 1,
                                "oth": 1,
                                "pen": 1,
                                "tot": 6,
                                "tx": 1
                              },
                              "tot_rng_bal": 24,
                              "tot_tr_amt": 24,
                              "tr_typ": "Cr"
                            },
                            {
                              "cess": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "cessbal": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "cgst": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "cgstbal": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "desc": "Negative liability adjusted in GSTR3B Other than reverse charge",
                              "dschrg_typ": "credit",
                              "dt": "10/03/2017",
                              "igst": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "igstbal": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "ref_no": "DI0506170000004",
                              "sgst": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "sgstbal": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "tot_rng_bal": 24,
                              "tot_tr_amt": 24,
                              "tr_typ": "Cr"
                            },
                            {
                              "cess": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "cessbal": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "cgst": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "cgstbal": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "desc": "Negative liability adjusted in GSTR3B reverse charge",
                              "dschrg_typ": "credit",
                              "dt": "10/03/2017",
                              "igst": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "igstbal": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "ref_no": "DI0506170000004",
                              "sgst": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "sgstbal": {
                                "fee": 0,
                                "intr": 0,
                                "oth": 0,
                                "pen": 0,
                                "tot": 0,
                                "tx": 1000
                              },
                              "tot_rng_bal": 24,
                              "tot_tr_amt": 24,
                              "tr_typ": "Cr"
                            }
                          ]
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "66b13aa7-f255-447c-bc68-997f2a54a278"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/e-invoices/{year}/{month}/sales": {
      "get": {
        "summary": "Poll Job",
        "deprecated": false,
        "description": "",
        "operationId": "listSalesEInvoicesJobStatus",
        "tags": [
          "Taxpayer",
          "e-Invoice",
          "Sales e-Invoices for return period"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "job_id",
            "in": "query",
            "description": "Job id",
            "required": true,
            "example": "{{job_id}}",
            "schema": {
              "type": "string",
              "example": "{{job_id}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Job succeeded / EINV30113 Invalid Return Period",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string",
                          "example": "in.co.sandbox.gst.compliance.e-invoice.list.job"
                        },
                        "created_at": {
                          "type": "number",
                          "example": 1763446641000
                        },
                        "data": {
                          "type": "object",
                          "properties": {
                            "error": {
                              "type": "object",
                              "properties": {
                                "error_cd": {
                                  "type": "string",
                                  "example": "EINV30113"
                                },
                                "message": {
                                  "type": "string",
                                  "example": "Invalid Return Period"
                                }
                              }
                            },
                            "status_cd": {
                              "type": "string",
                              "example": "0"
                            }
                          }
                        },
                        "e-invoice_list_url": {
                          "type": "string",
                          "example": "https://example.com/e-invoice-list.json"
                        },
                        "job_id": {
                          "type": "string",
                          "example": "6ac134f4-0ad3-4b76-8a79-41f817419c29"
                        },
                        "month": {
                          "type": "string",
                          "example": "10"
                        },
                        "status": {
                          "type": "string",
                          "example": "succeeded"
                        },
                        "supplier_gstin": {
                          "type": "string",
                          "example": "29AAACQ3770E000"
                        },
                        "supply_type": {
                          "type": "string",
                          "example": "B2B"
                        },
                        "updated_at": {
                          "type": "number",
                          "example": 1763446641000
                        },
                        "year": {
                          "type": "string",
                          "example": "2024"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "b15b991d-0051-4aa6-9d8a-c506b8712724"
                    }
                  }
                },
                "examples": {
                  "200 Job succeeded": {
                    "summary": "200 Job succeeded",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.list.job",
                        "created_at": 1763446641000,
                        "e-invoice_list_url": "https://example.com/e-invoice-list.json",
                        "job_id": "6ac134f4-0ad3-4b76-8a79-41f817419c29",
                        "month": "10",
                        "status": "succeeded",
                        "supplier_gstin": "29AAACQ3770E000",
                        "supply_type": "B2B",
                        "updated_at": 1763446641000,
                        "year": "2024"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "b15b991d-0051-4aa6-9d8a-c506b8712724"
                    }
                  },
                  "EINV30113 Invalid Return Period": {
                    "summary": "EINV30113 Invalid Return Period",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.list.job",
                        "created_at": 1732267681343,
                        "data": {
                          "error": {
                            "error_cd": "EINV30113",
                            "message": "Invalid Return Period"
                          },
                          "status_cd": "0"
                        },
                        "job_id": "8ef96cc1-fc48-4d58-91ca-268b55aaeabb",
                        "month": "10",
                        "status": "failed",
                        "supplier_gstin": "33ABKCS2033B1ZW",
                        "supply_type": "B2B",
                        "updated_at": 1732267704160,
                        "year": "2023"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "fd63998e-91e9-4ad6-a739-27459b984a7d"
                    }
                  },
                  "200 Job succeeded 2": {
                    "summary": "200 Job succeeded 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "month": "10",
                        "e-invoice_list_url": "https://example.com/e-invoice-list.json",
                        "year": "2024",
                        "job_id": "6ac134f4-0ad3-4b76-8a79-41f817419c29",
                        "supply_type": "B2B",
                        "supplier_gstin": "29AAACQ3770E000",
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.list.job",
                        "status": "succeeded",
                        "created_at": 1776921876217,
                        "updated_at": 1776921876217
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Submit Job",
        "deprecated": false,
        "description": "",
        "operationId": "listSalesEInvoicesJob",
        "tags": [
          "Taxpayer",
          "e-Invoice",
          "Sales e-Invoices for return period"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "supply_type",
            "in": "query",
            "description": "Supply type. E.g. B2B, SEZWP, SEZWOP, DEXP, EXPWP, EXPWOP",
            "required": true,
            "schema": {
              "type": "string",
              "example": "B2B"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Job created",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string",
                          "example": "in.co.sandbox.gst.compliance.e-invoice.list.job"
                        },
                        "job_id": {
                          "type": "string",
                          "example": "6ac134f4-0ad3-4b76-8a79-41f817419c29"
                        },
                        "month": {
                          "type": "string",
                          "example": "10"
                        },
                        "status": {
                          "type": "string",
                          "example": "created"
                        },
                        "supplier_gstin": {
                          "type": "string",
                          "example": "29AAACQ3770E000"
                        },
                        "supply_type": {
                          "type": "string",
                          "example": "B2B"
                        },
                        "year": {
                          "type": "string",
                          "example": "2024"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "56083b39-02bc-41f8-951a-6269df5c3410"
                    }
                  }
                },
                "examples": {
                  "200 Job created": {
                    "summary": "200 Job created",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.list.job",
                        "job_id": "6ac134f4-0ad3-4b76-8a79-41f817419c29",
                        "month": "10",
                        "status": "created",
                        "supplier_gstin": "29AAACQ3770E000",
                        "supply_type": "B2B",
                        "year": "2024"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "56083b39-02bc-41f8-951a-6269df5c3410"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/e-invoices/{year}/{month}/purchases": {
      "get": {
        "summary": "Poll Job",
        "deprecated": false,
        "description": "",
        "operationId": "listPurchaseEInvoicesJobStatus",
        "tags": [
          "Taxpayer",
          "e-Invoice",
          "Purchase e-Invoices for return period"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{year}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "{{month}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "job_id",
            "in": "query",
            "description": "Job id",
            "required": true,
            "example": "{{job_id}}",
            "schema": {
              "type": "string",
              "example": "{{job_id}}"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Job succeeded / EINV30113 Invalid Return Period",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string",
                          "example": "in.co.sandbox.gst.compliance.e-invoice.list.job"
                        },
                        "created_at": {
                          "type": "number",
                          "example": 1763446641000
                        },
                        "data": {
                          "type": "object",
                          "properties": {
                            "error": {
                              "type": "object",
                              "properties": {
                                "error_cd": {
                                  "type": "string",
                                  "example": "EINV30113"
                                },
                                "message": {
                                  "type": "string",
                                  "example": "Invalid Return Period"
                                }
                              }
                            },
                            "status_cd": {
                              "type": "string",
                              "example": "0"
                            }
                          }
                        },
                        "e-invoice_list_url": {
                          "type": "string",
                          "example": "https://example.com/e-invoice-list.json"
                        },
                        "job_id": {
                          "type": "string",
                          "example": "412a22ee-2096-4ead-b06b-55143f560903"
                        },
                        "month": {
                          "type": "string",
                          "example": "10"
                        },
                        "recipient_gstin": {
                          "type": "string",
                          "example": "29AAACQ3770E000"
                        },
                        "status": {
                          "type": "string",
                          "example": "succeeded"
                        },
                        "supply_type": {
                          "type": "string",
                          "example": "B2B"
                        },
                        "updated_at": {
                          "type": "number",
                          "example": 1763446641000
                        },
                        "year": {
                          "type": "string",
                          "example": "2024"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "e7512543-c7c8-40b3-a5c6-10a779490ec6"
                    }
                  }
                },
                "examples": {
                  "200 Job succeeded": {
                    "summary": "200 Job succeeded",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.list.job",
                        "created_at": 1763446641000,
                        "e-invoice_list_url": "https://example.com/e-invoice-list.json",
                        "job_id": "412a22ee-2096-4ead-b06b-55143f560903",
                        "month": "10",
                        "recipient_gstin": "29AAACQ3770E000",
                        "status": "succeeded",
                        "supply_type": "B2B",
                        "updated_at": 1763446641000,
                        "year": "2024"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e7512543-c7c8-40b3-a5c6-10a779490ec6"
                    }
                  },
                  "EINV30113 Invalid Return Period": {
                    "summary": "EINV30113 Invalid Return Period",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.list.job",
                        "created_at": 1732263110272,
                        "data": {
                          "error": {
                            "error_cd": "EINV30113",
                            "message": "Invalid Return Period"
                          },
                          "status_cd": "0"
                        },
                        "job_id": "ade09a25-e12a-4ecc-8595-c428c9b8d482",
                        "month": "12",
                        "recipient_gstin": "33ABKCS2033B1ZW",
                        "status": "failed",
                        "supply_type": "B2B",
                        "updated_at": 1732263122998,
                        "year": "2023"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "40308eeb-05b0-43b4-8cec-202ebebcc552"
                    }
                  },
                  "200 Job succeeded 2": {
                    "summary": "200 Job succeeded 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "month": "10",
                        "e-invoice_list_url": "https://example.com/e-invoice-list.json",
                        "year": "2024",
                        "job_id": "412a22ee-2096-4ead-b06b-55143f560903",
                        "supply_type": "B2B",
                        "recipient_gstin": "29AAACQ3770E000",
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.list.job",
                        "status": "succeeded",
                        "created_at": 1776921876217,
                        "updated_at": 1776921876217
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Submit Job",
        "deprecated": false,
        "description": "",
        "operationId": "listPurchaseEInvoicesJob",
        "tags": [
          "Taxpayer",
          "e-Invoice",
          "Purchase e-Invoices for return period"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "supply_type",
            "in": "query",
            "description": "Supply type. E.g. B2B, SEZWP, SEZWOP, DEXP, EXPWP, EXPWOP",
            "required": true,
            "schema": {
              "type": "string",
              "example": "B2B"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Job created",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string",
                          "example": "in.co.sandbox.gst.compliance.e-invoice.list.job"
                        },
                        "job_id": {
                          "type": "string",
                          "example": "412a22ee-2096-4ead-b06b-55143f560903"
                        },
                        "month": {
                          "type": "string",
                          "example": "10"
                        },
                        "recipient_gstin": {
                          "type": "string",
                          "example": "29AAACQ3770E000"
                        },
                        "status": {
                          "type": "string",
                          "example": "created"
                        },
                        "supply_type": {
                          "type": "string",
                          "example": "B2B"
                        },
                        "year": {
                          "type": "string",
                          "example": "2024"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "0a5ff87f-74a9-479f-a219-add60764d1ae"
                    }
                  }
                },
                "examples": {
                  "200 Job created": {
                    "summary": "200 Job created",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.list.job",
                        "job_id": "412a22ee-2096-4ead-b06b-55143f560903",
                        "month": "10",
                        "recipient_gstin": "29AAACQ3770E000",
                        "status": "created",
                        "supply_type": "B2B",
                        "year": "2024"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "0a5ff87f-74a9-479f-a219-add60764d1ae"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/e-invoice/{irn}": {
      "get": {
        "summary": "Get E-Invoice by IRN",
        "deprecated": false,
        "description": "",
        "operationId": "getEInvoiceByIrn",
        "tags": [
          "Taxpayer",
          "e-Invoice"
        ],
        "parameters": [
          {
            "name": "irn",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the [Generate Taxpayer Session](/recipes/gst/authentication/generate_tax_payer_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 E-Invoice fetched / 200 EINV30118 Record not found / 200 EINV30119 E-Invoice older than 6 months",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetEInvoiceByIrnResponse"
                },
                "examples": {
                  "200 EINV30118 Record not found": {
                    "summary": "200 EINV30118 Record not found",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "EINV30118",
                          "message": "No record found."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "d4a49c94-da0f-403c-8195-ebc172f77df2"
                    }
                  },
                  "200 EINV30119 e-Invoice older than 6 months": {
                    "summary": "200 EINV30119 e-Invoice older than 6 months",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "error_cd": "EINV30119",
                          "message": "Please enter an IRN which is not older than six months."
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "2d60636e-67ee-40c3-9bc3-0a3ad15f9a1b"
                    }
                  },
                  "200 e-Invoice fetched": {
                    "summary": "200 e-Invoice fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "RequestDate": "2024-11-14 13:31:05",
                          "data": {
                            "AckDt": "2024-02-22 17:42:00",
                            "AckNo": 112410188589976,
                            "Irn": "7859346583894f8602c10f5a1d4a40265c90824ad63ba999f04836a57aa70e7c",
                            "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1ODk5NzYsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMiAxNzo0MjowMFwiLFwiSXJuXCI6XCI3ODU5MzQ2NTgzODk0Zjg2MDJjMTBmNWExZDRhNDAyNjVjOTA4MjRhZDYzYmE5OTlmMDQ4MzZhNTdhYTcwZTdjXCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzExMVwiLFwiRHRcIjpcIjAxLzAxLzIwMjRcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiSXRlbUxpc3RcIjpbe1wiSXRlbU5vXCI6MCxcIlNsTm9cIjpcIjFcIixcIklzU2VydmNcIjpcIllcIixcIlByZERlc2NcIjpcIkFQSSBBY2Nlc3NcIixcIkhzbkNkXCI6XCI5OTgzMTRcIixcIlF0eVwiOjEsXCJGcmVlUXR5XCI6MCxcIlVuaXRcIjpcIkJBR1wiLFwiVW5pdFByaWNlXCI6OTk5LFwiVG90QW10XCI6ODQ2LjYyLFwiUHJlVGF4VmFsXCI6ODQ2LjYyLFwiQXNzQW10XCI6ODQ2LjYyLFwiR3N0UnRcIjoxOCxcIklnc3RBbXRcIjoxNTIuMzgsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiVG90SXRlbVZhbFwiOjk5OX1dLFwiVmFsRHRsc1wiOntcIkFzc1ZhbFwiOjg0Ni42MixcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTUyLjM4LFwiQ2VzVmFsXCI6MCxcIlN0Q2VzVmFsXCI6MCxcIkRpc2NvdW50XCI6MCxcIk90aENocmdcIjowLFwiUm5kT2ZmQW10XCI6MCxcIlRvdEludlZhbFwiOjk5OX19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.WVQy062ECtQtIgVYLMKT3qQWXNnAlguX2Wb5qMfanhA6ku5H0O_ixU3tYsKhUVxj_vmiZZzhETFEpw0YypimwUF7bl1w4Y7tWvRRP-eP6BxMgmdILltY5l2zStGPm3nMKbKG6lsh02PiK2bdPDGaEBAzz3ZxrHgws4710a-8a5pCTN7EE1n49EGyGvQS9gLBEASYinrzQHI4lzNjY_NTZ6iK5zlah1WWbAVBY0Hg4fH_yC89ydMj_upPJvJkF50X9de8vPUNKBuMP8tpnTgD-eUsE0VjtNCpczUZ9nKRvOUQlz54EVGfa61Yqq5Tn7oPMXOW90h1QAUlZ_7uINP8sQ",
                            "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzExMVwiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMS8yMDI0XCIsXCJUb3RJbnZWYWxcIjo5OTksXCJJdGVtQ250XCI6MSxcIk1haW5Ic25Db2RlXCI6XCI5OTgzMTRcIixcIklyblwiOlwiNzg1OTM0NjU4Mzg5NGY4NjAyYzEwZjVhMWQ0YTQwMjY1YzkwODI0YWQ2M2JhOTk5ZjA0ODM2YTU3YWE3MGU3Y1wiLFwiSXJuRHRcIjpcIjIwMjQtMDItMjIgMTc6NDI6MDBcIn0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.BcQeCgE3S9NjLEzoJCADyiG71P-dE5C8PFE3d0TWWay8TEPuEdaShXBZjsAz7-n8VS0vox99Kj1p2_Qbo8pQ4g9NB3h3yC1O-FL9FLokVF6t1pzb5l8_t8Ej4MIzUjTxGhLrW-rFxCyIWuOz6ixzuAaUfyDjXW5mhAVeREXrE0pioMhFuFbnsLkyVLUsxJFk3Jc90fActOyRLm6xgEeJ5oAoR8IpzHySSTMM4_tx910f0u-IuXf59GxLQQAKyjF1UfrRmTjN3sPmDk4SSKxz0aqQ0yS-LHiAx5vL8kSws2Icyri6dS8WLLHR0_cWKs_VWf4xg87oFM5MgKTVq3mdzg",
                            "Status": "ACT"
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "30a2c438-bc17-44f7-a778-0dc6909ca118"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/e-invoices/hsn/{year}/{month}": {
      "get": {
        "summary": "Get E-Invoice HSN Summary",
        "deprecated": false,
        "description": "Get E-Invoice HSN summary for a return period for an authenticated taxpayer.",
        "operationId": "getEInvoiceHsnSummary",
        "tags": [
          "Taxpayer",
          "e-Invoice"
        ],
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "description": "Return period year.",
            "required": true,
            "example": "2026",
            "schema": {
              "type": "string",
              "example": "2024"
            }
          },
          {
            "name": "month",
            "in": "path",
            "description": "Return period month.",
            "required": true,
            "example": "03",
            "schema": {
              "type": "string",
              "example": "05"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version.",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success. The GST portal marks this source API as unencrypted, but the sandbox response is still wrapped in the standard `code/data/timestamp/transaction_id` envelope.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetEInvoiceHsnSummaryResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "gstin": "01AABCE2207R1Z5",
                          "fp": "052020",
                          "hsn": {
                            "hsn_b2b": [
                              {
                                "num": 1,
                                "hsn_sc": "2101",
                                "desc": "MISCELLANEOUS EDIBLE PREPARATIONS~Extracts, essences and concentrates, of coffee, tea or mate and preparations with a basis of these products or with a basis of coffee, tea or mate; roasted chicory and other roasted coffee substitutes, and extracts, essences and concentrates thereof",
                                "user_desc": "Taxpayer Description",
                                "uqc": "BDL",
                                "qty": 12,
                                "rt": 0.1,
                                "txval": 1212,
                                "iamt": 3342,
                                "camt": 343,
                                "samt": 24,
                                "csamt": 423,
                                "chksum": "fasdflkjwhrkfjshdfua"
                              }
                            ],
                            "hsn_b2c": [
                              {
                                "num": 1,
                                "hsn_sc": "1102",
                                "desc": "CEREAL FLOURS OTHER THAN THAT OF WHEAT OR MESLIN",
                                "user_desc": "Taxpayer Description",
                                "uqc": "BDL",
                                "qty": 10,
                                "rt": 0.1,
                                "txval": 4312,
                                "iamt": 242,
                                "camt": 643,
                                "samt": 24,
                                "csamt": 423,
                                "chksum": "bnsfsfskfsifi"
                              }
                            ]
                          }
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "5fc1acb2-1fd0-49e8-b6f3-19b60e67009d"
                    }
                  },
                  "record_not_found": {
                    "summary": "Record Not Found",
                    "value": {
                      "code": 200,
                      "timestamp": 1782371440348,
                      "data": {
                        "status_cd": "0",
                        "error": {
                          "message": "No record found.",
                          "error_cd": "EINV30118"
                        }
                      },
                      "transaction_id": "a781640f-c537-4e53-b3dc-eb782bbc0482"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/notices/{referenceId}": {
      "get": {
        "summary": "Get Notice Details",
        "deprecated": false,
        "description": "Get the full details and document metadata for a single notice by reference ID.",
        "operationId": "getTaxpayerNoticeDetails",
        "tags": [
          "Taxpayer",
          "Front Office Notices"
        ],
        "parameters": [
          {
            "name": "referenceId",
            "in": "path",
            "description": "Notice reference ID returned by the list notices API. This maps to GST `refId`.",
            "required": true,
            "example": "ZA2005190002553",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTaxpayerNoticeDetailsResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "arn": "AD290419000001N",
                          "dateOfIssue": "05/11/2024",
                          "noticeType": "MOV07",
                          "dueDateOfReply": "07/01/2025",
                          "taxPeriod": {
                            "fromMonth": "MAY",
                            "toMonth": "JAN",
                            "fromYear": "2017",
                            "toYear": "2018"
                          },
                          "maindocs": [
                            {
                              "dcupdtls": {
                                "ct": "application/pdf",
                                "docName": "AdvanceRulingTemplate.pdf",
                                "hash": "87f116709df216da008b32f989fca92950371cd15e565de0a765d83fb4b5d36c",
                                "id": "20180926545",
                                "ty": "ENFS"
                              }
                            }
                          ],
                          "suppdocs": []
                        }
                      }
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/notices": {
      "get": {
        "summary": "List Notices",
        "deprecated": false,
        "description": "Get the taxpayer's notice list.",
        "operationId": "getTaxpayerNotices",
        "tags": [
          "Taxpayer",
          "Front Office Notices"
        ],
        "parameters": [
          {
            "name": "date",
            "in": "query",
            "description": "Optional notice date filter in `DD/MM/YYYY` format.",
            "required": false,
            "example": "19/01/2024",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTaxpayerNoticesResponse"
                },
                "examples": {
                  "notice_list": {
                    "summary": "Notice list",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "notices": [
                            {
                              "refId": "ZA2005190002553",
                              "arn": "AD070418000025L",
                              "moduleCd": "IETCS",
                              "alertCd": "IETCS_NOTCE_NOTSCN",
                              "dateOfIssue": "20/01/2024",
                              "dateOfRespond": "12/02/2024"
                            }
                          ]
                        }
                      }
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/tax-payer/aato": {
      "get": {
        "summary": "Get AATO Values",
        "deprecated": false,
        "description": "Get annual aggregate turnover (AATO) values for a taxpayer for a financial year.",
        "operationId": "getAatoValues",
        "tags": [
          "Taxpayer",
          "Front Office",
          "AATO"
        ],
        "parameters": [
          {
            "name": "financial_year",
            "in": "query",
            "description": "Financial year on the compliance surface. Example: `FY 2025-26`. The manager should normalize this to the GST FO request year such as `2025-26` before calling the lower client.",
            "required": true,
            "example": "FY 2025-26",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "GST taxpayer access token. For token-generation steps, refer to the Generate Taxpayer Session flow and pass the token in the authorization header.",
            "required": true,
            "example": "{{gsp_access_token}}",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "Compliance API version.",
            "required": false,
            "example": "1.0.0",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification.",
            "required": true,
            "example": "{{api_key}}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAatoValuesResponse"
                },
                "examples": {
                  "success": {
                    "summary": "Success",
                    "value": {
                      "code": 200,
                      "timestamp": 1763446641000,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "status_cd": "1",
                        "data": {
                          "gstin": "33GSPTN0062G1ZH",
                          "fy": "2020-21",
                          "pan": "AAGFT0853L",
                          "gsttofil": 1100,
                          "pantofil": 5000,
                          "estgstto": 1234,
                          "estpanto": 5678,
                          "finalgstto": 1234,
                          "finalpanto": 5678,
                          "tpdecto": [
                            {
                              "estgstto": 1234,
                              "gsttobytp": 1334,
                              "docId": {
                                "id": "20210407311"
                              },
                              "remarks": "GSP 1st submission",
                              "filingDate": "01/07/2021 15:31:13"
                            },
                            {
                              "estgstto": 1234,
                              "gsttobytp": 1334,
                              "docId": {
                                "id": "20210407311"
                              },
                              "remarks": "GSP 2nd submission",
                              "filingDate": "01/07/2021 15:31:13"
                            }
                          ]
                        }
                      }
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-invoice/tax-payer/authenticate": {
      "post": {
        "summary": "E-Invoice Authentication",
        "deprecated": false,
        "description": "",
        "operationId": "eInvoiceAuthenticate",
        "tags": [
          "e-Invoice1",
          "Authentication"
        ],
        "parameters": [
          {
            "name": "force",
            "in": "query",
            "description": "The value of this attribute is to be set true if the client needs to refresh the token 10 minutes before expiry. Possible Values - true or false",
            "required": true,
            "schema": {
              "type": "string",
              "example": "true"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Specifies the source to access, either primary (NIC 1) or secondary (NIC 2)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/EInvoiceAuthenticateRequest"
              },
              "examples": {
                "200 Authenticated": {
                  "value": {
                    "username": "ACME_IND_API_QCK",
                    "password": "QnVzaW5lc3NfQVBJX1FDSw",
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "200 Authenticated"
                },
                "1015 Invalid GSTIN for user": {
                  "value": {
                    "username": "ACME_IND_API_QCK",
                    "password": "3NfQVBJX1FDSw",
                    "gstin": "29AAACQ370E000"
                  },
                  "summary": "1015 Invalid GSTIN for user"
                },
                "1019 Incorrect password": {
                  "value": {
                    "username": "ACME_IND_API_QCK",
                    "password": "qnvzaW5lc3NfQV",
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "1019 Incorrect password"
                },
                "1017 Incorrect user id": {
                  "value": {
                    "username": "ACME_IND_API_ID",
                    "password": "QnVzaW5lc3NfQVBJX1FDSw",
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "1017 Incorrect user id"
                },
                "GEN5008 GSTN Server Error": {
                  "value": {
                    "username": "{{irp_einv_username}}",
                    "password": "{{irp_einv_password}}",
                    "gstin": "{{irp_einv_gstin}}"
                  },
                  "summary": "GEN5008 GSTN Server Error"
                },
                "GEN5008 GSTN Server Error (Postman)": {
                  "value": {
                    "username": "API_Quicko_QIP",
                    "password": "PASSWORKD",
                    "gstin": "24ABKCS2033B1ZV"
                  },
                  "summary": "GEN5008 GSTN Server Error (Postman)"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "1015 Invalid GSTIN for user / 200 Authenticated / 1019 Incorrect password / 1017 Incorrect user id / GEN5008 GSTN Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EInvoiceAuthenticateResponse"
                },
                "examples": {
                  "200 Authenticated": {
                    "summary": "200 Authenticated",
                    "value": {
                      "code": 200,
                      "data": {
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1,
                        "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ0YXhwYXllci1zZXNzaW9uIiwiZ3N0aW4iOiIyNEFCS0NTMjAzM0IxWlYiLCJpYXQiOjE3MTI5NDQxMDAsImV4cCI6MTcxMjk0NzcxMX0.sandbox-signature",
                        "expiry": 1708693832000
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "db0435d0-2a7d-42b2-9b44-94eef880bf60"
                    }
                  },
                  "1015 Invalid GSTIN for user": {
                    "summary": "1015 Invalid GSTIN for user",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "1015",
                            "ErrorMessage": "Invalid GSTIN for this user"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "474bfffc-7f59-4f01-b658-454f36028cd3"
                    }
                  },
                  "1019 Incorrect password": {
                    "summary": "1019 Incorrect password",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "1019",
                            "ErrorMessage": "Incorrect Password"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ee1c96f8-9c41-45cd-b28f-0d5ea95d07cb"
                    }
                  },
                  "1017 Incorrect user id": {
                    "summary": "1017 Incorrect user id",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "1017",
                            "ErrorMessage": "Incorrect user id/User does not exists"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "799054c8-45b3-4cb4-8461-defcd98d2891"
                    }
                  },
                  "GEN5008 GSTN Server Error": {
                    "summary": "GEN5008 GSTN Server Error",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "error_cd": "GEN5008",
                          "message": "GSTN Server Error"
                        },
                        "status_cd": "0"
                      },
                      "timestamp": 1735661058000,
                      "transaction_id": "14f91604-cf57-4336-8e4b-e758de6be3c4"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-invoice/tax-payer/invoice": {
      "get": {
        "summary": "Get E-Invoice by document data",
        "deprecated": false,
        "description": "",
        "operationId": "getEInvoiceByDocumentData",
        "tags": [
          "e-Invoice1",
          "e-Invoice12"
        ],
        "parameters": [
          {
            "name": "document_type",
            "in": "query",
            "description": "Document Type",
            "required": true,
            "schema": {
              "type": "string",
              "example": "INV"
            }
          },
          {
            "name": "document_number",
            "in": "query",
            "description": "Document Number",
            "required": true,
            "schema": {
              "type": "string",
              "example": "DOC/999"
            }
          },
          {
            "name": "document_date",
            "in": "query",
            "description": "Document Date",
            "required": true,
            "schema": {
              "type": "string",
              "example": "01/01/2024"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Invoice access token. For token-generation steps, refer to the [Generate E-Invoice Session](/recipes/gst/authentication/generate_e_invoice_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Specifies the source to access, either primary (NIC 1) or secondary (NIC 2)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-proxy",
            "in": "header",
            "description": "Enables criss-cross operations by routing requests through the specified source (e.g., access primary via secondary if primary is unavailable)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "example": "secondary"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Get IRN / 200 Get cancelled IRN / 2154 IRN not found",
            "content": {
              "application/json": {
                "schema": {
                  "allOf": [
                    { "$ref": "#/components/schemas/GetEInvoiceResponse" }
                  ],
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "Data": {
                          "type": "object",
                          "properties": {
                            "AckDt": {
                              "type": "string",
                              "example": "2023-03-30 17:08:00"
                            },
                            "AckNo": {
                              "type": "number",
                              "example": 162310037589380
                            },
                            "EwbDt": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "EwbNo": {
                              "type": "number",
                              "nullable": true,
                              "example": null
                            },
                            "EwbValidTill": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "Irn": {
                              "type": "string",
                              "example": "49a7c675b25f730d2353622e4767df203fed2495411953e0351737d47308d868"
                            },
                            "Remarks": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "SignedInvoice": {
                              "type": "string",
                              "example": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ0eXAiOiJKV1QiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxNjIzMTAwMzc1ODkzODAsXCJBY2tEdFwiOlwiMjAyMy0wMy0zMCAxNzowNzo0NlwiLFwiSXJuXCI6XCI0OWE3YzY3NWIyNWY3MzBkMjM1MzYyMmU0NzY3ZGYyMDNmZWQyNDk1NDExOTUzZTAzNTE3MzdkNDczMDhkODY4XCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzEyMTAxXCIsXCJEdFwiOlwiMTgvMDgvMjAyMlwifSxcIlNlbGxlckR0bHNcIjp7XCJHc3RpblwiOlwiMjRBQUFQSTMxODJNMDAyXCIsXCJMZ2xObVwiOlwiTklDIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiVHJkTm1cIjpcIk5JQyBJbmR1c3RyaWVzXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkdBTkRISU5BR0FSXCIsXCJQaW5cIjozODAwMjYsXCJTdGNkXCI6XCIyNFwiLFwiUGhcIjpcIjkwMDAwMDAwMDBcIixcIkVtXCI6XCJhYmNAZ21haWwuY29tXCJ9LFwiQnV5ZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QVdHUFY3MTA3QjFaMVwiLFwiTGdsTm1cIjpcIlhZWiBjb21wYW55IHB2dCBsdGRcIixcIlRyZE5tXCI6XCJYWVogSW5kdXN0cmllc1wiLFwiUG9zXCI6XCIxMlwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJHQU5ESElOQUdBUlwiLFwiUGluXCI6NTYyMTYwLFwiUGhcIjpcIjkxMTExMTExMTExXCIsXCJFbVwiOlwieHl6QHlhaG9vLmNvbVwiLFwiU3RjZFwiOlwiMjlcIn0sXCJEaXNwRHRsc1wiOntcIk5tXCI6XCJBQkMgY29tcGFueSBwdnQgbHRkXCIsXCJBZGRyMVwiOlwiN3RoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJhbmFnYWxvcmVcIixcIlBpblwiOjU2MjE2MCxcIlN0Y2RcIjpcIjI5XCJ9LFwiU2hpcER0bHNcIjp7XCJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJMZ2xObVwiOlwiQ0JFIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiVHJkTm1cIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMVwiOlwiN3RoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJhbmFnYWxvcmVcIixcIlBpblwiOjU2MjE2MCxcIlN0Y2RcIjpcIjI5XCJ9LFwiSXRlbUxpc3RcIjpbe1wiSXRlbU5vXCI6MCxcIlNsTm9cIjpcIjFcIixcIklzU2VydmNcIjpcIk5cIixcIlByZERlc2NcIjpcIlJpY2VcIixcIkhzbkNkXCI6XCIxMDAxXCIsXCJCYXJjZGVcIjpcIjEyMzQ1NlwiLFwiUXR5XCI6MTAwLjM0NSxcIkZyZWVRdHlcIjoxMCxcIlVuaXRcIjpcIkJBR1wiLFwiVW5pdFByaWNlXCI6OTkuNTQ1LFwiVG90QW10XCI6OTk4OC44NCxcIkRpc2NvdW50XCI6MTAsXCJQcmVUYXhWYWxcIjoxLFwiQXNzQW10XCI6OTk3OC44NCxcIkdzdFJ0XCI6MTIsXCJJZ3N0QW10XCI6MTE5Ny40NixcIkNnc3RBbXRcIjowLFwiU2dzdEFtdFwiOjAsXCJDZXNSdFwiOjUsXCJDZXNBbXRcIjo0OTguOTQsXCJDZXNOb25BZHZsQW10XCI6MTAsXCJTdGF0ZUNlc1J0XCI6MTIsXCJTdGF0ZUNlc0FtdFwiOjExOTcuNDYsXCJTdGF0ZUNlc05vbkFkdmxBbXRcIjo1LFwiT3RoQ2hyZ1wiOjEwLFwiVG90SXRlbVZhbFwiOjEyODk3LjcsXCJPcmRMaW5lUmVmXCI6XCIzMjU2XCIsXCJPcmdDbnRyeVwiOlwiQUdcIixcIlByZFNsTm9cIjpcIjEyMzQ1XCIsXCJCY2hEdGxzXCI6e1wiTm1cIjpcIjEyMzQ1NlwiLFwiRXhwRHRcIjpcIjAxLzA4LzIwMjBcIixcIldyRHRcIjpcIjAxLzA5LzIwMjBcIn0sXCJBdHRyaWJEdGxzXCI6W3tcIk5tXCI6XCJSaWNlXCIsXCJWYWxcIjpcIjEwMDAwXCJ9XX1dLFwiVmFsRHRsc1wiOntcIkFzc1ZhbFwiOjk5NzguODQsXCJDZ3N0VmFsXCI6MCxcIlNnc3RWYWxcIjowLFwiSWdzdFZhbFwiOjExOTcuNDYsXCJDZXNWYWxcIjo1MDguOTQsXCJTdENlc1ZhbFwiOjEyMDIuNDYsXCJEaXNjb3VudFwiOjEwLFwiT3RoQ2hyZ1wiOjIwLFwiUm5kT2ZmQW10XCI6MC4zLFwiVG90SW52VmFsXCI6MTI5MDgsXCJUb3RJbnZWYWxGY1wiOjEyODk3Ljd9LFwiUGF5RHRsc1wiOntcIk5tXCI6XCJBQkNERVwiLFwiQWNjRGV0XCI6XCI1Njk3Mzg5NzEzMjEwXCIsXCJNb2RlXCI6XCJDYXNoXCIsXCJGaW5JbnNCclwiOlwiU0JJTjExMDAwXCIsXCJQYXlUZXJtXCI6XCIxMDBcIixcIlBheUluc3RyXCI6XCJHaWZ0XCIsXCJDclRyblwiOlwidGVzdFwiLFwiRGlyRHJcIjpcInRlc3RcIixcIkNyRGF5XCI6MTAwLFwiUGFpZEFtdFwiOjEwMDAwLFwiUGF5bXREdWVcIjo1MDAwfSxcIlJlZkR0bHNcIjp7XCJJbnZSbVwiOlwiVEVTVFwiLFwiRG9jUGVyZER0bHNcIjp7XCJJbnZTdER0XCI6XCIwMS8wOC8yMDIwXCIsXCJJbnZFbmREdFwiOlwiMDEvMDkvMjAyMFwifSxcIlByZWNEb2NEdGxzXCI6W3tcIkludk5vXCI6XCJET0MvMDAyXCIsXCJJbnZEdFwiOlwiMDEvMDgvMjAyMFwiLFwiT3RoUmVmTm9cIjpcIjEyMzQ1NlwifV0sXCJDb250ckR0bHNcIjpbe1wiUmVjQWR2UmVmclwiOlwiRG9jLzAwM1wiLFwiUmVjQWR2RHRcIjpcIjAxLzA4LzIwMjBcIixcIlRlbmRSZWZyXCI6XCJBYmMwMDFcIixcIkNvbnRyUmVmclwiOlwiQ28xMjNcIixcIkV4dFJlZnJcIjpcIllvNDU2XCIsXCJQcm9qUmVmclwiOlwiRG9jLTQ1NlwiLFwiUE9SZWZyXCI6XCJEb2MtNzg5XCIsXCJQT1JlZkR0XCI6XCIwMS8wOC8yMDIwXCJ9XX0sXCJBZGRsRG9jRHRsc1wiOlt7XCJVcmxcIjpcImh0dHBzOi8vZWludi1hcGlzYW5kYm94Lm5pYy5pblwiLFwiRG9jc1wiOlwiVGVzdCBEb2NcIixcIkluZm9cIjpcIkRvY3VtZW50IFRlc3RcIn1dLFwiRXhwRHRsc1wiOntcIlNoaXBCTm9cIjpcIkEtMjQ4XCIsXCJTaGlwQkR0XCI6XCIwMS8wOC8yMDIwXCIsXCJQb3J0XCI6XCJJTkFCRzFcIixcIlJlZkNsbVwiOlwiTlwiLFwiRm9yQ3VyXCI6XCJBRURcIixcIkNudENvZGVcIjpcIkFFXCJ9LFwiRXdiRHRsc1wiOntcIlRyYW5zSWRcIjpcIjEyQVdHUFY3MTA3QjFaMVwiLFwiVHJhbnNOYW1lXCI6XCJYWVogRVhQT1JUU1wiLFwiVHJhbnNNb2RlXCI6XCIxXCIsXCJEaXN0YW5jZVwiOjEwMCxcIlRyYW5zRG9jTm9cIjpcIkRPQzAxXCIsXCJUcmFuc0RvY0R0XCI6XCIxOC8wOC8yMDIwXCIsXCJWZWhOb1wiOlwia2ExMjM0NTZcIixcIlZlaFR5cGVcIjpcIlJcIn19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.AmIULcritlmFFfXLSh-efRGfpmyOLgePydu_dwmDIxbmZbQJP_qgqpLKFwL8q3qSEFVyIntjkj2LBBws2WmEWGFcqTETIbniKRDdTBHGqy7aV-r05RhQs34DCkUJs56lqeRVBKe42xMuc_y1dZNHqMOpKv8FnhB6u9UDm-BCe7yIK3evUij3okrPvuXOVR48HCMjNnu25yhCdW_pAKtPUkWRxIZaW2eCOBnJs2v0lBC_lSDLdTklJBEk1cDs2dvOyVyd-IgZCBJOK2Ebsj9LdopC07NqDXKS0f7spJU8nXVXkkxqcmzgCHFXH7KztlxljYipkBTquFREcoGsw8ZLgQ"
                            },
                            "SignedQRCode": {
                              "type": "string",
                              "example": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ0eXAiOiJKV1QiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI0QUFBUEkzMTgyTTAwMlwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzEyMTAxXCIsXCJEb2NUeXBcIjpcIklOVlwiLFwiRG9jRHRcIjpcIjE4LzA4LzIwMjJcIixcIlRvdEludlZhbFwiOjEyOTA4LFwiSXRlbUNudFwiOjEsXCJNYWluSHNuQ29kZVwiOlwiMTAwMVwiLFwiSXJuXCI6XCI0OWE3YzY3NWIyNWY3MzBkMjM1MzYyMmU0NzY3ZGYyMDNmZWQyNDk1NDExOTUzZTAzNTE3MzdkNDczMDhkODY4XCIsXCJJcm5EdFwiOlwiMjAyMy0wMy0zMCAxNzowNzo0NlwifSIsImlzcyI6Ik5JQyBTYW5kYm94In0.EwKrLMKD3NLqa2oUNfuok0asxNqhhNGppaXBF4isim8L2Q2rC7Xj8biJN4z2vee0M1aOPwIiBS9tQqmrUOuN1sbnnjYu_WbesoVsUWDrBgGlSYjo1AQiPO_41lo1tpuCxvIJjveq25PchVr2-_7BkS5tHGTITK1lrK-rqfMuhn8EWvg9ACWMka0xx86HV2BEHHb6XFJVHocMKnvIulb1wv5U6o1yFmy3rOZOMqFzffBFjlvFvcuntWAmJos1jTl3y0X1EJ7YGAR3EOb8A4nI7JaJb9v8GEZY9ECyRyR7pXVXxZbHI2A9gxGTIGobKxPAlbk59mPkwjWkZhiB3iWtEw"
                            },
                            "Status": {
                              "type": "string",
                              "example": "ACT"
                            }
                          },
                          "nullable": true
                        },
                        "ErrorDetails": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "ErrorCode": {
                                "type": "string"
                              },
                              "ErrorMessage": {
                                "type": "string"
                              }
                            }
                          },
                          "nullable": true,
                          "example": [
                            {
                              "ErrorCode": "2154",
                              "ErrorMessage": "IRN details are not found"
                            }
                          ]
                        },
                        "InfoDtls": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "InfoCode": {
                                "type": "string"
                              },
                              "InfoMessage": {
                                "type": "string"
                              }
                            }
                          },
                          "nullable": true,
                          "example": null
                        },
                        "Status": {
                          "type": "number",
                          "example": 1
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "53e1bc69-275a-4504-b5c3-03457c7d09a9"
                    }
                  }
                },
                "examples": {
                  "200 Get IRN": {
                    "summary": "200 Get IRN",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2023-03-30 17:08:00",
                          "AckNo": 162310037589380,
                          "EwbDt": null,
                          "EwbNo": null,
                          "EwbValidTill": null,
                          "Irn": "49a7c675b25f730d2353622e4767df203fed2495411953e0351737d47308d868",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ0eXAiOiJKV1QiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxNjIzMTAwMzc1ODkzODAsXCJBY2tEdFwiOlwiMjAyMy0wMy0zMCAxNzowNzo0NlwiLFwiSXJuXCI6XCI0OWE3YzY3NWIyNWY3MzBkMjM1MzYyMmU0NzY3ZGYyMDNmZWQyNDk1NDExOTUzZTAzNTE3MzdkNDczMDhkODY4XCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzEyMTAxXCIsXCJEdFwiOlwiMTgvMDgvMjAyMlwifSxcIlNlbGxlckR0bHNcIjp7XCJHc3RpblwiOlwiMjRBQUFQSTMxODJNMDAyXCIsXCJMZ2xObVwiOlwiTklDIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiVHJkTm1cIjpcIk5JQyBJbmR1c3RyaWVzXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkdBTkRISU5BR0FSXCIsXCJQaW5cIjozODAwMjYsXCJTdGNkXCI6XCIyNFwiLFwiUGhcIjpcIjkwMDAwMDAwMDBcIixcIkVtXCI6XCJhYmNAZ21haWwuY29tXCJ9LFwiQnV5ZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QVdHUFY3MTA3QjFaMVwiLFwiTGdsTm1cIjpcIlhZWiBjb21wYW55IHB2dCBsdGRcIixcIlRyZE5tXCI6XCJYWVogSW5kdXN0cmllc1wiLFwiUG9zXCI6XCIxMlwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJHQU5ESElOQUdBUlwiLFwiUGluXCI6NTYyMTYwLFwiUGhcIjpcIjkxMTExMTExMTExXCIsXCJFbVwiOlwieHl6QHlhaG9vLmNvbVwiLFwiU3RjZFwiOlwiMjlcIn0sXCJEaXNwRHRsc1wiOntcIk5tXCI6XCJBQkMgY29tcGFueSBwdnQgbHRkXCIsXCJBZGRyMVwiOlwiN3RoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJhbmFnYWxvcmVcIixcIlBpblwiOjU2MjE2MCxcIlN0Y2RcIjpcIjI5XCJ9LFwiU2hpcER0bHNcIjp7XCJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJMZ2xObVwiOlwiQ0JFIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiVHJkTm1cIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMVwiOlwiN3RoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJhbmFnYWxvcmVcIixcIlBpblwiOjU2MjE2MCxcIlN0Y2RcIjpcIjI5XCJ9LFwiSXRlbUxpc3RcIjpbe1wiSXRlbU5vXCI6MCxcIlNsTm9cIjpcIjFcIixcIklzU2VydmNcIjpcIk5cIixcIlByZERlc2NcIjpcIlJpY2VcIixcIkhzbkNkXCI6XCIxMDAxXCIsXCJCYXJjZGVcIjpcIjEyMzQ1NlwiLFwiUXR5XCI6MTAwLjM0NSxcIkZyZWVRdHlcIjoxMCxcIlVuaXRcIjpcIkJBR1wiLFwiVW5pdFByaWNlXCI6OTkuNTQ1LFwiVG90QW10XCI6OTk4OC44NCxcIkRpc2NvdW50XCI6MTAsXCJQcmVUYXhWYWxcIjoxLFwiQXNzQW10XCI6OTk3OC44NCxcIkdzdFJ0XCI6MTIsXCJJZ3N0QW10XCI6MTE5Ny40NixcIkNnc3RBbXRcIjowLFwiU2dzdEFtdFwiOjAsXCJDZXNSdFwiOjUsXCJDZXNBbXRcIjo0OTguOTQsXCJDZXNOb25BZHZsQW10XCI6MTAsXCJTdGF0ZUNlc1J0XCI6MTIsXCJTdGF0ZUNlc0FtdFwiOjExOTcuNDYsXCJTdGF0ZUNlc05vbkFkdmxBbXRcIjo1LFwiT3RoQ2hyZ1wiOjEwLFwiVG90SXRlbVZhbFwiOjEyODk3LjcsXCJPcmRMaW5lUmVmXCI6XCIzMjU2XCIsXCJPcmdDbnRyeVwiOlwiQUdcIixcIlByZFNsTm9cIjpcIjEyMzQ1XCIsXCJCY2hEdGxzXCI6e1wiTm1cIjpcIjEyMzQ1NlwiLFwiRXhwRHRcIjpcIjAxLzA4LzIwMjBcIixcIldyRHRcIjpcIjAxLzA5LzIwMjBcIn0sXCJBdHRyaWJEdGxzXCI6W3tcIk5tXCI6XCJSaWNlXCIsXCJWYWxcIjpcIjEwMDAwXCJ9XX1dLFwiVmFsRHRsc1wiOntcIkFzc1ZhbFwiOjk5NzguODQsXCJDZ3N0VmFsXCI6MCxcIlNnc3RWYWxcIjowLFwiSWdzdFZhbFwiOjExOTcuNDYsXCJDZXNWYWxcIjo1MDguOTQsXCJTdENlc1ZhbFwiOjEyMDIuNDYsXCJEaXNjb3VudFwiOjEwLFwiT3RoQ2hyZ1wiOjIwLFwiUm5kT2ZmQW10XCI6MC4zLFwiVG90SW52VmFsXCI6MTI5MDgsXCJUb3RJbnZWYWxGY1wiOjEyODk3Ljd9LFwiUGF5RHRsc1wiOntcIk5tXCI6XCJBQkNERVwiLFwiQWNjRGV0XCI6XCI1Njk3Mzg5NzEzMjEwXCIsXCJNb2RlXCI6XCJDYXNoXCIsXCJGaW5JbnNCclwiOlwiU0JJTjExMDAwXCIsXCJQYXlUZXJtXCI6XCIxMDBcIixcIlBheUluc3RyXCI6XCJHaWZ0XCIsXCJDclRyblwiOlwidGVzdFwiLFwiRGlyRHJcIjpcInRlc3RcIixcIkNyRGF5XCI6MTAwLFwiUGFpZEFtdFwiOjEwMDAwLFwiUGF5bXREdWVcIjo1MDAwfSxcIlJlZkR0bHNcIjp7XCJJbnZSbVwiOlwiVEVTVFwiLFwiRG9jUGVyZER0bHNcIjp7XCJJbnZTdER0XCI6XCIwMS8wOC8yMDIwXCIsXCJJbnZFbmREdFwiOlwiMDEvMDkvMjAyMFwifSxcIlByZWNEb2NEdGxzXCI6W3tcIkludk5vXCI6XCJET0MvMDAyXCIsXCJJbnZEdFwiOlwiMDEvMDgvMjAyMFwiLFwiT3RoUmVmTm9cIjpcIjEyMzQ1NlwifV0sXCJDb250ckR0bHNcIjpbe1wiUmVjQWR2UmVmclwiOlwiRG9jLzAwM1wiLFwiUmVjQWR2RHRcIjpcIjAxLzA4LzIwMjBcIixcIlRlbmRSZWZyXCI6XCJBYmMwMDFcIixcIkNvbnRyUmVmclwiOlwiQ28xMjNcIixcIkV4dFJlZnJcIjpcIllvNDU2XCIsXCJQcm9qUmVmclwiOlwiRG9jLTQ1NlwiLFwiUE9SZWZyXCI6XCJEb2MtNzg5XCIsXCJQT1JlZkR0XCI6XCIwMS8wOC8yMDIwXCJ9XX0sXCJBZGRsRG9jRHRsc1wiOlt7XCJVcmxcIjpcImh0dHBzOi8vZWludi1hcGlzYW5kYm94Lm5pYy5pblwiLFwiRG9jc1wiOlwiVGVzdCBEb2NcIixcIkluZm9cIjpcIkRvY3VtZW50IFRlc3RcIn1dLFwiRXhwRHRsc1wiOntcIlNoaXBCTm9cIjpcIkEtMjQ4XCIsXCJTaGlwQkR0XCI6XCIwMS8wOC8yMDIwXCIsXCJQb3J0XCI6XCJJTkFCRzFcIixcIlJlZkNsbVwiOlwiTlwiLFwiRm9yQ3VyXCI6XCJBRURcIixcIkNudENvZGVcIjpcIkFFXCJ9LFwiRXdiRHRsc1wiOntcIlRyYW5zSWRcIjpcIjEyQVdHUFY3MTA3QjFaMVwiLFwiVHJhbnNOYW1lXCI6XCJYWVogRVhQT1JUU1wiLFwiVHJhbnNNb2RlXCI6XCIxXCIsXCJEaXN0YW5jZVwiOjEwMCxcIlRyYW5zRG9jTm9cIjpcIkRPQzAxXCIsXCJUcmFuc0RvY0R0XCI6XCIxOC8wOC8yMDIwXCIsXCJWZWhOb1wiOlwia2ExMjM0NTZcIixcIlZlaFR5cGVcIjpcIlJcIn19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.AmIULcritlmFFfXLSh-efRGfpmyOLgePydu_dwmDIxbmZbQJP_qgqpLKFwL8q3qSEFVyIntjkj2LBBws2WmEWGFcqTETIbniKRDdTBHGqy7aV-r05RhQs34DCkUJs56lqeRVBKe42xMuc_y1dZNHqMOpKv8FnhB6u9UDm-BCe7yIK3evUij3okrPvuXOVR48HCMjNnu25yhCdW_pAKtPUkWRxIZaW2eCOBnJs2v0lBC_lSDLdTklJBEk1cDs2dvOyVyd-IgZCBJOK2Ebsj9LdopC07NqDXKS0f7spJU8nXVXkkxqcmzgCHFXH7KztlxljYipkBTquFREcoGsw8ZLgQ",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ0eXAiOiJKV1QiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI0QUFBUEkzMTgyTTAwMlwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzEyMTAxXCIsXCJEb2NUeXBcIjpcIklOVlwiLFwiRG9jRHRcIjpcIjE4LzA4LzIwMjJcIixcIlRvdEludlZhbFwiOjEyOTA4LFwiSXRlbUNudFwiOjEsXCJNYWluSHNuQ29kZVwiOlwiMTAwMVwiLFwiSXJuXCI6XCI0OWE3YzY3NWIyNWY3MzBkMjM1MzYyMmU0NzY3ZGYyMDNmZWQyNDk1NDExOTUzZTAzNTE3MzdkNDczMDhkODY4XCIsXCJJcm5EdFwiOlwiMjAyMy0wMy0zMCAxNzowNzo0NlwifSIsImlzcyI6Ik5JQyBTYW5kYm94In0.EwKrLMKD3NLqa2oUNfuok0asxNqhhNGppaXBF4isim8L2Q2rC7Xj8biJN4z2vee0M1aOPwIiBS9tQqmrUOuN1sbnnjYu_WbesoVsUWDrBgGlSYjo1AQiPO_41lo1tpuCxvIJjveq25PchVr2-_7BkS5tHGTITK1lrK-rqfMuhn8EWvg9ACWMka0xx86HV2BEHHb6XFJVHocMKnvIulb1wv5U6o1yFmy3rOZOMqFzffBFjlvFvcuntWAmJos1jTl3y0X1EJ7YGAR3EOb8A4nI7JaJb9v8GEZY9ECyRyR7pXVXxZbHI2A9gxGTIGobKxPAlbk59mPkwjWkZhiB3iWtEw",
                          "Status": "ACT"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "53e1bc69-275a-4504-b5c3-03457c7d09a9"
                    }
                  },
                  "200 Get cancelled IRN": {
                    "summary": "200 Get cancelled IRN",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2024-02-23 16:42:00",
                          "AckNo": 112410188611284,
                          "EwbDt": null,
                          "EwbNo": null,
                          "EwbValidTill": null,
                          "Irn": "456f1097a758cf37bf2dc9275135f9f09fa3478dfb9c0d1e683fe27dc3919424",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg2MTEyODQsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMyAxNjo0MjowMFwiLFwiSXJuXCI6XCI0NTZmMTA5N2E3NThjZjM3YmYyZGM5Mjc1MTM1ZjlmMDlmYTM0NzhkZmI5YzBkMWU2ODNmZTI3ZGMzOTE5NDI0XCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzEyMlwiLFwiRHRcIjpcIjAxLzAxLzIwMjRcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiSXRlbUxpc3RcIjpbe1wiSXRlbU5vXCI6MCxcIlNsTm9cIjpcIjFcIixcIklzU2VydmNcIjpcIk5cIixcIlByZERlc2NcIjpcIlJpY2VcIixcIkhzbkNkXCI6XCIxMDAxXCIsXCJCYXJjZGVcIjpcIjEyMzQ1NlwiLFwiUXR5XCI6MTAwLjM0NSxcIkZyZWVRdHlcIjoxMCxcIlVuaXRcIjpcIkJBR1wiLFwiVW5pdFByaWNlXCI6OTkuNTQ1LFwiVG90QW10XCI6OTk4OC44NCxcIkRpc2NvdW50XCI6MTAsXCJQcmVUYXhWYWxcIjoxLFwiQXNzQW10XCI6OTk3OC44NCxcIkdzdFJ0XCI6MTIsXCJJZ3N0QW10XCI6MTE5Ny40NixcIkNnc3RBbXRcIjowLFwiU2dzdEFtdFwiOjAsXCJDZXNSdFwiOjUsXCJDZXNBbXRcIjo0OTguOTQsXCJDZXNOb25BZHZsQW10XCI6MTAsXCJTdGF0ZUNlc1J0XCI6MTIsXCJTdGF0ZUNlc0FtdFwiOjExOTcuNDYsXCJTdGF0ZUNlc05vbkFkdmxBbXRcIjo1LFwiT3RoQ2hyZ1wiOjEwLFwiVG90SXRlbVZhbFwiOjEyODk3LjcsXCJPcmRMaW5lUmVmXCI6XCIzMjU2XCIsXCJPcmdDbnRyeVwiOlwiQUdcIixcIlByZFNsTm9cIjpcIjEyMzQ1XCJ9XSxcIlZhbER0bHNcIjp7XCJBc3NWYWxcIjo5OTc4Ljg0LFwiQ2dzdFZhbFwiOjAsXCJTZ3N0VmFsXCI6MCxcIklnc3RWYWxcIjoxMTk3LjQ2LFwiQ2VzVmFsXCI6NTA4Ljk0LFwiU3RDZXNWYWxcIjoxMjAyLjQ2LFwiRGlzY291bnRcIjoxMCxcIk90aENocmdcIjoyMCxcIlJuZE9mZkFtdFwiOjAuMyxcIlRvdEludlZhbFwiOjEyOTA4LFwiVG90SW52VmFsRmNcIjoxMjg5Ny43fX0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.j6aa0Lo1PAB-q5LlBPDSyTY-5LWE-JIcNAm5AgqKqj3VCPATmChGmcXLLuq0b9gfmkeT6FA9bqPuziov5G8OBt0u80ZXPFycha0dig1_zdWC9AiAk7UA1IQyP6WqF_KSeRf6pmxgXQ0eceKQfVuw4wk5sblGoc0gCAvi3r9Klbz9bmhTodazM1u6oUHjN3WYYp4fMae0GdualdmefC2yYo0iUiWQ4-UaXZSTlqm1tQFtfWqzQwQlMk8oL-NsLeLUz0NFeI53wo8d8h2wB0vGAC2PwBRg5zhl5VUgQKEn-5zXge7xLPxJLrJSixp7j2E3zk_Gl6LygTsOZppsTJWtfA",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzEyMlwiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMS8yMDI0XCIsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIkl0ZW1DbnRcIjoxLFwiTWFpbkhzbkNvZGVcIjpcIjEwMDFcIixcIklyblwiOlwiNDU2ZjEwOTdhNzU4Y2YzN2JmMmRjOTI3NTEzNWY5ZjA5ZmEzNDc4ZGZiOWMwZDFlNjgzZmUyN2RjMzkxOTQyNFwiLFwiSXJuRHRcIjpcIjIwMjQtMDItMjMgMTY6NDI6MDBcIn0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.MooFRXmxqixudqswd5EVHJ_bp63gC-s3oDgZpDDQhIIPkyIdz0v3WUz5n_dMkZKaFPdkGPaZQlzGEwWR-ukBU6DqVRBrciBCy3DEGGbz_8ev71hQxC4kzfqp2QmDbqPhI-fmbMbff3mlRmdcSJPLJsLl40hOUCzFZ0Q5atCNNhvEXsJHHV6PMXLtnZfOAhQjS_s_P5iOrbIlZ4sLTc5ErPSdw08Qba9KQE2_y15NK2sWBSl80f2y40iocmnn-NBEKjCU-Hbp7Ezb-X0CvyFsxFwYNNlcNtSxp5jjAMJ4CJhm4ac6THF-bZzIqN7d7eJmFzO9I2i-oGvuQFnrITQFFA",
                          "Status": "CNL"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ff56451a-1798-4695-8a04-5918f8382ce1"
                    }
                  },
                  "2154 IRN not found": {
                    "summary": "2154 IRN not found",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2154",
                            "ErrorMessage": "IRN details are not found"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9cccb457-b198-498f-97af-66267ad55c60"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Generate E-Invoice",
        "deprecated": false,
        "description": "",
        "operationId": "generateIrn",
        "tags": [
          "e-Invoice1",
          "e-Invoice12"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Invoice access token. For token-generation steps, refer to the [Generate E-Invoice Session](/recipes/gst/authentication/generate_e_invoice_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GenerateEInvoiceRequest"
              },
              "examples": {
                "2258 Supplier state code does not match": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/12101",
                      "Dt": "18/08/2022"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 414203,
                      "Stcd": "27",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "DispDtls": {
                      "Nm": "ABC company pvt ltd",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ShipDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "CBE company pvt ltd",
                      "TrdNm": "kuvempu layout",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345",
                        "BchDtls": {
                          "Nm": "123456",
                          "ExpDt": "01/08/2020",
                          "WrDt": "01/09/2020"
                        },
                        "AttribDtls": [
                          {
                            "Nm": "Rice",
                            "Val": "10000"
                          }
                        ]
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    },
                    "PayDtls": {
                      "Nm": "ABCDE",
                      "AccDet": "5697389713210",
                      "Mode": "Cash",
                      "FinInsBr": "SBIN11000",
                      "PayTerm": "100",
                      "PayInstr": "Gift",
                      "CrTrn": "test",
                      "DirDr": "test",
                      "CrDay": 100,
                      "PaidAmt": 10000,
                      "PaymtDue": 5000
                    },
                    "RefDtls": {
                      "InvRm": "TEST",
                      "DocPerdDtls": {
                        "InvStDt": "01/08/2020",
                        "InvEndDt": "01/09/2020"
                      },
                      "PrecDocDtls": [
                        {
                          "InvNo": "DOC/002",
                          "InvDt": "01/08/2020",
                          "OthRefNo": "123456"
                        }
                      ],
                      "ContrDtls": [
                        {
                          "RecAdvRefr": "Doc/003",
                          "RecAdvDt": "01/08/2020",
                          "TendRefr": "Abc001",
                          "ContrRefr": "Co123",
                          "ExtRefr": "Yo456",
                          "ProjRefr": "Doc-456",
                          "PORefr": "Doc-789",
                          "PORefDt": "01/08/2020"
                        }
                      ]
                    },
                    "AddlDocDtls": [
                      {
                        "Url": "https://einv-apisandbox.nic.in",
                        "Docs": "Test Doc",
                        "Info": "Document Test"
                      }
                    ],
                    "ExpDtls": {
                      "ShipBNo": "A-248",
                      "ShipBDt": "01/08/2020",
                      "Port": "INABG1",
                      "RefClm": "N",
                      "ForCur": "AED",
                      "CntCode": "AE",
                      "ExpDuty": null
                    },
                    "EwbDtls": {
                      "TransId": "12AWGPV7107B1Z1",
                      "TransName": "XYZ EXPORTS",
                      "Distance": 100,
                      "TransDocNo": "DOC01",
                      "TransDocDt": "18/08/2020",
                      "VehNo": "ka123456",
                      "VehType": "R",
                      "TransMode": "1"
                    }
                  },
                  "summary": "2258 Supplier state code does not match"
                },
                "5002 Version field is required": {
                  "value": {
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/1219011",
                      "Dt": "18/08/2022"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 413201,
                      "Stcd": "27",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "DispDtls": {
                      "Nm": "ABC company pvt ltd",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ShipDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "CBE company pvt ltd",
                      "TrdNm": "kuvempu layout",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345",
                        "BchDtls": {
                          "Nm": "123456",
                          "ExpDt": "01/08/2020",
                          "WrDt": "01/09/2020"
                        },
                        "AttribDtls": [
                          {
                            "Nm": "Rice",
                            "Val": "10000"
                          }
                        ]
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    },
                    "PayDtls": {
                      "Nm": "ABCDE",
                      "AccDet": "5697389713210",
                      "Mode": "Cash",
                      "FinInsBr": "SBIN11000",
                      "PayTerm": "100",
                      "PayInstr": "Gift",
                      "CrTrn": "test",
                      "DirDr": "test",
                      "CrDay": 100,
                      "PaidAmt": 10000,
                      "PaymtDue": 5000
                    },
                    "RefDtls": {
                      "InvRm": "TEST",
                      "DocPerdDtls": {
                        "InvStDt": "01/08/2020",
                        "InvEndDt": "01/09/2020"
                      },
                      "PrecDocDtls": [
                        {
                          "InvNo": "DOC/002",
                          "InvDt": "01/08/2020",
                          "OthRefNo": "123456"
                        }
                      ],
                      "ContrDtls": [
                        {
                          "RecAdvRefr": "Doc/003",
                          "RecAdvDt": "01/08/2020",
                          "TendRefr": "Abc001",
                          "ContrRefr": "Co123",
                          "ExtRefr": "Yo456",
                          "ProjRefr": "Doc-456",
                          "PORefr": "Doc-789",
                          "PORefDt": "01/08/2020"
                        }
                      ]
                    },
                    "AddlDocDtls": [
                      {
                        "Url": "https://einv-apisandbox.nic.in",
                        "Docs": "Test Doc",
                        "Info": "Document Test"
                      }
                    ],
                    "ExpDtls": {
                      "ShipBNo": "A-248",
                      "ShipBDt": "01/08/2020",
                      "Port": "INABG1",
                      "RefClm": "N",
                      "ForCur": "AED",
                      "CntCode": "AE",
                      "ExpDuty": null
                    },
                    "EwbDtls": {
                      "TransId": "12AWGPV7107B1Z1",
                      "TransName": "XYZ EXPORTS",
                      "Distance": 100,
                      "TransDocNo": "DOC01",
                      "TransDocDt": "18/08/2020",
                      "VehNo": "ka123456",
                      "VehType": "R",
                      "TransMode": "1"
                    }
                  },
                  "summary": "5002 Version field is required"
                },
                "200 e-Invoice generated (Services)": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/111",
                      "Dt": "01/01/2024"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "BANGALORE",
                      "Pin": 560091,
                      "Stcd": "29",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "API Access",
                        "IsServc": "Y",
                        "HsnCd": "998314",
                        "Qty": 1,
                        "FreeQty": 0,
                        "Unit": "BAG",
                        "UnitPrice": 999,
                        "TotAmt": 846.62,
                        "PreTaxVal": 846.62,
                        "AssAmt": 846.62,
                        "GstRt": 18,
                        "IgstAmt": 152.38,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "TotItemVal": 999
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 846.62,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 152.38,
                      "CesVal": 0,
                      "StCesVal": 0,
                      "Discount": 0,
                      "OthChrg": 0,
                      "RndOffAmt": 0,
                      "TotInvVal": 999
                    }
                  },
                  "summary": "200 e-Invoice generated (Services)"
                },
                "200 e-Invoice generated (Goods)": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/112",
                      "Dt": "01/01/2024"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "BANGALORE",
                      "Pin": 560091,
                      "Stcd": "29",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345"
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    }
                  },
                  "summary": "200 e-Invoice generated (Goods)"
                },
                "2278 IRN generated and cancelled": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/113",
                      "Dt": "01/01/2024"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "BANGALORE",
                      "Pin": 560091,
                      "Stcd": "29",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345"
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    },
                    "DispDtls": {
                      "Nm": "ABC company pvt ltd",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ShipDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "CBE company pvt ltd",
                      "TrdNm": "kuvempu layout",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ExpDtls": {
                      "ShipBNo": "A-248",
                      "ShipBDt": "01/08/2020",
                      "Port": "INABG1",
                      "RefClm": "N",
                      "ForCur": "AED",
                      "CntCode": "AE",
                      "ExpDuty": null
                    },
                    "EwbDtls": {
                      "TransId": "12AWGPV7107B1Z1",
                      "TransName": "XYZ EXPORTS",
                      "Distance": 5,
                      "TransDocNo": "DOC01",
                      "TransDocDt": "05/01/2024",
                      "VehNo": "ka123456",
                      "VehType": "R",
                      "TransMode": "1"
                    }
                  },
                  "summary": "2278 IRN generated and cancelled"
                },
                "200 e-Invoice with EWB generated": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/11544422",
                      "Dt": "05/01/2024"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "BANGALORE",
                      "Pin": 560091,
                      "Stcd": "29",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345"
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    },
                    "DispDtls": {
                      "Nm": "ABC company pvt ltd",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ShipDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "CBE company pvt ltd",
                      "TrdNm": "kuvempu layout",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ExpDtls": {
                      "ShipBNo": "A-248",
                      "ShipBDt": "01/08/2020",
                      "Port": "INABG1",
                      "RefClm": "N",
                      "ForCur": "AED",
                      "CntCode": "AE",
                      "ExpDuty": null
                    },
                    "EwbDtls": {
                      "TransId": "12AWGPV7107B1Z1",
                      "TransName": "XYZ EXPORTS",
                      "Distance": 5,
                      "TransDocNo": "DOC01",
                      "TransDocDt": "05/01/2024",
                      "VehNo": "ka123456",
                      "VehType": "R",
                      "TransMode": "1"
                    }
                  },
                  "summary": "200 e-Invoice with EWB generated"
                },
                "2150 Duplicate IRN": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/1114745",
                      "Dt": "02/02/2024"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "BANGALORE",
                      "Pin": 560091,
                      "Stcd": "29",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345"
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    }
                  },
                  "summary": "2150 Duplicate IRN"
                },
                "2301 e-Commerce operator field empty": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/128",
                      "Dt": "01/01/2024"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "BANGALORE",
                      "Pin": 560091,
                      "Stcd": "29",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345"
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    },
                    "DispDtls": {
                      "Nm": "ABC company pvt ltd",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ShipDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "CBE company pvt ltd",
                      "TrdNm": "kuvempu layout",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ExpDtls": {
                      "ShipBNo": "A-248",
                      "ShipBDt": "01/08/2020",
                      "Port": "INABG1",
                      "RefClm": "N",
                      "ForCur": "AED",
                      "CntCode": "AE"
                    }
                  },
                  "summary": "2301 e-Commerce operator field empty"
                },
                "3026 E-Invoice not enabled": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/234001",
                      "Dt": "16/04/2024"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "BANGALORE",
                      "Pin": 560091,
                      "Stcd": "29",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "API Subscription (Startup Plan)",
                        "IsServc": "Y",
                        "HsnCd": "998314",
                        "Qty": 1,
                        "UnitPrice": 846.61,
                        "TotAmt": 999,
                        "AssAmt": 846.61,
                        "GstRt": 18,
                        "IgstAmt": 152.39,
                        "TotItemVal": 999
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 846.61,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 152.39,
                      "TotInvVal": 999
                    }
                  },
                  "summary": "3026 E-Invoice not enabled"
                },
                "Request Example": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "EcmGstin": null,
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/113",
                      "Dt": "01/01/2024"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "BANGALORE",
                      "Pin": 560091,
                      "Stcd": "29",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345"
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    },
                    "DispDtls": {
                      "Nm": "ABC company pvt ltd",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ShipDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "CBE company pvt ltd",
                      "TrdNm": "kuvempu layout",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ExpDtls": {
                      "ShipBNo": "A-248",
                      "ShipBDt": "01/08/2020",
                      "Port": "INABG1",
                      "RefClm": "N",
                      "ForCur": "AED",
                      "CntCode": "AE",
                      "ExpDuty": null
                    },
                    "EwbDtls": {
                      "TransId": "12AWGPV7107B1Z1",
                      "TransName": "XYZ EXPORTS",
                      "Distance": 5,
                      "TransDocNo": "DOC01",
                      "TransDocDt": "05/01/2024",
                      "VehNo": "ka123456",
                      "VehType": "R",
                      "TransMode": "1"
                    }
                  },
                  "summary": "Request Example"
                },
                "Request Example (Postman)": {
                  "value": {
                    "Version": "1.1",
                    "TranDtls": {
                      "TaxSch": "GST",
                      "SupTyp": "B2B",
                      "RegRev": "Y",
                      "IgstOnIntra": "N"
                    },
                    "DocDtls": {
                      "Typ": "INV",
                      "No": "DOC/12101",
                      "Dt": "18/08/2022"
                    },
                    "SellerDtls": {
                      "Gstin": "29AAACQ3770E000",
                      "LglNm": "Acme Industries Private Limited",
                      "TrdNm": "Acme Industries Private Limited",
                      "Addr1": "5th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 414203,
                      "Stcd": "27",
                      "Ph": "9000000000",
                      "Em": "abc@gmail.com"
                    },
                    "BuyerDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "XYZ company pvt ltd",
                      "TrdNm": "XYZ Industries",
                      "Pos": "12",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "GANDHINAGAR",
                      "Pin": 562160,
                      "Stcd": "29",
                      "Ph": "91111111111",
                      "Em": "xyz@yahoo.com"
                    },
                    "DispDtls": {
                      "Nm": "ABC company pvt ltd",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ShipDtls": {
                      "Gstin": "29AWGPV7107B1Z1",
                      "LglNm": "CBE company pvt ltd",
                      "TrdNm": "kuvempu layout",
                      "Addr1": "7th block, kuvempu layout",
                      "Addr2": "kuvempu layout",
                      "Loc": "Banagalore",
                      "Pin": 562160,
                      "Stcd": "29"
                    },
                    "ItemList": [
                      {
                        "SlNo": "1",
                        "PrdDesc": "Rice",
                        "IsServc": "N",
                        "HsnCd": "1001",
                        "Barcde": "123456",
                        "Qty": 100.345,
                        "FreeQty": 10,
                        "Unit": "BAG",
                        "UnitPrice": 99.545,
                        "TotAmt": 9988.84,
                        "Discount": 10,
                        "PreTaxVal": 1,
                        "AssAmt": 9978.84,
                        "GstRt": 12,
                        "IgstAmt": 1197.46,
                        "CgstAmt": 0,
                        "SgstAmt": 0,
                        "CesRt": 5,
                        "CesAmt": 498.94,
                        "CesNonAdvlAmt": 10,
                        "StateCesRt": 12,
                        "StateCesAmt": 1197.46,
                        "StateCesNonAdvlAmt": 5,
                        "OthChrg": 10,
                        "TotItemVal": 12897.7,
                        "OrdLineRef": "3256",
                        "OrgCntry": "AG",
                        "PrdSlNo": "12345",
                        "BchDtls": {
                          "Nm": "123456",
                          "ExpDt": "01/08/2020",
                          "WrDt": "01/09/2020"
                        },
                        "AttribDtls": [
                          {
                            "Nm": "Rice",
                            "Val": "10000"
                          }
                        ]
                      }
                    ],
                    "ValDtls": {
                      "AssVal": 9978.84,
                      "CgstVal": 0,
                      "SgstVal": 0,
                      "IgstVal": 1197.46,
                      "CesVal": 508.94,
                      "StCesVal": 1202.46,
                      "Discount": 10,
                      "OthChrg": 20,
                      "RndOffAmt": 0.3,
                      "TotInvVal": 12908,
                      "TotInvValFc": 12897.7
                    },
                    "PayDtls": {
                      "Nm": "ABCDE",
                      "AccDet": "5697389713210",
                      "Mode": "Cash",
                      "FinInsBr": "SBIN11000",
                      "PayTerm": "100",
                      "PayInstr": "Gift",
                      "CrTrn": "test",
                      "DirDr": "test",
                      "CrDay": 100,
                      "PaidAmt": 10000,
                      "PaymtDue": 5000
                    },
                    "RefDtls": {
                      "InvRm": "TEST",
                      "DocPerdDtls": {
                        "InvStDt": "01/08/2020",
                        "InvEndDt": "01/09/2020"
                      },
                      "PrecDocDtls": [
                        {
                          "InvNo": "DOC/002",
                          "InvDt": "01/08/2020",
                          "OthRefNo": "123456"
                        }
                      ],
                      "ContrDtls": [
                        {
                          "RecAdvRefr": "Doc/003",
                          "RecAdvDt": "01/08/2020",
                          "TendRefr": "Abc001",
                          "ContrRefr": "Co123",
                          "ExtRefr": "Yo456",
                          "ProjRefr": "Doc-456",
                          "PORefr": "Doc-789",
                          "PORefDt": "01/08/2020"
                        }
                      ]
                    },
                    "AddlDocDtls": [
                      {
                        "Url": "https://einv-apisandbox.nic.in",
                        "Docs": "Test Doc",
                        "Info": "Document Test"
                      }
                    ],
                    "ExpDtls": {
                      "ShipBNo": "A-248",
                      "ShipBDt": "01/08/2020",
                      "Port": "INABG1",
                      "RefClm": "N",
                      "ForCur": "AED",
                      "CntCode": "AE",
                      "ExpDuty": null
                    },
                    "EwbDtls": {
                      "TransId": "12AWGPV7107B1Z1",
                      "TransName": "XYZ EXPORTS",
                      "Distance": 100,
                      "TransDocNo": "DOC01",
                      "TransDocDt": "18/08/2020",
                      "VehNo": "ka123456",
                      "VehType": "R",
                      "TransMode": "1"
                    }
                  },
                  "summary": "Request Example (Postman)"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "2258 Supplier state code does not match / 5002 Version field is required / 200 E-Invoice generated (Services) / 200 E-Invoice generated (Goods) / 2278 IRN generated and cancelled / 200 E-Invoice with EWB generated / 2150 Duplicate IRN / 2301 e-Commerce operator field empty / 3026 E-Invoice not enabled",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GenerateEInvoiceResponse"
                },
                "examples": {
                  "2258 Supplier state code does not match": {
                    "summary": "2258 Supplier state code does not match",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2258",
                            "ErrorMessage": "Supplier GSTIN state codedoes not match with the state code passed in supplier details"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ebde421c-2720-4f24-a9ea-f71ec31fc31d"
                    }
                  },
                  "5002 Version field is required": {
                    "summary": "5002 Version field is required",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "5002",
                            "ErrorMessage": "The Version field is required."
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "d2078ce5-72f1-4f98-b546-97c55e3c7c51"
                    }
                  },
                  "200 e-Invoice generated (Services)": {
                    "summary": "200 e-Invoice generated (Services)",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2024-02-22 17:42:00",
                          "AckNo": 112410188589976,
                          "EwbDt": null,
                          "EwbNo": null,
                          "EwbValidTill": null,
                          "Irn": "7859346583894f8602c10f5a1d4a40265c90824ad63ba999f04836a57aa70e7c",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1ODk5NzYsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMiAxNzo0MjowMFwiLFwiSXJuXCI6XCI3ODU5MzQ2NTgzODk0Zjg2MDJjMTBmNWExZDRhNDAyNjVjOTA4MjRhZDYzYmE5OTlmMDQ4MzZhNTdhYTcwZTdjXCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzExMVwiLFwiRHRcIjpcIjAxLzAxLzIwMjRcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiSXRlbUxpc3RcIjpbe1wiSXRlbU5vXCI6MCxcIlNsTm9cIjpcIjFcIixcIklzU2VydmNcIjpcIllcIixcIlByZERlc2NcIjpcIkFQSSBBY2Nlc3NcIixcIkhzbkNkXCI6XCI5OTgzMTRcIixcIlF0eVwiOjEsXCJGcmVlUXR5XCI6MCxcIlVuaXRcIjpcIkJBR1wiLFwiVW5pdFByaWNlXCI6OTk5LFwiVG90QW10XCI6ODQ2LjYyLFwiUHJlVGF4VmFsXCI6ODQ2LjYyLFwiQXNzQW10XCI6ODQ2LjYyLFwiR3N0UnRcIjoxOCxcIklnc3RBbXRcIjoxNTIuMzgsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiVG90SXRlbVZhbFwiOjk5OX1dLFwiVmFsRHRsc1wiOntcIkFzc1ZhbFwiOjg0Ni42MixcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTUyLjM4LFwiQ2VzVmFsXCI6MCxcIlN0Q2VzVmFsXCI6MCxcIkRpc2NvdW50XCI6MCxcIk90aENocmdcIjowLFwiUm5kT2ZmQW10XCI6MCxcIlRvdEludlZhbFwiOjk5OX19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.WVQy062ECtQtIgVYLMKT3qQWXNnAlguX2Wb5qMfanhA6ku5H0O_ixU3tYsKhUVxj_vmiZZzhETFEpw0YypimwUF7bl1w4Y7tWvRRP-eP6BxMgmdILltY5l2zStGPm3nMKbKG6lsh02PiK2bdPDGaEBAzz3ZxrHgws4710a-8a5pCTN7EE1n49EGyGvQS9gLBEASYinrzQHI4lzNjY_NTZ6iK5zlah1WWbAVBY0Hg4fH_yC89ydMj_upPJvJkF50X9de8vPUNKBuMP8tpnTgD-eUsE0VjtNCpczUZ9nKRvOUQlz54EVGfa61Yqq5Tn7oPMXOW90h1QAUlZ_7uINP8sQ",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzExMVwiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMS8yMDI0XCIsXCJUb3RJbnZWYWxcIjo5OTksXCJJdGVtQ250XCI6MSxcIk1haW5Ic25Db2RlXCI6XCI5OTgzMTRcIixcIklyblwiOlwiNzg1OTM0NjU4Mzg5NGY4NjAyYzEwZjVhMWQ0YTQwMjY1YzkwODI0YWQ2M2JhOTk5ZjA0ODM2YTU3YWE3MGU3Y1wiLFwiSXJuRHRcIjpcIjIwMjQtMDItMjIgMTc6NDI6MDBcIn0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.BcQeCgE3S9NjLEzoJCADyiG71P-dE5C8PFE3d0TWWay8TEPuEdaShXBZjsAz7-n8VS0vox99Kj1p2_Qbo8pQ4g9NB3h3yC1O-FL9FLokVF6t1pzb5l8_t8Ej4MIzUjTxGhLrW-rFxCyIWuOz6ixzuAaUfyDjXW5mhAVeREXrE0pioMhFuFbnsLkyVLUsxJFk3Jc90fActOyRLm6xgEeJ5oAoR8IpzHySSTMM4_tx910f0u-IuXf59GxLQQAKyjF1UfrRmTjN3sPmDk4SSKxz0aqQ0yS-LHiAx5vL8kSws2Icyri6dS8WLLHR0_cWKs_VWf4xg87oFM5MgKTVq3mdzg",
                          "Status": "ACT"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "cec7c77e-4521-4f7e-81ac-7ec941099826"
                    }
                  },
                  "200 e-Invoice generated (Goods)": {
                    "summary": "200 e-Invoice generated (Goods)",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2024-02-22 17:44:00",
                          "AckNo": 112410188590033,
                          "EwbDt": null,
                          "EwbNo": null,
                          "EwbValidTill": null,
                          "Irn": "1f33d0856cf71d6f836ed56cd20648994ba0332fe2e3659a2638e01047d12ce9",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1OTAwMzMsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMiAxNzo0NDowMFwiLFwiSXJuXCI6XCIxZjMzZDA4NTZjZjcxZDZmODM2ZWQ1NmNkMjA2NDg5OTRiYTAzMzJmZTJlMzY1OWEyNjM4ZTAxMDQ3ZDEyY2U5XCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzExMlwiLFwiRHRcIjpcIjAxLzAxLzIwMjRcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiSXRlbUxpc3RcIjpbe1wiSXRlbU5vXCI6MCxcIlNsTm9cIjpcIjFcIixcIklzU2VydmNcIjpcIk5cIixcIlByZERlc2NcIjpcIlJpY2VcIixcIkhzbkNkXCI6XCIxMDAxXCIsXCJCYXJjZGVcIjpcIjEyMzQ1NlwiLFwiUXR5XCI6MTAwLjM0NSxcIkZyZWVRdHlcIjoxMCxcIlVuaXRcIjpcIkJBR1wiLFwiVW5pdFByaWNlXCI6OTkuNTQ1LFwiVG90QW10XCI6OTk4OC44NCxcIkRpc2NvdW50XCI6MTAsXCJQcmVUYXhWYWxcIjoxLFwiQXNzQW10XCI6OTk3OC44NCxcIkdzdFJ0XCI6MTIsXCJJZ3N0QW10XCI6MTE5Ny40NixcIkNnc3RBbXRcIjowLFwiU2dzdEFtdFwiOjAsXCJDZXNSdFwiOjUsXCJDZXNBbXRcIjo0OTguOTQsXCJDZXNOb25BZHZsQW10XCI6MTAsXCJTdGF0ZUNlc1J0XCI6MTIsXCJTdGF0ZUNlc0FtdFwiOjExOTcuNDYsXCJTdGF0ZUNlc05vbkFkdmxBbXRcIjo1LFwiT3RoQ2hyZ1wiOjEwLFwiVG90SXRlbVZhbFwiOjEyODk3LjcsXCJPcmRMaW5lUmVmXCI6XCIzMjU2XCIsXCJPcmdDbnRyeVwiOlwiQUdcIixcIlByZFNsTm9cIjpcIjEyMzQ1XCJ9XSxcIlZhbER0bHNcIjp7XCJBc3NWYWxcIjo5OTc4Ljg0LFwiQ2dzdFZhbFwiOjAsXCJTZ3N0VmFsXCI6MCxcIklnc3RWYWxcIjoxMTk3LjQ2LFwiQ2VzVmFsXCI6NTA4Ljk0LFwiU3RDZXNWYWxcIjoxMjAyLjQ2LFwiRGlzY291bnRcIjoxMCxcIk90aENocmdcIjoyMCxcIlJuZE9mZkFtdFwiOjAuMyxcIlRvdEludlZhbFwiOjEyOTA4LFwiVG90SW52VmFsRmNcIjoxMjg5Ny43fX0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.tz3OfVG9_sGpvIaAzGbzblqp7diACw74nluAvvdFXq2PnMe8bG84c_gitoQVjI0ieZ3CLO0PmjKcs8psm12D4k5YkKrbg3bPB3UYXn7Tx43zDHdZtgIAs0OM45DHFA9zXX_e6YP_CIhs9aEZ9naE7ZJ4SUZ4GB333NZcFk_ou0K2HKXDRwtbnSPPX6FXoSy2GLS_LV4Y1KevnYM23ar0DaB5rq54B9ii_i0oIm7GwsRBwFc2zwhPW5F6BF81j4Jl6v0eQBP2k83RtIhaVicycANio-QClFx_Wj69gDBcQZwoAYKtVKxKcaWu8IEMCqxOolZ-QNF1Sg3WWHNBINLPzQ",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzExMlwiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMS8yMDI0XCIsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIkl0ZW1DbnRcIjoxLFwiTWFpbkhzbkNvZGVcIjpcIjEwMDFcIixcIklyblwiOlwiMWYzM2QwODU2Y2Y3MWQ2ZjgzNmVkNTZjZDIwNjQ4OTk0YmEwMzMyZmUyZTM2NTlhMjYzOGUwMTA0N2QxMmNlOVwiLFwiSXJuRHRcIjpcIjIwMjQtMDItMjIgMTc6NDQ6MDBcIn0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.f1zWJHifnxGZTCsMPZIj8iJ0hzqfetv18q7gbWGZiuz5JkfFQy27D2fDHTVuwJCVSZfNiFyegw6bOGMddvTFgI_F-vzUXRzqivw-mJSZrhbKusj6DEeOy9RdLTqTU7Alp7J6rOXhUOhLCOeumCduXnXeWBCjFwGPJ6C1Ht35GrSvPvduy8KMsI3TYY0xg1c6eQyCUy-je5fbLVVnfVLtlCZeHSVZJB2MUNG_nKa03Qa_DVr_eNt-cdjxZghMJXpdb8srZlQS_ixcHnLv5SO5plo68oFRYBbpbkptO7IDH96t2CtBD93GCSRWyUT6qyCC36SOwrJCBReexddH2_gk1w",
                          "Status": "ACT"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "99969a01-34c2-4e22-82b9-302c492088a8"
                    }
                  },
                  "2278 IRN generated and cancelled": {
                    "summary": "2278 IRN generated and cancelled",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2278",
                            "ErrorMessage": "IRN is already generated and is cancelled for this Document number. The duplicate IRN cannot be generated for the same  number."
                          }
                        ],
                        "InfoDtls": [
                          {
                            "Desc": {
                              "AckDt": "2024-02-07 19:10:00",
                              "AckNo": 112410188245470,
                              "Irn": "4b6c5d74157759eb327d98c6473a9355ea1bac713a5325d1b9f214d8be15d154"
                            },
                            "InfCd": "DUPIRN"
                          }
                        ],
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "85d13733-330f-4e7d-b031-24d67cb8d45b"
                    }
                  },
                  "200 e-Invoice with EWB generated": {
                    "summary": "200 e-Invoice with EWB generated",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2024-02-22 17:45:00",
                          "AckNo": 112410188590060,
                          "EwbDt": "2024-02-22 17:45:00",
                          "EwbNo": 141010315518,
                          "EwbValidTill": "2024-02-23 23:59:00",
                          "Irn": "7bcff7dbaabc8841c4d62c838d4e83b30e7f14d03b2cbc8e39dccec63578e4d6",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1OTAwNjAsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMiAxNzo0NTowMFwiLFwiSXJuXCI6XCI3YmNmZjdkYmFhYmM4ODQxYzRkNjJjODM4ZDRlODNiMzBlN2YxNGQwM2IyY2JjOGUzOWRjY2VjNjM1NzhlNGQ2XCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzExM1wiLFwiRHRcIjpcIjAxLzAxLzIwMjRcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiRGlzcER0bHNcIjp7XCJObVwiOlwiQUJDIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJCYW5hZ2Fsb3JlXCIsXCJQaW5cIjo1NjIxNjAsXCJTdGNkXCI6XCIyOVwifSxcIlNoaXBEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QVdHUFY3MTA3QjFaMVwiLFwiTGdsTm1cIjpcIkNCRSBjb21wYW55IHB2dCBsdGRcIixcIlRyZE5tXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJCYW5hZ2Fsb3JlXCIsXCJQaW5cIjo1NjIxNjAsXCJTdGNkXCI6XCIyOVwifSxcIkl0ZW1MaXN0XCI6W3tcIkl0ZW1Ob1wiOjAsXCJTbE5vXCI6XCIxXCIsXCJJc1NlcnZjXCI6XCJOXCIsXCJQcmREZXNjXCI6XCJSaWNlXCIsXCJIc25DZFwiOlwiMTAwMVwiLFwiQmFyY2RlXCI6XCIxMjM0NTZcIixcIlF0eVwiOjEwMC4zNDUsXCJGcmVlUXR5XCI6MTAsXCJVbml0XCI6XCJCQUdcIixcIlVuaXRQcmljZVwiOjk5LjU0NSxcIlRvdEFtdFwiOjk5ODguODQsXCJEaXNjb3VudFwiOjEwLFwiUHJlVGF4VmFsXCI6MSxcIkFzc0FtdFwiOjk5NzguODQsXCJHc3RSdFwiOjEyLFwiSWdzdEFtdFwiOjExOTcuNDYsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiQ2VzUnRcIjo1LFwiQ2VzQW10XCI6NDk4Ljk0LFwiQ2VzTm9uQWR2bEFtdFwiOjEwLFwiU3RhdGVDZXNSdFwiOjEyLFwiU3RhdGVDZXNBbXRcIjoxMTk3LjQ2LFwiU3RhdGVDZXNOb25BZHZsQW10XCI6NSxcIk90aENocmdcIjoxMCxcIlRvdEl0ZW1WYWxcIjoxMjg5Ny43LFwiT3JkTGluZVJlZlwiOlwiMzI1NlwiLFwiT3JnQ250cnlcIjpcIkFHXCIsXCJQcmRTbE5vXCI6XCIxMjM0NVwifV0sXCJWYWxEdGxzXCI6e1wiQXNzVmFsXCI6OTk3OC44NCxcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTE5Ny40NixcIkNlc1ZhbFwiOjUwOC45NCxcIlN0Q2VzVmFsXCI6MTIwMi40NixcIkRpc2NvdW50XCI6MTAsXCJPdGhDaHJnXCI6MjAsXCJSbmRPZmZBbXRcIjowLjMsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIlRvdEludlZhbEZjXCI6MTI4OTcuN30sXCJFeHBEdGxzXCI6e1wiU2hpcEJOb1wiOlwiQS0yNDhcIixcIlNoaXBCRHRcIjpcIjAxLzA4LzIwMjBcIixcIlBvcnRcIjpcIklOQUJHMVwiLFwiUmVmQ2xtXCI6XCJOXCIsXCJGb3JDdXJcIjpcIkFFRFwiLFwiQ250Q29kZVwiOlwiQUVcIn0sXCJFd2JEdGxzXCI6e1wiVHJhbnNJZFwiOlwiMTJBV0dQVjcxMDdCMVoxXCIsXCJUcmFuc05hbWVcIjpcIlhZWiBFWFBPUlRTXCIsXCJUcmFuc01vZGVcIjpcIjFcIixcIkRpc3RhbmNlXCI6NSxcIlRyYW5zRG9jTm9cIjpcIkRPQzAxXCIsXCJUcmFuc0RvY0R0XCI6XCIwNS8wMS8yMDI0XCIsXCJWZWhOb1wiOlwia2ExMjM0NTZcIixcIlZlaFR5cGVcIjpcIlJcIn19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.BtNL3gmXfh-vKw3e3J43JXrpIw8EjOY3AalYEyIKU3ymVvMOCe7sq46_W5-YE7pU3YIj4EmgX1ZR3pXUuMMbcv04ud9UVaHwr-XtUOMbELGWSodzXUbBNR_wk89ljQSsyEytEXFhcqJPKf9wyGjg-v67CCYPpfRE5urU6UTosIao8H6JImldTwAteaU7jNxzgJIdzgPgAB5CKK3FTvpaE7Z8LyQdEv2bwRHM_pOsc82SfXtoBumCncOPQe7VoEaj9Sme1hRdmCB5APkoK3781jvg_s1aB-c-BBmq3qxu6_gDkuQ4IK1CdDQ1ydL0c-hVhidqRkRR9l0bS19uUxkkVg",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzExM1wiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMS8yMDI0XCIsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIkl0ZW1DbnRcIjoxLFwiTWFpbkhzbkNvZGVcIjpcIjEwMDFcIixcIklyblwiOlwiN2JjZmY3ZGJhYWJjODg0MWM0ZDYyYzgzOGQ0ZTgzYjMwZTdmMTRkMDNiMmNiYzhlMzlkY2NlYzYzNTc4ZTRkNlwiLFwiSXJuRHRcIjpcIjIwMjQtMDItMjIgMTc6NDU6MDBcIn0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.cqt9xe5wC7DD_y_YNdlsp78QpXibIlm_jVRXZ_T7AFMQsHjcHWrnlkJfItvTsneWCzeZtZyw7xXf6VWEIXw-_nEYjQFLA--6oqO73-n3SJuHLV6CgO3Wj7oXqluxK85YHIErh2ki2VkZ9lM0LiTyGTt53S5RWhjF1VYh-K2Z_d6ZC-9N1ShliRQANKKUHlNcSqqMt71yBL0ILlh1XCItmc8_Ni5bBq_JwyEs5nQnrznf6bWxMnl3-qw11e9oNXWTyjFoLke_BAONiHtJqN0ajz1DWkS_gYiS7Fa1QTZ-tRjK0dABoTz6vI9koJHGimt5HVsCA1kk43LlYgGO_RGIXg",
                          "Status": "ACT"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6243e998-88de-47fa-b4e2-67be2db9c4b3"
                    }
                  },
                  "2150 Duplicate IRN": {
                    "summary": "2150 Duplicate IRN",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2150",
                            "ErrorMessage": "Duplicate IRN"
                          }
                        ],
                        "InfoDtls": [
                          {
                            "Desc": {
                              "AckDt": "2024-02-22 17:42:00",
                              "AckNo": 112410188589976,
                              "Irn": "7859346583894f8602c10f5a1d4a40265c90824ad63ba999f04836a57aa70e7c"
                            },
                            "InfCd": "DUPIRN"
                          }
                        ],
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "028fb954-f7b5-4ad1-9093-1d3ce035e2ab"
                    }
                  },
                  "2301 e-Commerce operator field empty": {
                    "summary": "2301 e-Commerce operator field empty",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2301",
                            "ErrorMessage": "E-Commerce Operator GSTIN field should not be empty when e-Commerce operator generates E-Invoice"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e3ad295e-2cf3-4ff0-b208-247500a4d344"
                    }
                  },
                  "3026 E-Invoice not enabled": {
                    "summary": "3026 E-Invoice not enabled",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "3026",
                            "ErrorMessage": "E-Invoice Options are not enabled for this GSTIN -29AAACQ3770E000"
                          },
                          {
                            "ErrorCode": "2300",
                            "ErrorMessage": "Supplier GSTIN should be of type Regular or SED"
                          },
                          {
                            "ErrorCode": "2193",
                            "ErrorMessage": "For Sl. No. 1, Taxable Value (AssAmt) value is not equal to (TotAmt - Discount)"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "110bab9f-8c87-417b-a6de-19cb22cb51c5"
                    }
                  },
                  "2301 e-Commerce operator field empty 2": {
                    "summary": "2301 e-Commerce operator field empty 2",
                    "value": {
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "code": 200,
                      "data": {
                        "Status": 0,
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2301",
                            "ErrorMessage": "E-Commerce Operator GSTIN field should not be empty when e-Commerce operator generates e-Invoice"
                          }
                        ],
                        "InfoDtls": null
                      },
                      "timestamp": 1776921876217
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-invoice/pdf/generate": {
      "post": {
        "summary": "Generate E-Invoice PDF",
        "deprecated": false,
        "description": "Generate the PDF for the E-Invoice generated by passing the signed QR code and signed E-Invoice.",
        "operationId": "generateEInvoicePdf",
        "tags": [
          "e-Invoice1",
          "e-Invoice12"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Invoice access token. For token-generation steps, refer to the [Generate E-Invoice Session](/recipes/gst/authentication/generate_e_invoice_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GenerateEInvoicePdfRequest"
              },
              "examples": {
                "200 PDF Generated (PROD)": {
                  "value": {
                    "@entity": "in.co.sandbox.gst.compliance.e-invoice.pdf.request",
                    "signed_qr_code": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJOSUMgU2FuZGJveCIsImRhdGEiOiJ7XCJTZWxsZXJHc3RpblwiOlwiMjlBQUFDUTM3NzBFMDAwXCIsXCJCdXllckdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkRvY05vXCI6XCJET0MvOTk5XCIsXCJEb2NUeXBcIjpcIklOVlwiLFwiRG9jRHRcIjpcIjA2LzEyLzIwMjRcIixcIlRvdEludlZhbFwiOjE2OTk5LFwiSXRlbUNudFwiOjEsXCJNYWluSHNuQ29kZVwiOlwiOTk3MzMxXCIsXCJJcm5cIjpcImUwNWJlYWFlNjNjM2VkNmU2ZTE5YjIyNGM1Yzk1NDc1ZTlhZWI5YmU2MGE3ODczYTlkZDRhYzRmZjc0MGFiYmNcIixcIklybkR0XCI6XCIyMDI0LTEyLTA2IDE5OjAzOjAwXCJ9In0.2IVYpGwSlk8H-6Bc7u038crGCuAQ176o47oIlJkjE1JvMT5vFdQTK3RX8KDH3JP9ALFndkxH8UxI1mUgNLtgOkQBQEaSf7isSB_A293ROjhDcjZJXCK0fYQdVXL2gPu3EeB72Tl6yZNUx0qlTEqNenfCgvIXPbOTrbR-xjPWS7qyXTSsxNT3ocgYlkUaqSpwrTp2XSDdt2pwog0JJCPQ2tTI6-IFvRtDCQUJdevfgdTCxTTUilseZTB4fGd2uplQ75cZVsIafFFas2_SDE1KNiXQ0VFSB67DmFRSgQ1mai_z4kxgGUQVYrImpgNVVrorz1JXi9gksaAFtQUhz_UmaA",
                    "irn": "e05beaae63c3ed6e6e19b224c5c95475e9aeb9be60a7873a9dd4ac4ff740abbc",
                    "signed_invoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJOSUMgU2FuZGJveCIsImRhdGEiOiJ7XCJBY2tOb1wiOjIxMjQxMDAwMDAzMjAzNixcIkFja0R0XCI6XCIyMDI0LTEyLTA2IDE5OjAzOjAwXCIsXCJJcm5cIjpcImUwNWJlYWFlNjNjM2VkNmU2ZTE5YjIyNGM1Yzk1NDc1ZTlhZWI5YmU2MGE3ODczYTlkZDRhYzRmZjc0MGFiYmNcIixcIlZlcnNpb25cIjpcIjEuMVwiLFwiVHJhbkR0bHNcIjp7XCJUYXhTY2hcIjpcIkdTVFwiLFwiU3VwVHlwXCI6XCJCMkJcIixcIlJlZ1JldlwiOlwiWVwiLFwiSWdzdE9uSW50cmFcIjpcIk5cIn0sXCJEb2NEdGxzXCI6e1wiVHlwXCI6XCJJTlZcIixcIk5vXCI6XCJET0MvOTk5XCIsXCJEdFwiOlwiMDYvMTIvMjAyNFwifSxcIlNlbGxlckR0bHNcIjp7XCJHc3RpblwiOlwiMjlBQUFDUTM3NzBFMDAwXCIsXCJMZ2xObVwiOlwiU2FuZGJveCBGaW5hbmNpYWwgVGVjaG5vbG9naWVzIFB2dCBMVGRcIixcIlRyZE5tXCI6XCJTYW5kYm94IEZpbmFuY2lhbCBUZWNobm9sb2dpZXMgUHZ0IExUZFwiLFwiQWRkcjFcIjpcIkJlbmdhbHVydVwiLFwiQWRkcjJcIjpcIkJlbmdhbHVydSwgS2FybmF0YWthXCIsXCJMb2NcIjpcIkJFTkdBTFVSVVwiLFwiUGluXCI6NTYwMDgzLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5OTk5OTQ0NDQ0XCIsXCJFbVwiOlwiYXV0b21hdGV0YXhlc0BzYW5kYm94LmNvLmluXCJ9LFwiQnV5ZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QVdHUFY3MTA3QjFaMVwiLFwiTGdsTm1cIjpcIkZpbmFuY2UgQm9va3MgUHZ0IEx0ZFwiLFwiVHJkTm1cIjpcIkZpbmFuY2UgQm9va3MgUHZ0IEx0ZFwiLFwiUG9zXCI6XCIyOVwiLFwiQWRkcjFcIjpcIkJlbmdhbHVydVwiLFwiTG9jXCI6XCJCRU5HQUxVUlVcIixcIlBpblwiOjU2MDA4MyxcIlBoXCI6XCI4ODg4ODMzMzMzXCIsXCJFbVwiOlwiYWNjb3VudHNAZmluYW5jZS5ib29rc1wiLFwiU3RjZFwiOlwiMjlcIn0sXCJJdGVtTGlzdFwiOlt7XCJJdGVtTm9cIjowLFwiU2xOb1wiOlwiMVwiLFwiSXNTZXJ2Y1wiOlwiWVwiLFwiUHJkRGVzY1wiOlwiQVBJIFN1YnNjcmlwdGlvblwiLFwiSHNuQ2RcIjpcIjk5NzMzMVwiLFwiUXR5XCI6MSxcIkZyZWVRdHlcIjowLFwiVW5pdFwiOlwicGNzXCIsXCJVbml0UHJpY2VcIjoxNjk5OSxcIlRvdEFtdFwiOjE0NDA1LjkyLFwiRGlzY291bnRcIjowLFwiQXNzQW10XCI6MTQ0MDUuOTIsXCJHc3RSdFwiOjE4LFwiSWdzdEFtdFwiOjAsXCJDZ3N0QW10XCI6MTI5Ni41NCxcIlNnc3RBbXRcIjoxMjk2LjU0LFwiQ2VzUnRcIjowLFwiQ2VzQW10XCI6MCxcIkNlc05vbkFkdmxBbXRcIjowLFwiU3RhdGVDZXNSdFwiOjAsXCJTdGF0ZUNlc0FtdFwiOjAsXCJTdGF0ZUNlc05vbkFkdmxBbXRcIjowLFwiT3RoQ2hyZ1wiOjAsXCJUb3RJdGVtVmFsXCI6MTY5OTl9XSxcIlZhbER0bHNcIjp7XCJBc3NWYWxcIjoxNDQwNS45MixcIkNnc3RWYWxcIjoxMjk2LjU0LFwiU2dzdFZhbFwiOjEyOTYuNTQsXCJJZ3N0VmFsXCI6MCxcIkNlc1ZhbFwiOjAsXCJTdENlc1ZhbFwiOjAsXCJEaXNjb3VudFwiOjAsXCJPdGhDaHJnXCI6MCxcIlJuZE9mZkFtdFwiOjAsXCJUb3RJbnZWYWxcIjoxNjk5OX19In0.s8uga45NjUHBWOzDgXpOysLCZzmA90MOR7A6uttEeszfpdSl_RBC4X4EXQj-pb69xIRM6lO-iAFjSdrMN0ZjxK8hjPKNaG5u6YJZmie8B_pTUrSoMhjLNHVHGjsun0PjON4Wm2kmBVju_aI9LIacX9OaWt14RH4ehkqhO5qmCorX0TsPlV-949EmCUY4OSGzngieMbqs92qo_hrtKqOYTDzk1D2na8gsgJuWy043k0OTWEfeWwptdRdi8hNw6X2_agxjhSf0rvUiMFBKhLVDaA1Ah74-L_sV8ZPYBAUr32CIuNrTW7IBBug6wkX0TX24gnIuKfvtOnP3hghA_2_BjA"
                  },
                  "summary": "200 PDF Generated (PROD)"
                },
                "422 Invalid signed QR Code": {
                  "value": {
                    "@entity": "in.co.sandbox.gst.compliance.e-invoice.pdf.request",
                    "signed_qr_code": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzExMVwiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMS8yMDI0XCIsXCJUb3RJbnZWYWxcIjo5OTksXCJJdGVtQ250XCI6MSxcIk1haW5Ic25Db2RlXCI6XCI5OTgzMTRcIixcIklyblwiOlwiNzg1OTM0NjU4Mzg5NGY4NjAyYzEwZjVhMWQ0YTQwMjY1YzkwODI0YWQ2M2JhOTk5ZjA0ODM2YTU3YWE3MGU3Y1wiLFwiSXJuRHRcIjpcIjIwMjQtMDItMjIgMTc6NDI6MDBcIn0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.BcQeCgE3S9NjLEzoJCADyiG71P-dE5C8PFE3d0TWWay8TEPuEdaShXBZjsAz7-n8VS0vox99Kj1p2_Qbo8pQ4g9NB3h3yC1O-FL9FLokVF6t1pzb5l8_t8Ej4MIzUjTxGhLrW-rFxCyIWuOz6ixzuAaUfyDjXW5mhAVsadasdwhFuFbnsLkyVLUsxJFk3Jc90fActOyRLm6xgEeJ5oAoR8IpzHySSTMM4_tx910f0u-IuXf59GxLQQAKyjF1UfrRmTjN3sPmDk4SSKxz0aqQ0yS-LHiAx5vL8kSws2Icyri6dS8WLLHR0_cWKs_VWf4xg87oFM5MgKTVq3mdzg",
                    "irn": "7859346583894f8602c10f5a1d4a40265c90824ad63ba999f04836a57aa70e7c",
                    "signed_invoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1ODk5NzYsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMiAxNzo0MjowMFwiLFwiSXJuXCI6XCI3ODU5MzQ2NTgzODk0Zjg2MDJjMTBmNWExZDRhNDAyNjVjOTA4MjRhZDYzYmE5OTlmMDQ4MzZhNTdhYTcwZTdjXCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzExMVwiLFwiRHRcIjpcIjAxLzAxLzIwMjRcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiSXRlbUxpc3RcIjpbe1wiSXRlbU5vXCI6MCxcIlNsTm9cIjpcIjFcIixcIklzU2VydmNcIjpcIllcIixcIlByZERlc2NcIjpcIkFQSSBBY2Nlc3NcIixcIkhzbkNkXCI6XCI5OTgzMTRcIixcIlF0eVwiOjEsXCJGcmVlUXR5XCI6MCxcIlVuaXRcIjpcIkJBR1wiLFwiVW5pdFByaWNlXCI6OTk5LFwiVG90QW10XCI6ODQ2LjYyLFwiUHJlVGF4VmFsXCI6ODQ2LjYyLFwiQXNzQW10XCI6ODQ2LjYyLFwiR3N0UnRcIjoxOCxcIklnc3RBbXRcIjoxNTIuMzgsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiVG90SXRlbVZhbFwiOjk5OX1dLFwiVmFsRHRsc1wiOntcIkFzc1ZhbFwiOjg0Ni42MixcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTUyLjM4LFwiQ2VzVmFsXCI6MCxcIlN0Q2VzVmFsXCI6MCxcIkRpc2NvdW50XCI6MCxcIk90aENocmdcIjowLFwiUm5kT2ZmQW10XCI6MCxcIlRvdEludlZhbFwiOjk5OX19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.WVQy062ECtQtIgVYLMKT3qQWXNnAlguX2Wb5qMfanhA6ku5H0O_ixU3tYsKhUVxj_vmiZZzhETFEpw0YypimwUF7bl1w4Y7tWvRRP-eP6BxMgmdILltY5l2zStGPm3nMKbKG6lsh02PiK2bdPDGaEBAzz3ZxrHgws4710a-8a5pCTN7EE1n49EGyGvQS9gLBEASYinrzQHI4lzNjY_NTZ6iK5zlah1WWbAVBY0Hg4fH_yC89ydMj_upPJvJkF50X9de8vPUNKBuMP8tpnTgD-eUsE0VjtNCpczUZ9nKRvOUQlz54EVGfa61Yqq5Tn7oPMXOW90h1QAUlZ_7uINP8sQ"
                  },
                  "summary": "422 Invalid signed QR Code"
                },
                "422 Invalid signed e-Invoice": {
                  "value": {
                    "@entity": "in.co.sandbox.gst.compliance.e-invoice.pdf.request",
                    "signed_qr_code": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzExMVwiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMS8yMDI0XCIsXCJUb3RJbnZWYWxcIjo5OTksXCJJdGVtQ250XCI6MSxcIk1haW5Ic25Db2RlXCI6XCI5OTgzMTRcIixcIklyblwiOlwiNzg1OTM0NjU4Mzg5NGY4NjAyYzEwZjVhMWQ0YTQwMjY1YzkwODI0YWQ2M2JhOTk5ZjA0ODM2YTU3YWE3MGU3Y1wiLFwiSXJuRHRcIjpcIjIwMjQtMDItMjIgMTc6NDI6MDBcIn0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.BcQeCgE3S9NjLEzoJCADyiG71P-dE5C8PFE3d0TWWay8TEPuEdaShXBZjsAz7-n8VS0vox99Kj1p2_Qbo8pQ4g9NB3h3yC1O-FL9FLokVF6t1pzb5l8_t8Ej4MIzUjTxGhLrW-rFxCyIWuOz6ixzuAaUfyDjXW5mhAVeREXrE0pioMhFuFbnsLkyVLUsxJFk3Jc90fActOyRLm6xgEeJ5oAoR8IpzHySSTMM4_tx910f0u-IuXf59GxLQQAKyjF1UfrRmTjN3sPmDk4SSKxz0aqQ0yS-LHiAx5vL8kSws2Icyri6dS8WLLHR0_cWKs_VWf4xg87oFM5MgKTVq3mdzg",
                    "irn": "7859346583894f8602c10f5a1d4a40265c90824ad63ba999f04836a57aa70e7c",
                    "signed_invoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1ODk5NzYsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMiAxNzo0MjowMFwiLFwiSXJuXCI6XCI3ODU5MzQ2NTgzODk0Zjg2MDJjMTBmNWExZDRhNDAyNjVjOTA4MjRhZDYzYmE5OTlmMDQ4MzZhNTdhYTcwZTdjXCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzExMVwiLFwiRHRcIjpcIjAxLzAxLzIwMjRcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiSXRlbUxpc3RcIjpbe1wiSXRlbU5vXCI6MCxcIlNsTm9cIjpcIjFcIixcIklzU2VydmNcIjpcIllcIixcIlByZERlc2NcIjpcIkFQSSBBY2Nlc3NcIixcIkhzbkNkXCI6XCI5OTgzMTRcIixcIlF0eVwiOjEsXCJGcmVlUXR5XCI6MCxcIlVuaXRcIjpcIkJBR1wiLFwiVW5pdFByaWNlXCI6OTk5LFwiVG90QW10XCI6ODQ2LjYyLFwiUHJlVGF4VmFsXCI6ODQ2LjYyLFwiQXNzQW10XCI6ODQ2LjYyLFwiR3N0UnRcIjoxOCxcIklnc3RBbXRcIjoxNTIuMzgsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiVG90SXRlbVZhbFwiOjk5OX1dLFwiVmFsRHRsc1wiOntcIkFzc1ZhbFwiOjg0Ni42MixcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTUyLjM4LFwiQ2VzVmFsXCI6MCxcIlN0Q2VzVmFsXCI6MCxcIkRpc2NvdW50XCI6MCxcIk90aENocmdcIjowLFwiUm5kT2ZmQW10XCI6MCxcIlRvdEludlZhbFwiOjk5OX19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.WVQy062ECtQtIgVYLMKT3qQWXNnAlguX2Wb5qMfasddfdsO_ixU3tYsKhUVxj_vmiZZzhETFEpw0YypimwUF7bl1w4Y7tWvRRP-eP6BxMgmdILltY5l2zStGPm3nMKbKG6lsh02PiK2bdPDGaEBAzz3ZxrHgws4710a-8a5pCTN7EE1n49EGyGvQS9gLBEASYinrzQHI4lzNjY_NTZ6iK5zlah1WWbAVBY0Hg4fH_yC89ydMj_upPJvJkF50X9de8vPUNKBuMP8tpnTgD-eUsE0VjtNCpczUZ9nKRvOUQlz54EVGfa61Yqq5Tn7oPMXOW90h1QAUlZ_7uINP8sQ"
                  },
                  "summary": "422 Invalid signed e-Invoice"
                },
                "Generate e-Invoice PDF (UAT)": {
                  "value": {
                    "@entity": "in.co.sandbox.gst.compliance.e-invoice.pdf.request",
                    "signed_qr_code": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjNCRTE3RTUxNDE5MjUyMjY0N0YwMUZEQkZGNTI3MUFENTI2OEQ3MzUiLCJ4NXQiOiJPLUYtVVVHU1VpWkg4Ql9iXzFKeHJWSm8xelUiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJOSUMgU2FuZGJveCIsImRhdGEiOiJ7XCJTZWxsZXJHc3RpblwiOlwiMjlBQUFDUTM3NzBFMDAwXCIsXCJCdXllckdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkRvY05vXCI6XCJET0MvMzIyMzQ4MFwiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMy8yMDI1XCIsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIkl0ZW1DbnRcIjoxLFwiTWFpbkhzbkNvZGVcIjpcIjEwMDFcIixcIklyblwiOlwiMzY2NWI0MDUzNWY2NmI4YzkwYjUxNDBhODM2NDEyYWVhZTNmNWJkOGY5OThkMTc0ODJhYWYwZWQ0MDQ5MDQyYlwiLFwiSXJuRHRcIjpcIjIwMjUtMDMtMjYgMTU6NDE6MDBcIn0ifQ.ZuHYIpUa2GhnH8KIAvSJCKXRoUK0Xxlpxlc9J3HaucHXDcmWU9uo0yzNkPHS8M4CdQrYQrOV6I0__zrqapzafMltzghjEF0sgCcYqT5FBVt7MPvvMdR6mpKmwVvigh2ptFmADMuO2Jf2X8wez5x3ZQR5ebYLOFxCWTfjObrzmeegMlUOyvQsIINlmdewfTz9vRQPbum6NPvi78zLRS_CjXMwVAbaCl8Fj9ZxrLQeCqphqMu1pxDktvccsWRGfSfflpk45ASrwnFs4PmnerQmJ0s56tI--raieNbJ04Ze031RnIzZ_Myw1GGsfFaSxLqrgukawCRNSkRNt8N0S7ex7w",
                    "irn": "3665b40535f66b8c90b5140a836412aeae3f5bd8f998d17482aaf0ed4049042b",
                    "signed_invoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjNCRTE3RTUxNDE5MjUyMjY0N0YwMUZEQkZGNTI3MUFENTI2OEQ3MzUiLCJ4NXQiOiJPLUYtVVVHU1VpWkg4Ql9iXzFKeHJWSm8xelUiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJOSUMgU2FuZGJveCIsImRhdGEiOiJ7XCJBY2tOb1wiOjExMjUxMDIyMjkwMDg5NixcIkFja0R0XCI6XCIyMDI1LTAzLTI2IDE1OjQxOjAwXCIsXCJJcm5cIjpcIjM2NjViNDA1MzVmNjZiOGM5MGI1MTQwYTgzNjQxMmFlYWUzZjViZDhmOTk4ZDE3NDgyYWFmMGVkNDA0OTA0MmJcIixcIlZlcnNpb25cIjpcIjEuMVwiLFwiVHJhbkR0bHNcIjp7XCJUYXhTY2hcIjpcIkdTVFwiLFwiU3VwVHlwXCI6XCJCMkJcIixcIlJlZ1JldlwiOlwiWVwiLFwiSWdzdE9uSW50cmFcIjpcIk5cIn0sXCJEb2NEdGxzXCI6e1wiVHlwXCI6XCJJTlZcIixcIk5vXCI6XCJET0MvMzIyMzQ4MFwiLFwiRHRcIjpcIjAxLzAzLzIwMjVcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiRGlzcER0bHNcIjp7XCJObVwiOlwiQUJDIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJCYW5hZ2Fsb3JlXCIsXCJQaW5cIjo1NjIxNjAsXCJTdGNkXCI6XCIyOVwifSxcIlNoaXBEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QVdHUFY3MTA3QjFaMVwiLFwiTGdsTm1cIjpcIkNCRSBjb21wYW55IHB2dCBsdGRcIixcIlRyZE5tXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJCYW5hZ2Fsb3JlXCIsXCJQaW5cIjo1NjIxNjAsXCJTdGNkXCI6XCIyOVwifSxcIkl0ZW1MaXN0XCI6W3tcIkl0ZW1Ob1wiOjAsXCJTbE5vXCI6XCIxXCIsXCJJc1NlcnZjXCI6XCJOXCIsXCJQcmREZXNjXCI6XCJSaWNlXCIsXCJIc25DZFwiOlwiMTAwMVwiLFwiQmFyY2RlXCI6XCIxMjM0NTZcIixcIlF0eVwiOjEwMC4zNDUsXCJGcmVlUXR5XCI6MTAsXCJVbml0XCI6XCJCQUdcIixcIlVuaXRQcmljZVwiOjk5LjU0NSxcIlRvdEFtdFwiOjk5ODguODQsXCJEaXNjb3VudFwiOjEwLFwiUHJlVGF4VmFsXCI6MSxcIkFzc0FtdFwiOjk5NzguODQsXCJHc3RSdFwiOjEyLFwiSWdzdEFtdFwiOjExOTcuNDYsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiQ2VzUnRcIjo1LFwiQ2VzQW10XCI6NDk4Ljk0LFwiQ2VzTm9uQWR2bEFtdFwiOjEwLFwiU3RhdGVDZXNSdFwiOjEyLFwiU3RhdGVDZXNBbXRcIjoxMTk3LjQ2LFwiU3RhdGVDZXNOb25BZHZsQW10XCI6NSxcIk90aENocmdcIjoxMCxcIlRvdEl0ZW1WYWxcIjoxMjg5Ny43LFwiT3JkTGluZVJlZlwiOlwiMzI1NlwiLFwiT3JnQ250cnlcIjpcIkFHXCIsXCJQcmRTbE5vXCI6XCIxMjM0NVwifV0sXCJWYWxEdGxzXCI6e1wiQXNzVmFsXCI6OTk3OC44NCxcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTE5Ny40NixcIkNlc1ZhbFwiOjUwOC45NCxcIlN0Q2VzVmFsXCI6MTIwMi40NixcIkRpc2NvdW50XCI6MTAsXCJPdGhDaHJnXCI6MjAsXCJSbmRPZmZBbXRcIjowLjMsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIlRvdEludlZhbEZjXCI6MTI4OTcuN30sXCJFeHBEdGxzXCI6e1wiU2hpcEJOb1wiOlwiQS0yNDhcIixcIlNoaXBCRHRcIjpcIjAxLzA4LzIwMjBcIixcIlBvcnRcIjpcIklOQUJHMVwiLFwiUmVmQ2xtXCI6XCJOXCIsXCJGb3JDdXJcIjpcIkFFRFwiLFwiQ250Q29kZVwiOlwiQUVcIn19In0.lGhWXEY_J4kS7lpc3NyERQaI96fBJBEPcIwJ_5tb2vRdZZMDr5n9zQRoEvU1VU1AayloIa0-jzlGFqFR6a3xW-xb6r1hjG1cZDniwDrBD5yghTr60r6Am3e2wlu07ooc313S0s7nLSPvTA4PVOukNekcVbP2O6A3hziEyvh69EIC3ksr5C2J1habUyraqQpWb_46DmkmYewTvx-WFDuBXbVRARb2-PJowByi1LpZck6_MAxaPp7rexjq1GS0dJ_okxRDjDjhnjBjuq0_RpvbQ08jeCtqiE20uVCZ0EDokzh2PK8EFBs2yWjR-Hop7WSACDIjy0pZNcIu27azdD0NdA"
                  },
                  "summary": "Generate e-Invoice PDF (UAT)"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 PDF Generated (PROD) / Generate E-Invoice PDF (UAT)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GenerateEInvoicePdfResponse"
                },
                "examples": {
                  "200 PDF Generated (PROD)": {
                    "summary": "200 PDF Generated (PROD)",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.pdf",
                        "e-invoice_pdf_url": "https://in-co-sandbox-gst-storage-test.s3.ap-south-1.amazonaws.com/non-persistent/25731d40-68fe-4081-8435-7d866fca6187.pdf",
                        "irn": "e05beaae63c3ed6e6e19b224c5c95475e9aeb9be60a7873a9dd4ac4ff740abbc"
                      },
                      "timestamp": "2023-04-10T12:00:00Z",
                      "transaction_id": "db2afef3-beb4-46d2-a21b-d5784497e254"
                    }
                  },
                  "Generate E-Invoice PDF (UAT)": {
                    "summary": "Generate E-Invoice PDF (UAT)",
                    "value": {
                      "code": 200,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.pdf",
                        "e-invoice_pdf_url": "https://example.com/e-invoice.pdf",
                        "irn": "3665b40535f66b8c90b5140a836412aeae3f5bd8f998d17482aaf0ed4049042b"
                      },
                      "timestamp": 1759754115423,
                      "transaction_id": "20d83b67-a8ff-4456-adc0-18abfc4c3e80"
                    }
                  },
                  "200 PDF Generated (PROD) 2": {
                    "summary": "200 PDF Generated (PROD) 2",
                    "value": {
                      "timestamp": 1776921876217,
                      "transaction_id": "41bb8041-fb83-4654-8d75-85a19f329158",
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.pdf",
                        "irn": "e05beaae63c3ed6e6e19b224c5c95475e9aeb9be60a7873a9dd4ac4ff740abbc",
                        "e-invoice_pdf_url": "https://in-co-sandbox-gst-test-storage.s3.ap-south-1.amazonaws.com/e-invoice-pdf/57edecdc-7847-4816-891b-f77ae77eb767.pdf"
                      },
                      "code": 200
                    }
                  },
                  "Generate e-Invoice PDF (UAT)": {
                    "summary": "Generate e-Invoice PDF (UAT)",
                    "value": {
                      "code": 200,
                      "timestamp": 1759754115423,
                      "data": {
                        "@entity": "in.co.sandbox.gst.compliance.e-invoice.pdf",
                        "irn": "3665b40535f66b8c90b5140a836412aeae3f5bd8f998d17482aaf0ed4049042b",
                        "e-invoice_pdf_url": "https://in-co-sandbox-gst-test-storage.s3.ap-south-1.amazonaws.com/e-invoice-pdf/57edecdc-7847-4816-891b-f77ae77eb767.pdf"
                      },
                      "transaction_id": "20d83b67-a8ff-4456-adc0-18abfc4c3e80"
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "422": {
            "description": "422 Invalid signed QR Code / 422 Invalid signed E-Invoice",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EInvoiceValidationErrorResponse"
                },
                "examples": {
                  "422 Invalid signed QR Code": {
                    "summary": "422 Invalid signed QR Code",
                    "value": {
                      "code": 422,
                      "message": "Invalid signed QR code",
                      "timestamp": 1763446641000,
                      "transaction_id": "c9aa55c6-a110-4460-9f38-1cb62e452c9f"
                    }
                  },
                  "422 Invalid signed e-Invoice": {
                    "summary": "422 Invalid signed e-Invoice",
                    "value": {
                      "code": 422,
                      "message": "Invalid signed e-Invoice",
                      "timestamp": 1763446641000,
                      "transaction_id": "6fcc6db2-f390-4123-88b5-255ba8ffbd27"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-invoice/tax-payer/invoice/{irn}/cancel": {
      "post": {
        "summary": "Cancel E-Invoice",
        "deprecated": false,
        "description": "",
        "operationId": "cancelIrn",
        "tags": [
          "e-Invoice1",
          "e-Invoice12"
        ],
        "parameters": [
          {
            "name": "irn",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Invoice access token. For token-generation steps, refer to the [Generate E-Invoice Session](/recipes/gst/authentication/generate_e_invoice_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Specifies the source to access, either primary (NIC 1) or secondary (NIC 2)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-proxy",
            "in": "header",
            "description": "Enables criss-cross operations by routing requests through the specified source (e.g., access primary via secondary if primary is unavailable)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "example": "secondary"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CancelEInvoiceRequest"
              },
              "examples": {
                "200 IRN cancelled": {
                  "value": {
                    "Irn": "49a7c675b25f730d2353622e4767df203fed2495411953e0351737d47308d868",
                    "CnlRsn": "1",
                    "CnlRem": "Wrong entry"
                  },
                  "summary": "200 IRN cancelled"
                },
                "9999 IRN is not active": {
                  "value": {
                    "Irn": "49a7c675b25f730d2353622e4767df203fed2495411953e0351737d47308d868",
                    "CnlRsn": "1",
                    "CnlRem": "Wrong entry"
                  },
                  "summary": "9999 IRN is not active"
                },
                "2270 More than 24 hrs old": {
                  "value": {
                    "Irn": "467b434ef6b5f4562488f2934ca30aee372e53c124d5fa751da7b92dad6ee974",
                    "CnlRsn": "1",
                    "CnlRem": "Wrong entry"
                  },
                  "summary": "2270 More than 24 hrs old"
                },
                "2230 IRN cannot be cancelled as EWB is active": {
                  "value": {
                    "Irn": "93106da01ab35e934ccf9ccf798b6c78cc8128307e268d819d69320cffa6985d",
                    "CnlRsn": "3",
                    "CnlRem": "Wrong entry"
                  },
                  "summary": "2230 IRN cannot be cancelled as EWB is active"
                },
                "2143 IRN doesn't belong to user": {
                  "value": {
                    "Irn": "6b7aff92f6214c1acad5280128d67042baea53d31671e16a892c71d5ff648de",
                    "CnlRsn": "3",
                    "CnlRem": "Wrong entry"
                  },
                  "summary": "2143 IRN doesn't belong to user"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 IRN cancelled / 9999 IRN is not active / 2270 More than 24 hrs old / 2230 IRN cannot be cancelled as EWB is active / 2143 IRN doesn't belong to user",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CancelEInvoiceResponse"
                },
                "examples": {
                  "200 IRN cancelled": {
                    "summary": "200 IRN cancelled",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "CancelDate": "2023-03-30 17:11:00",
                          "Irn": "49a7c675b25f730d2353622e4767df203fed2495411953e0351737d47308d868"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4b8e067e-eb06-42bb-bd23-3fe49f89a2a3"
                    }
                  },
                  "2143 IRN doesn't belong to user": {
                    "summary": "2143 IRN doesn't belong to user",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2143",
                            "ErrorMessage": "Invoice does not belongs to the user GSTIN"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "55c9329b-6640-4bf4-bc38-7b38b434081d"
                    }
                  },
                  "2230 IRN cannot be cancelled as EWB is active": {
                    "summary": "2230 IRN cannot be cancelled as EWB is active",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2230",
                            "ErrorMessage": "This IRN cannot be cancelled because  e-way bill has been generated , you can cancel   e-way bill and then try cancelling IRN"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6835b2f4-53f1-46d4-bacd-1b17e02b4594"
                    }
                  },
                  "2270 More than 24 hrs old": {
                    "summary": "2270 More than 24 hrs old",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2270",
                            "ErrorMessage": "The allowed cancellation time limit is crossed, you cannot cancel the IRN"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7ccca1c2-08de-4845-8ed6-8c1fb5528d4e"
                    }
                  },
                  "9999 IRN is not active": {
                    "summary": "9999 IRN is not active",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "9999",
                            "ErrorMessage": "Invoice is not active"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "16cc3d37-0ecd-4b07-b063-ca32f4fe54f3"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-invoice/tax-payer/invoice/{irn}": {
      "get": {
        "summary": "Get E-Invoice by IRN",
        "deprecated": false,
        "description": "",
        "operationId": "getEInvoiceByIrn1",
        "tags": [
          "e-Invoice1",
          "e-Invoice12"
        ],
        "parameters": [
          {
            "name": "irn",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Invoice access token. For token-generation steps, refer to the [Generate E-Invoice Session](/recipes/gst/authentication/generate_e_invoice_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Specifies the source to access, either primary (NIC 1) or secondary (NIC 2)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-proxy",
            "in": "header",
            "description": "Enables criss-cross operations by routing requests through the specified source (e.g., access primary via secondary if primary is unavailable)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "example": "secondary"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "2148 IRN data not available / 2283 IRN generated more than 2 days ago / 200 Get cancelled IRN / 200 Get IRN (DBN) / 200 Get IRN (CRN) / 200 Get IRN (INV)",
            "content": {
              "application/json": {
                "schema": {
                  "allOf": [
                    { "$ref": "#/components/schemas/GetEInvoiceResponse" }
                  ],
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "Data": {
                          "type": "object",
                          "properties": {},
                          "nullable": true,
                          "example": null
                        },
                        "ErrorDetails": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "ErrorCode": {
                                "type": "string",
                                "example": "2148"
                              },
                              "ErrorMessage": {
                                "type": "string",
                                "example": "Requested IRN data is not available"
                              }
                            }
                          },
                          "nullable": true,
                          "example": [
                            {
                              "ErrorCode": "2148",
                              "ErrorMessage": "Requested IRN data is not available"
                            }
                          ]
                        },
                        "InfoDtls": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "nullable": true,
                          "example": null
                        },
                        "Status": {
                          "type": "number",
                          "example": 0
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "175fe134-c501-4ac0-8403-b52a4abccd0b"
                    }
                  }
                },
                "examples": {
                  "200 Get IRN (CRN)": {
                    "summary": "200 Get IRN (CRN)",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2024-02-21 20:56:00",
                          "AckNo": 112410188572727,
                          "EwbDt": null,
                          "EwbNo": null,
                          "EwbValidTill": null,
                          "Irn": "4184721bc35a48cce034a9ded1443d862c48e3aae875f69090e348cc65f24fe5",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1NzI3MjcsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMSAyMDo1NjowMFwiLFwiSXJuXCI6XCI0MTg0NzIxYmMzNWE0OGNjZTAzNGE5ZGVkMTQ0M2Q4NjJjNDhlM2FhZTg3NWY2OTA5MGUzNDhjYzY1ZjI0ZmU1XCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiQ1JOXCIsXCJOb1wiOlwiRE9DLzEyNDNcIixcIkR0XCI6XCIwMS8wMS8yMDI0XCJ9LFwiU2VsbGVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFBQUNRMzc3MEUwMDBcIixcIkxnbE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJUcmRObVwiOlwiUXVpY2tvIEluZm9zb2Z0IFByaXZhdGUgTGltaXRlZFwiLFwiQWRkcjFcIjpcIjV0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJCQU5HQUxPUkVcIixcIlBpblwiOjU2MDA5MSxcIlN0Y2RcIjpcIjI5XCIsXCJQaFwiOlwiOTAwMDAwMDAwMFwiLFwiRW1cIjpcImFiY0BnbWFpbC5jb21cIn0sXCJCdXllckR0bHNcIjp7XCJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJMZ2xObVwiOlwiWFlaIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiVHJkTm1cIjpcIlhZWiBJbmR1c3RyaWVzXCIsXCJQb3NcIjpcIjEyXCIsXCJBZGRyMVwiOlwiN3RoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkdBTkRISU5BR0FSXCIsXCJQaW5cIjo1NjIxNjAsXCJQaFwiOlwiOTExMTExMTExMTFcIixcIkVtXCI6XCJ4eXpAeWFob28uY29tXCIsXCJTdGNkXCI6XCIyOVwifSxcIkRpc3BEdGxzXCI6e1wiTm1cIjpcIkFCQyBjb21wYW55IHB2dCBsdGRcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiQmFuYWdhbG9yZVwiLFwiUGluXCI6NTYyMTYwLFwiU3RjZFwiOlwiMjlcIn0sXCJTaGlwRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJDQkUgY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiQmFuYWdhbG9yZVwiLFwiUGluXCI6NTYyMTYwLFwiU3RjZFwiOlwiMjlcIn0sXCJJdGVtTGlzdFwiOlt7XCJJdGVtTm9cIjowLFwiU2xOb1wiOlwiMVwiLFwiSXNTZXJ2Y1wiOlwiTlwiLFwiUHJkRGVzY1wiOlwiUmljZVwiLFwiSHNuQ2RcIjpcIjEwMDFcIixcIkJhcmNkZVwiOlwiMTIzNDU2XCIsXCJRdHlcIjoxMDAuMzQ1LFwiRnJlZVF0eVwiOjEwLFwiVW5pdFwiOlwiQkFHXCIsXCJVbml0UHJpY2VcIjo5OS41NDUsXCJUb3RBbXRcIjo5OTg4Ljg0LFwiRGlzY291bnRcIjoxMCxcIlByZVRheFZhbFwiOjEsXCJBc3NBbXRcIjo5OTc4Ljg0LFwiR3N0UnRcIjoxMi4wLFwiSWdzdEFtdFwiOjExOTcuNDYsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiQ2VzUnRcIjo1LFwiQ2VzQW10XCI6NDk4Ljk0LFwiQ2VzTm9uQWR2bEFtdFwiOjEwLFwiU3RhdGVDZXNSdFwiOjEyLFwiU3RhdGVDZXNBbXRcIjoxMTk3LjQ2LFwiU3RhdGVDZXNOb25BZHZsQW10XCI6NSxcIk90aENocmdcIjoxMCxcIlRvdEl0ZW1WYWxcIjoxMjg5Ny43LFwiT3JkTGluZVJlZlwiOlwiMzI1NlwiLFwiT3JnQ250cnlcIjpcIkFHXCIsXCJQcmRTbE5vXCI6XCIxMjM0NVwifV0sXCJWYWxEdGxzXCI6e1wiQXNzVmFsXCI6OTk3OC44NCxcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTE5Ny40NixcIkNlc1ZhbFwiOjUwOC45NCxcIlN0Q2VzVmFsXCI6MTIwMi40NixcIkRpc2NvdW50XCI6MTAsXCJPdGhDaHJnXCI6MjAsXCJSbmRPZmZBbXRcIjowLjMsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIlRvdEludlZhbEZjXCI6MTI4OTcuN30sXCJFeHBEdGxzXCI6e1wiU2hpcEJOb1wiOlwiQS0yNDhcIixcIlNoaXBCRHRcIjpcIjAxLzA4LzIwMjBcIixcIlBvcnRcIjpcIklOQUJHMVwiLFwiUmVmQ2xtXCI6XCJOXCIsXCJGb3JDdXJcIjpcIkFFRFwiLFwiQ250Q29kZVwiOlwiQUVcIn0sXCJFd2JEdGxzXCI6e1wiVHJhbnNJZFwiOlwiMTJBV0dQVjcxMDdCMVoxXCIsXCJUcmFuc05hbWVcIjpcIlhZWiBFWFBPUlRTXCIsXCJUcmFuc01vZGVcIjpcIjFcIixcIkRpc3RhbmNlXCI6NSxcIlRyYW5zRG9jTm9cIjpcIkRPQzAxXCIsXCJUcmFuc0RvY0R0XCI6XCIwNS8wMS8yMDI0XCIsXCJWZWhOb1wiOlwia2ExMjM0NTZcIixcIlZlaFR5cGVcIjpcIlJcIn19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.Ravl2Pqb0q52Vi5Cnv6UJDYfPXICDd66d5BtzPrh_Yx59jnYmtn_Ft0_5B9oC7TDrXzNoFcYbEZAhDPWAnyO6PVC-cTq9pSYbGbWK8PBltf330bKQ_CA0xB-9-VaQPFReHLn6hMO5t9dHFA4-g-sA4gIYl2zckpV7pMBSUDft4y6layU4-UwXrUsF2yfW8WzMc01453QfDYwo66HKLS8SdtmZNMuqsdBsi2CvwKHiaqZmQwq3x2wK84yaVQnQRA2VjYvXcNy4FsyKpEX2zce7yqtStSlzOurTrHPfCJbHLFVEADUTCq8ab6f5oW0TVVk2R5AyTFX3IbFqtYEpE9vqg",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzEyNDNcIixcIkRvY1R5cFwiOlwiQ1JOXCIsXCJEb2NEdFwiOlwiMDEvMDEvMjAyNFwiLFwiVG90SW52VmFsXCI6MTI5MDgsXCJJdGVtQ250XCI6MSxcIk1haW5Ic25Db2RlXCI6XCIxMDAxXCIsXCJJcm5cIjpcIjQxODQ3MjFiYzM1YTQ4Y2NlMDM0YTlkZWQxNDQzZDg2MmM0OGUzYWFlODc1ZjY5MDkwZTM0OGNjNjVmMjRmZTVcIixcIklybkR0XCI6XCIyMDI0LTAyLTIxIDIwOjU2OjAwXCJ9IiwiaXNzIjoiTklDIFNhbmRib3gifQ.T9u79gPmNuTkh0P2iyr5ig-aHFUHvIN7lU5k03iwDu6uBP47oS9DtCrpFcMP8kahFOy5nhylHGaVOXemmbNTx9IdRfE_IcoBwBXqjT72klD9yOrdb8TMzp_RW0uMUeWrrle7WDQKmyGxh0PskDlxNBZOKVZ7YcR6n-nWanDeT7ifDTTrMEQNPdUAlIrP9suKhTOhnMS8ByLkKHeCGt2mAmGJww4h0XIcSGBS2bqVHPtuhkk7GU3kYJmlaq4HDFGXF4u-pRp_ntmOmnnPZRGFDnaUNuIO1Acq3-D2jwgf1Du1E1n9INuNiUyS47U8Lh8Z74vRNyquygtaVhvyioB71A",
                          "Status": "ACT"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e59896a7-cbf0-4d27-aa0d-ab7af731e74c"
                    }
                  },
                  "200 Get IRN (DBN)": {
                    "summary": "200 Get IRN (DBN)",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2024-02-22 11:56:00",
                          "AckNo": 112410188580391,
                          "EwbDt": null,
                          "EwbNo": null,
                          "EwbValidTill": null,
                          "Irn": "7ef7ff89c40530a32d809d46d29daff12fff3eb6c52d89462c0bda5cf8ddfb56",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1ODAzOTEsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMiAxMTo1NjowMFwiLFwiSXJuXCI6XCI3ZWY3ZmY4OWM0MDUzMGEzMmQ4MDlkNDZkMjlkYWZmMTJmZmYzZWI2YzUyZDg5NDYyYzBiZGE1Y2Y4ZGRmYjU2XCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiREJOXCIsXCJOb1wiOlwiRE9DLzE1XCIsXCJEdFwiOlwiMDEvMDEvMjAyNFwifSxcIlNlbGxlckR0bHNcIjp7XCJHc3RpblwiOlwiMjlBQUFDUTM3NzBFMDAwXCIsXCJMZ2xObVwiOlwiUXVpY2tvIEluZm9zb2Z0IFByaXZhdGUgTGltaXRlZFwiLFwiVHJkTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIkFkZHIxXCI6XCI1dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiQkFOR0FMT1JFXCIsXCJQaW5cIjo1NjAwOTEsXCJTdGNkXCI6XCIyOVwiLFwiUGhcIjpcIjkwMDAwMDAwMDBcIixcIkVtXCI6XCJhYmNAZ21haWwuY29tXCJ9LFwiQnV5ZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QVdHUFY3MTA3QjFaMVwiLFwiTGdsTm1cIjpcIlhZWiBjb21wYW55IHB2dCBsdGRcIixcIlRyZE5tXCI6XCJYWVogSW5kdXN0cmllc1wiLFwiUG9zXCI6XCIxMlwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJHQU5ESElOQUdBUlwiLFwiUGluXCI6NTYyMTYwLFwiUGhcIjpcIjkxMTExMTExMTExXCIsXCJFbVwiOlwieHl6QHlhaG9vLmNvbVwiLFwiU3RjZFwiOlwiMjlcIn0sXCJJdGVtTGlzdFwiOlt7XCJJdGVtTm9cIjowLFwiU2xOb1wiOlwiMVwiLFwiSXNTZXJ2Y1wiOlwiTlwiLFwiUHJkRGVzY1wiOlwiUmljZVwiLFwiSHNuQ2RcIjpcIjEwMDFcIixcIkJhcmNkZVwiOlwiMTIzNDU2XCIsXCJRdHlcIjoxMDAuMzQ1LFwiRnJlZVF0eVwiOjEwLFwiVW5pdFwiOlwiQkFHXCIsXCJVbml0UHJpY2VcIjo5OS41NDUsXCJUb3RBbXRcIjo5OTg4Ljg0LFwiRGlzY291bnRcIjoxMCxcIlByZVRheFZhbFwiOjEsXCJBc3NBbXRcIjo5OTc4Ljg0LFwiR3N0UnRcIjoxMi4wLFwiSWdzdEFtdFwiOjExOTcuNDYsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiQ2VzUnRcIjo1LFwiQ2VzQW10XCI6NDk4Ljk0LFwiQ2VzTm9uQWR2bEFtdFwiOjEwLFwiU3RhdGVDZXNSdFwiOjEyLFwiU3RhdGVDZXNBbXRcIjoxMTk3LjQ2LFwiU3RhdGVDZXNOb25BZHZsQW10XCI6NSxcIk90aENocmdcIjoxMCxcIlRvdEl0ZW1WYWxcIjoxMjg5Ny43LFwiT3JkTGluZVJlZlwiOlwiMzI1NlwiLFwiT3JnQ250cnlcIjpcIkFHXCIsXCJQcmRTbE5vXCI6XCIxMjM0NVwifV0sXCJWYWxEdGxzXCI6e1wiQXNzVmFsXCI6OTk3OC44NCxcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTE5Ny40NixcIkNlc1ZhbFwiOjUwOC45NCxcIlN0Q2VzVmFsXCI6MTIwMi40NixcIkRpc2NvdW50XCI6MTAsXCJPdGhDaHJnXCI6MjAsXCJSbmRPZmZBbXRcIjowLjMsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIlRvdEludlZhbEZjXCI6MTI4OTcuN319IiwiaXNzIjoiTklDIFNhbmRib3gifQ.fRQIpW6VI2ep_Tg4Mru0RhZKYfQqCtJrenRUMa2twMWsLV3E8N97QOKzKx7RCeE0wKkoSerAsjMidGcgaZu8GYojhlxfBSTHujHtOWmeMhl2h2BLPtASwZ_gGz8xAcrUOaQwhwPWgQJx9VMHy01Vr0DZXy0oCxvQdjHpy1tfLmr-186Ztp1vYpZzMczD4lmw6LKswKN_fONgIQMq45FS-c8f2aiGJFmqa0mZFdhrPH9T2axwltOjIum3-RUBwmYw1ixnC37CELf9biHdFU4LCrRXxw7y2VQWc9uhV7JTD6yNkCejtfEOkpeFCFnFbnoO7_A1nj59rqtGzXVZC9C6SA",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzE1XCIsXCJEb2NUeXBcIjpcIkRCTlwiLFwiRG9jRHRcIjpcIjAxLzAxLzIwMjRcIixcIlRvdEludlZhbFwiOjEyOTA4LFwiSXRlbUNudFwiOjEsXCJNYWluSHNuQ29kZVwiOlwiMTAwMVwiLFwiSXJuXCI6XCI3ZWY3ZmY4OWM0MDUzMGEzMmQ4MDlkNDZkMjlkYWZmMTJmZmYzZWI2YzUyZDg5NDYyYzBiZGE1Y2Y4ZGRmYjU2XCIsXCJJcm5EdFwiOlwiMjAyNC0wMi0yMiAxMTo1NjowMFwifSIsImlzcyI6Ik5JQyBTYW5kYm94In0.lCx9Z36xRhUXtERHkQ_5KwoqPU44c3NIcCoV35dUCn5wUz82q8nFKs2co9CQwgbUsF7GjDlhES73hPvUZ9eED4XTJVZbjx1LZlSUtQTKVSSe5E8UPaOaGhCjiysyIm7LCulnwCyYEScr-LcP12CrxfBn6e1iMWwYfmMQFz-m64N1NpuW9xuA1AidHDTDNrcrVAhLSUA8I5xx84-16D4CWWqy_TyAEu1NbXKfgcbEcdtKeGA4OzX6_lbyW9dWiyM3DwAg5BVYUBAP213BZc2rZoDP2a9MsQCMtJWzROQPYGDW3lcsgwgqMGPw7RfcdMqh5TBki4tNl5IfNNhtd0zgNA",
                          "Status": "ACT"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a59c2e8e-d519-4e2e-bf66-1e891249c5d1"
                    }
                  },
                  "200 Get IRN (INV)": {
                    "summary": "200 Get IRN (INV)",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2024-02-21 21:41:00",
                          "AckNo": 112410188572921,
                          "EwbDt": null,
                          "EwbNo": null,
                          "EwbValidTill": null,
                          "Irn": "e07607bbbac22dc6bdaba812e197d00e1833930220974d8cd33520ef628acaaa",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg1NzI5MjEsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMSAyMTo0MTowMFwiLFwiSXJuXCI6XCJlMDc2MDdiYmJhYzIyZGM2YmRhYmE4MTJlMTk3ZDAwZTE4MzM5MzAyMjA5NzRkOGNkMzM1MjBlZjYyOGFjYWFhXCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzEyNTlcIixcIkR0XCI6XCIyMC8wMi8yMDI0XCJ9LFwiU2VsbGVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFBQUNRMzc3MEUwMDBcIixcIkxnbE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJUcmRObVwiOlwiUXVpY2tvIEluZm9zb2Z0IFByaXZhdGUgTGltaXRlZFwiLFwiQWRkcjFcIjpcIjV0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJCQU5HQUxPUkVcIixcIlBpblwiOjU2MDA5MSxcIlN0Y2RcIjpcIjI5XCIsXCJQaFwiOlwiOTAwMDAwMDAwMFwiLFwiRW1cIjpcImFiY0BnbWFpbC5jb21cIn0sXCJCdXllckR0bHNcIjp7XCJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJMZ2xObVwiOlwiWFlaIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiVHJkTm1cIjpcIlhZWiBJbmR1c3RyaWVzXCIsXCJQb3NcIjpcIjI5XCIsXCJBZGRyMVwiOlwiN3RoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkdBTkRISU5BR0FSXCIsXCJQaW5cIjo1NjIxNjAsXCJQaFwiOlwiOTExMTExMTExMTFcIixcIkVtXCI6XCJ4eXpAeWFob28uY29tXCIsXCJTdGNkXCI6XCIyOVwifSxcIkl0ZW1MaXN0XCI6W3tcIkl0ZW1Ob1wiOjAsXCJTbE5vXCI6XCIxXCIsXCJJc1NlcnZjXCI6XCJZXCIsXCJQcmREZXNjXCI6XCJBUEkgQWNjZXNzXCIsXCJIc25DZFwiOlwiOTk4MzE0XCIsXCJRdHlcIjoxLFwiRnJlZVF0eVwiOjAsXCJVbml0XCI6XCJCQUdcIixcIlVuaXRQcmljZVwiOjk5OSxcIlRvdEFtdFwiOjg0Ni42MixcIlByZVRheFZhbFwiOjg0Ni42MixcIkFzc0FtdFwiOjg0Ni42MixcIkdzdFJ0XCI6MTgsXCJJZ3N0QW10XCI6MCxcIkNnc3RBbXRcIjo3Ni4xOSxcIlNnc3RBbXRcIjo3Ni4xOSxcIlRvdEl0ZW1WYWxcIjo5OTl9XSxcIlZhbER0bHNcIjp7XCJBc3NWYWxcIjo4NDYuNjIsXCJDZ3N0VmFsXCI6NzYuMTksXCJTZ3N0VmFsXCI6NzYuMTksXCJJZ3N0VmFsXCI6MCxcIkNlc1ZhbFwiOjAsXCJTdENlc1ZhbFwiOjAsXCJEaXNjb3VudFwiOjAsXCJPdGhDaHJnXCI6MCxcIlJuZE9mZkFtdFwiOjAsXCJUb3RJbnZWYWxcIjo5OTl9fSIsImlzcyI6Ik5JQyBTYW5kYm94In0.W_AtohF1e91vOS5chjmpy9GRx_x_PLGLeV6-XBEGBvUAyFC_mBURlWjjzZ_h2NF7SrjL_k-VKojiBTnMhv-HO6XobuN11r6hzHM3_cBdv223uGddEIVhnLQrZmnn8uTjW2_fyXPQs19xjmMmhNtI5qrRu_TdSHG-q-ViJ2CrULDKbop1XN-SFeSFEtLrjyxfc_6PRiWZMQDRyLg5Zyw37j-UHEO3LLXDYPj1drNVxxGlhg74AI4rnQ3T6q9ajDkWIjFPDQ__gMFH_tcGjLbph8ud4XBaZvi_xyZ_QuKewAp5hobudlQKPf2QSrj2c9MwKWJp9IY-Zujr6pHetrnMKQ",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzEyNTlcIixcIkRvY1R5cFwiOlwiSU5WXCIsXCJEb2NEdFwiOlwiMjAvMDIvMjAyNFwiLFwiVG90SW52VmFsXCI6OTk5LFwiSXRlbUNudFwiOjEsXCJNYWluSHNuQ29kZVwiOlwiOTk4MzE0XCIsXCJJcm5cIjpcImUwNzYwN2JiYmFjMjJkYzZiZGFiYTgxMmUxOTdkMDBlMTgzMzkzMDIyMDk3NGQ4Y2QzMzUyMGVmNjI4YWNhYWFcIixcIklybkR0XCI6XCIyMDI0LTAyLTIxIDIxOjQxOjAwXCJ9IiwiaXNzIjoiTklDIFNhbmRib3gifQ.qgEgtLof0Rb2LW58DM48-0w-7a7R9j30uI68rzLJthLJ8eZQzgR6G14BPm-rUdUA-YtRxArSvqhvrq9mnQxDzqoLROpeZSuxJX2cypE4cCqlRYkYoTWap30ZRr3SLbwQq74-Kkz7Axk48JJKsMaiFs3itJZ3IJPgKu18nAbN0mc6fMfb5D5A5QLYX4n0q96R4me1cJcPklXJpwZTtrt_QuzlHVDPNBaltc87fnBmddZIpc-OT6a4qKebzmz7t3FD93gr01U3RVTdyHOCRyJYNUfdvVJoqzLcYpw3JXLs5mDd-EE-0_Pi4WUFs4IPFMtU4qv3NJk3eD78ljNKwapS3A",
                          "Status": "ACT"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "d74d4b8c-bd3a-4b21-82e0-6ee7cffe0fd7"
                    }
                  },
                  "200 Get cancelled IRN": {
                    "summary": "200 Get cancelled IRN",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AckDt": "2024-02-23 17:17:00",
                          "AckNo": 112410188612025,
                          "EwbDt": null,
                          "EwbNo": null,
                          "EwbValidTill": null,
                          "Irn": "6b7aff92f6214c1acad5280128d67042baea53d31671e16a892c71d5ff648deb",
                          "Remarks": null,
                          "SignedInvoice": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiQWNrTm9cIjoxMTI0MTAxODg2MTIwMjUsXCJBY2tEdFwiOlwiMjAyNC0wMi0yMyAxNzoxNzowMFwiLFwiSXJuXCI6XCI2YjdhZmY5MmY2MjE0YzFhY2FkNTI4MDEyOGQ2NzA0MmJhZWE1M2QzMTY3MWUxNmE4OTJjNzFkNWZmNjQ4ZGViXCIsXCJWZXJzaW9uXCI6XCIxLjFcIixcIlRyYW5EdGxzXCI6e1wiVGF4U2NoXCI6XCJHU1RcIixcIlN1cFR5cFwiOlwiQjJCXCIsXCJSZWdSZXZcIjpcIllcIixcIklnc3RPbkludHJhXCI6XCJOXCJ9LFwiRG9jRHRsc1wiOntcIlR5cFwiOlwiSU5WXCIsXCJOb1wiOlwiRE9DLzEzNVwiLFwiRHRcIjpcIjAxLzAxLzIwMjRcIn0sXCJTZWxsZXJEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiTGdsTm1cIjpcIlF1aWNrbyBJbmZvc29mdCBQcml2YXRlIExpbWl0ZWRcIixcIlRyZE5tXCI6XCJRdWlja28gSW5mb3NvZnQgUHJpdmF0ZSBMaW1pdGVkXCIsXCJBZGRyMVwiOlwiNXRoIGJsb2NrLCBrdXZlbXB1IGxheW91dFwiLFwiQWRkcjJcIjpcImt1dmVtcHUgbGF5b3V0XCIsXCJMb2NcIjpcIkJBTkdBTE9SRVwiLFwiUGluXCI6NTYwMDkxLFwiU3RjZFwiOlwiMjlcIixcIlBoXCI6XCI5MDAwMDAwMDAwXCIsXCJFbVwiOlwiYWJjQGdtYWlsLmNvbVwifSxcIkJ1eWVyRHRsc1wiOntcIkdzdGluXCI6XCIyOUFXR1BWNzEwN0IxWjFcIixcIkxnbE5tXCI6XCJYWVogY29tcGFueSBwdnQgbHRkXCIsXCJUcmRObVwiOlwiWFlaIEluZHVzdHJpZXNcIixcIlBvc1wiOlwiMTJcIixcIkFkZHIxXCI6XCI3dGggYmxvY2ssIGt1dmVtcHUgbGF5b3V0XCIsXCJBZGRyMlwiOlwia3V2ZW1wdSBsYXlvdXRcIixcIkxvY1wiOlwiR0FOREhJTkFHQVJcIixcIlBpblwiOjU2MjE2MCxcIlBoXCI6XCI5MTExMTExMTExMVwiLFwiRW1cIjpcInh5ekB5YWhvby5jb21cIixcIlN0Y2RcIjpcIjI5XCJ9LFwiRGlzcER0bHNcIjp7XCJObVwiOlwiQUJDIGNvbXBhbnkgcHZ0IGx0ZFwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJCYW5hZ2Fsb3JlXCIsXCJQaW5cIjo1NjIxNjAsXCJTdGNkXCI6XCIyOVwifSxcIlNoaXBEdGxzXCI6e1wiR3N0aW5cIjpcIjI5QVdHUFY3MTA3QjFaMVwiLFwiTGdsTm1cIjpcIkNCRSBjb21wYW55IHB2dCBsdGRcIixcIlRyZE5tXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiQWRkcjFcIjpcIjd0aCBibG9jaywga3V2ZW1wdSBsYXlvdXRcIixcIkFkZHIyXCI6XCJrdXZlbXB1IGxheW91dFwiLFwiTG9jXCI6XCJCYW5hZ2Fsb3JlXCIsXCJQaW5cIjo1NjIxNjAsXCJTdGNkXCI6XCIyOVwifSxcIkl0ZW1MaXN0XCI6W3tcIkl0ZW1Ob1wiOjAsXCJTbE5vXCI6XCIxXCIsXCJJc1NlcnZjXCI6XCJOXCIsXCJQcmREZXNjXCI6XCJSaWNlXCIsXCJIc25DZFwiOlwiMTAwMVwiLFwiQmFyY2RlXCI6XCIxMjM0NTZcIixcIlF0eVwiOjEwMC4zNDUsXCJGcmVlUXR5XCI6MTAsXCJVbml0XCI6XCJCQUdcIixcIlVuaXRQcmljZVwiOjk5LjU0NSxcIlRvdEFtdFwiOjk5ODguODQsXCJEaXNjb3VudFwiOjEwLFwiUHJlVGF4VmFsXCI6MSxcIkFzc0FtdFwiOjk5NzguODQsXCJHc3RSdFwiOjEyLFwiSWdzdEFtdFwiOjExOTcuNDYsXCJDZ3N0QW10XCI6MCxcIlNnc3RBbXRcIjowLFwiQ2VzUnRcIjo1LFwiQ2VzQW10XCI6NDk4Ljk0LFwiQ2VzTm9uQWR2bEFtdFwiOjEwLFwiU3RhdGVDZXNSdFwiOjEyLFwiU3RhdGVDZXNBbXRcIjoxMTk3LjQ2LFwiU3RhdGVDZXNOb25BZHZsQW10XCI6NSxcIk90aENocmdcIjoxMCxcIlRvdEl0ZW1WYWxcIjoxMjg5Ny43LFwiT3JkTGluZVJlZlwiOlwiMzI1NlwiLFwiT3JnQ250cnlcIjpcIkFHXCIsXCJQcmRTbE5vXCI6XCIxMjM0NVwifV0sXCJWYWxEdGxzXCI6e1wiQXNzVmFsXCI6OTk3OC44NCxcIkNnc3RWYWxcIjowLFwiU2dzdFZhbFwiOjAsXCJJZ3N0VmFsXCI6MTE5Ny40NixcIkNlc1ZhbFwiOjUwOC45NCxcIlN0Q2VzVmFsXCI6MTIwMi40NixcIkRpc2NvdW50XCI6MTAsXCJPdGhDaHJnXCI6MjAsXCJSbmRPZmZBbXRcIjowLjMsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIlRvdEludlZhbEZjXCI6MTI4OTcuN30sXCJFeHBEdGxzXCI6e1wiU2hpcEJOb1wiOlwiQS0yNDhcIixcIlNoaXBCRHRcIjpcIjAxLzA4LzIwMjBcIixcIlBvcnRcIjpcIklOQUJHMVwiLFwiUmVmQ2xtXCI6XCJOXCIsXCJGb3JDdXJcIjpcIkFFRFwiLFwiQ250Q29kZVwiOlwiQUVcIn19IiwiaXNzIjoiTklDIFNhbmRib3gifQ.hMQXXV97a7v0gkh3Xng4TEq5yGnPaIIRGaMEya5Ijab6k7qS5JZbFZnE3C06TUHrCjTzBjCXPljvr4ZYikWymEdnUYvUUXAfVMJ_mUmdY1RJWBf7C4Zm0QKzcsn496oDRIV5289fxH2vMYiGlbYDhUdvmts9Zdc4cQb1JI6FqLHwJIhnaN66GeNa4V80oWpgUCSE0R8uG808klE-Qhkj81ykp_cl9VuqIIHAZmF9IlIgQYTq4qajdHPSi_qg3uBHH_9Z4hMC4s3T5lLZti42OHdpj3W9CrwSPC88bfBv4yYF3G70XCrD5lPaD0rMi4MCWenGdPuwiRrOxLMZrEoQvA",
                          "SignedQRCode": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MTNCODIxRUU0NkM3NDlBNjNCODZFMzE4QkY3MTEwOTkyODdEMUYiLCJ4NXQiOiJGUk80SWU1R3gwbW1PNGJqR0w5eEVKa29mUjgiLCJ0eXAiOiJKV1QifQ.eyJkYXRhIjoie1wiU2VsbGVyR3N0aW5cIjpcIjI5QUFBQ1EzNzcwRTAwMFwiLFwiQnV5ZXJHc3RpblwiOlwiMjlBV0dQVjcxMDdCMVoxXCIsXCJEb2NOb1wiOlwiRE9DLzEzNVwiLFwiRG9jVHlwXCI6XCJJTlZcIixcIkRvY0R0XCI6XCIwMS8wMS8yMDI0XCIsXCJUb3RJbnZWYWxcIjoxMjkwOCxcIkl0ZW1DbnRcIjoxLFwiTWFpbkhzbkNvZGVcIjpcIjEwMDFcIixcIklyblwiOlwiNmI3YWZmOTJmNjIxNGMxYWNhZDUyODAxMjhkNjcwNDJiYWVhNTNkMzE2NzFlMTZhODkyYzcxZDVmZjY0OGRlYlwiLFwiSXJuRHRcIjpcIjIwMjQtMDItMjMgMTc6MTc6MDBcIn0iLCJpc3MiOiJOSUMgU2FuZGJveCJ9.t3xHweWyISqKXJQttYvRsE-dcWhn3NSsW51KjM0gnEaNL_wE05m7sKoZOBdxnj_hNk8NKKSsnB3dcUWhbhWp8BUvly-a-pXx7anfZpwSpMYjcO9uo1QoRCHs1BhhgsoIYeHqdAicQOsloegxnefMOb7kZGtLxGxtmBHuvlWYT05XlKBRlpNZeOgZjtPFzi295wO6Yj5eWWpxHd6SkrAcIiFSz15bWt1avL2c5nibaaIyOimFYsL8SPIracKFU1FgErL2N563iwZLUrwmJwZgEr-JV_Z5BU-JB0KfE_wRHlElJIctmIiH7ZjcH00C5XpRrXZo7OGhuJw9mskN3uLFtQ",
                          "Status": "CNL"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "8d5d72d5-3383-447d-a0ae-1bafa46fef46"
                    }
                  },
                  "2148 IRN data not available": {
                    "summary": "2148 IRN data not available",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2148",
                            "ErrorMessage": "Requested IRN data is not available"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "175fe134-c501-4ac0-8403-b52a4abccd0b"
                    }
                  },
                  "2283 IRN generated more than 2 days ago": {
                    "summary": "2283 IRN generated more than 2 days ago",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2283",
                            "ErrorMessage": "IRN details cannot be provided as it is generated more than 2 days prior"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "aa8a2a14-a97e-4fe2-af3a-74269b28d19a"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-invoice/tax-payer/invoice/{irn}/e-way-bill": {
      "get": {
        "summary": "Get E-Way Bill by IRN",
        "deprecated": false,
        "description": "",
        "operationId": "getEWayBillByIrn",
        "tags": [
          "e-Invoice1",
          "E-Way Bill"
        ],
        "parameters": [
          {
            "name": "irn",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Invoice access token. For token-generation steps, refer to the [Generate E-Invoice Session](/recipes/gst/authentication/generate_e_invoice_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Specifies the source to access, either primary (NIC 1) or secondary (NIC 2)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-proxy",
            "in": "header",
            "description": "Enables criss-cross operations by routing requests through the specified source (e.g., access primary via secondary if primary is unavailable)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "example": "secondary"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Get EWB / 4005 EWB not found",
            "content": {
              "application/json": {
                "schema": {
                  "allOf": [
                    { "$ref": "#/components/schemas/GetEWayBillByIrnResponse" }
                  ],
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "Data": {
                          "type": "object",
                          "properties": {
                            "EwbDt": {
                              "type": "string",
                              "example": "2023-03-30 17:46:00"
                            },
                            "EwbNo": {
                              "type": "number",
                              "example": 601010206231
                            },
                            "EwbValidTill": {
                              "type": "string",
                              "example": "2023-03-31 23:59:00"
                            },
                            "GenGstin": {
                              "type": "string",
                              "example": "24AAAPI3182M002"
                            },
                            "Status": {
                              "type": "string",
                              "example": "ACT"
                            }
                          },
                          "nullable": true
                        },
                        "ErrorDetails": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "ErrorCode": {
                                "type": "string"
                              },
                              "ErrorMessage": {
                                "type": "string"
                              }
                            }
                          },
                          "nullable": true,
                          "example": [
                            {
                              "ErrorCode": "2154",
                              "ErrorMessage": "IRN details are not found"
                            }
                          ]
                        },
                        "InfoDtls": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "InfoCode": {
                                "type": "string"
                              },
                              "InfoMessage": {
                                "type": "string"
                              }
                            }
                          },
                          "nullable": true,
                          "example": null
                        },
                        "Status": {
                          "type": "number",
                          "example": 1
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "9266ba6d-6f2a-4d67-9ec1-9229b2c612e5"
                    }
                  }
                },
                "examples": {
                  "200 Get EWB": {
                    "summary": "200 Get EWB",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "EwbDt": "2023-03-30 17:46:00",
                          "EwbNo": 601010206231,
                          "EwbValidTill": "2023-03-31 23:59:00",
                          "GenGstin": "24AAAPI3182M002",
                          "Status": "ACT"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9266ba6d-6f2a-4d67-9ec1-9229b2c612e5"
                    }
                  },
                  "4005 EWB not found": {
                    "summary": "4005 EWB not found",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "4005",
                            "ErrorMessage": "Eway Bill details are not found"
                          }
                        ],
                        "Status": 0
                      },
                      "timestamp": 1746446708339,
                      "transaction_id": "793d1742-aed1-4728-aee5-3c5379359280"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Generate E-Way Bill by IRN",
        "deprecated": false,
        "description": "",
        "operationId": "generateEWayBillByIrn",
        "tags": [
          "e-Invoice1",
          "E-Way Bill"
        ],
        "parameters": [
          {
            "name": "irn",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Invoice access token. For token-generation steps, refer to the [Generate E-Invoice Session](/recipes/gst/authentication/generate_e_invoice_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Specifies the source to access, either primary (NIC 1) or secondary (NIC 2)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-proxy",
            "in": "header",
            "description": "Enables criss-cross operations by routing requests through the specified source (e.g., access primary via secondary if primary is unavailable)",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary"
              ],
              "example": "secondary"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "Irn",
                  "Distance"
                ],
                "allOf": [
                  { "$ref": "#/components/schemas/GenerateEWayBillByIrnRequest" }
                ],
                "properties": {
                  "Irn": {
                    "type": "string",
                    "description": "Invoice Reference Number"
                  },
                  "Distance": {
                    "type": "integer",
                    "description": "Distance between source and destination PIN codes. Pass 0 to auto calculate",
                    "format": "int32"
                  },
                  "TransId": {
                    "type": "string",
                    "description": "Transporter number/GSTIN"
                  },
                  "TransMode": {
                    "type": "string",
                    "description": "Mode of transport. Possible values: 1 - Road, 2 - Rail, 3 - Air, 4 - Ship"
                  },
                  "TransName": {
                    "type": "string",
                    "description": "Transporter name"
                  },
                  "TransDocDt": {
                    "type": "string",
                    "description": "Transport Document Date"
                  },
                  "TransDocNo": {
                    "type": "string",
                    "description": "Transport Document Number"
                  },
                  "VehNo": {
                    "type": "string",
                    "description": "Vehicle Number"
                  },
                  "VehType": {
                    "type": "string",
                    "description": "Vehicle type. Possible values: O - ODC, R - Regular"
                  }
                }
              },
              "examples": {
                "200 EWB generated (road)": {
                  "value": {
                    "Irn": "20ba3c6f4945944c9c928369fb3047c6985302b17eaefc42eb8183caa99fde6b",
                    "Distance": 5,
                    "TransMode": "1",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "200 EWB generated (road)"
                },
                "4002 EWB already generated": {
                  "value": {
                    "Irn": "84fb20bc18c8bcae011c106d1b99385c5e668f45b154c4e3bb401c7cfe8f73ed",
                    "Distance": 5,
                    "TransMode": "1",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "4002 EWB already generated"
                },
                "2302 Status of IRN is not active": {
                  "value": {
                    "Irn": "4b6c5d74157759eb327d98c6473a9355ea1bac713a5325d1b9f214d8be15d154",
                    "Distance": 5,
                    "TransMode": "1",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "2302 Status of IRN is not active"
                },
                "4009 EWB cannot be generated for Services": {
                  "value": {
                    "Irn": "163eb2ccf11a941b788508777bf6982415e89f762676c5fd1113b87a149e9dec",
                    "Distance": 5,
                    "TransMode": "1",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "4009 EWB cannot be generated for Services"
                },
                "200 Distance auto-calculated": {
                  "value": {
                    "Irn": "2a501f2edbb9acf3b9e5a027d15c672df077b22648f4a7cc96685473ffc52e4a",
                    "Distance": 0,
                    "TransMode": "1",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "200 Distance auto-calculated"
                },
                "5002 Invalid distance": {
                  "value": {
                    "Irn": "1cc78699fc244f3ec2d1b08defa9c0790ddc25893598c03f44e405619c727b3e",
                    "Distance": 5000,
                    "TransMode": "1",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "5002 Invalid distance"
                },
                "4038 Distance too high": {
                  "value": {
                    "Irn": "1cc78699fc244f3ec2d1b08defa9c0790ddc25893598c03f44e405619c727b3e",
                    "Distance": 500,
                    "TransMode": "1",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "4038 Distance too high"
                },
                "4012 Transport document number missing": {
                  "value": {
                    "Irn": "53a7790a23e0a7f0305f9add298b4f6d059373dc06140da861f095a2fd82334d",
                    "Distance": 5,
                    "TransMode": "2",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "4012 Transport document number missing"
                },
                "4039 Vehicle cannot be regular in ship mode": {
                  "value": {
                    "Irn": "53a7790a23e0a7f0305f9add298b4f6d059373dc06140da861f095a2fd82334d",
                    "Distance": 5,
                    "TransMode": "4",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "R"
                  },
                  "summary": "4039 Vehicle cannot be regular in ship mode"
                },
                "4020 Invalid vehicle type": {
                  "value": {
                    "Irn": "53a7790a23e0a7f0305f9add298b4f6d059373dc06140da861f095a2fd82334d",
                    "Distance": 5,
                    "TransMode": "1",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "S"
                  },
                  "summary": "4020 Invalid vehicle type"
                },
                "200 EWB generated (ship)": {
                  "value": {
                    "Irn": "40628c00eeb05d682e11551105deabc9018d886418afe1dcbd9fcb3f8783e4db",
                    "Distance": 5,
                    "TransMode": "4",
                    "TransId": "12AWGPV7107B1Z1",
                    "TransName": "trans name",
                    "TransDocDt": "01/01/2024",
                    "TransDocNo": "TRAN/DOC/11",
                    "VehNo": "KA12ER1234",
                    "VehType": "O"
                  },
                  "summary": "200 EWB generated (ship)"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "4002 EWB already generated / 2302 Status of IRN is not active / 200 EWB generated (road) / 4009 EWB cannot be generated for Services / 200 Distance auto-calculated / 5002 Invalid distance / 4038 Distance too high / 4012 Transport document number missing / 4039 Vehicle cannot be regular in ship mode / 4020 Invalid vehicle type / 200 EWB generated (ship)",
            "content": {
              "application/json": {
                "schema": {
                  "allOf": [
                    { "$ref": "#/components/schemas/GenerateEWayBillByIrnResponse" }
                  ],
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "Data": {
                          "type": "object",
                          "properties": {},
                          "nullable": true,
                          "example": null
                        },
                        "ErrorDetails": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "ErrorCode": {
                                "type": "string",
                                "example": "4002"
                              },
                              "ErrorMessage": {
                                "type": "string",
                                "example": "EwayBill is already generated for this IRN"
                              }
                            }
                          },
                          "nullable": true,
                          "example": [
                            {
                              "ErrorCode": "4002",
                              "ErrorMessage": "EwayBill is already generated for this IRN"
                            }
                          ]
                        },
                        "InfoDtls": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "InfoCode": {
                                "type": "string"
                              },
                              "InfoMessage": {
                                "type": "string"
                              }
                            }
                          },
                          "nullable": true,
                          "example": null
                        },
                        "Status": {
                          "type": "number",
                          "example": 0
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "21f0d4c6-678b-473c-84f4-3c8849a08f1f"
                    }
                  }
                },
                "examples": {
                  "200 EWB generated (road)": {
                    "summary": "200 EWB generated (road)",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "EwbDt": "2024-02-22 17:23:00",
                          "EwbNo": 171010315489,
                          "EwbValidTill": "2024-02-23 23:59:00"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9c7edb84-888a-4117-b743-1ab7fd687e45"
                    }
                  },
                  "4002 EWB already generated": {
                    "summary": "4002 EWB already generated",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "4002",
                            "ErrorMessage": "EwayBill is already generated for this IRN"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "21f0d4c6-678b-473c-84f4-3c8849a08f1f"
                    }
                  },
                  "2302 Status of IRN is not active": {
                    "summary": "2302 Status of IRN is not active",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "2302",
                            "ErrorMessage": "Status of the IRN is not active"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a6e68a3e-6282-404b-be0b-abded7e81c69"
                    }
                  },
                  "4009 EWB cannot be generated for Services": {
                    "summary": "4009 EWB cannot be generated for Services",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "4009",
                            "ErrorMessage": "E Way Bill can be generated provided at least HSN of one item belongs to goods."
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7f5fa478-040b-4138-a2b4-2090a8d1173a"
                    }
                  },
                  "200 Distance auto-calculated": {
                    "summary": "200 Distance auto-calculated",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "EwbDt": "2024-02-22 17:50:00",
                          "EwbNo": 101010315529,
                          "EwbValidTill": "2024-02-23 23:59:00"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": [
                          {
                            "Desc": "Pin-Pin calc distance: 57KM",
                            "InfCd": "EWBPPD"
                          }
                        ],
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "15af04d4-6d42-4161-aa88-07d01046780b"
                    }
                  },
                  "5002 Invalid distance": {
                    "summary": "5002 Invalid distance",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "5002",
                            "ErrorMessage": "The field Distance must be between 0 and 4000."
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "612dabcb-0d33-490b-88c0-a15062385c87"
                    }
                  },
                  "4038 Distance too high": {
                    "summary": "4038 Distance too high",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "4038",
                            "ErrorMessage": "The distance between the pincodes given is too high"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "b38aba95-9ac0-4cea-b586-1b429ee2b8b9"
                    }
                  },
                  "4012 Transport document number missing": {
                    "summary": "4012 Transport document number missing",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "4012",
                            "ErrorMessage": "The transport document number should be passed for transportation modes air and rail"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "5151daea-1911-45a0-9e4a-b53625c1f088"
                    }
                  },
                  "4039 Vehicle cannot be regular in ship mode": {
                    "summary": "4039 Vehicle cannot be regular in ship mode",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "4020",
                            "ErrorMessage": "Invalid vehicle type ."
                          },
                          {
                            "ErrorCode": "4039",
                            "ErrorMessage": "Vehicle type can not be regular when transport mode is ship"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "32a53c6f-945b-4b0f-a4ba-a7b6c802d647"
                    }
                  },
                  "4020 Invalid vehicle type": {
                    "summary": "4020 Invalid vehicle type",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "4020",
                            "ErrorMessage": "Invalid vehicle type ."
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "433b0447-6b99-4549-a815-c9ba37f33850"
                    }
                  },
                  "200 EWB generated (ship)": {
                    "summary": "200 EWB generated (ship)",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "EwbDt": "2024-02-22 17:56:00",
                          "EwbNo": 121010315538,
                          "EwbValidTill": "2024-02-23 23:59:00"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "90ca463c-71b1-426f-9c12-cdcd6e1ddcf2"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-invoice/tax-payer/gstin/search": {
      "post": {
        "summary": "Search GSTIN Details",
        "deprecated": false,
        "description": "",
        "operationId": "searchGstin1",
        "tags": [
          "e-Invoice1"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Invoice access token. For token-generation steps, refer to the [Generate E-Invoice Session](/recipes/gst/authentication/generate_e_invoice_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SearchEInvoiceGstinRequest"
              },
              "examples": {
                "200 GSTIN details fetched": {
                  "value": {
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "200 GSTIN details fetched"
                },
                "3001 Data not available": {
                  "value": {
                    "gstin": "24AAACQ3770E005"
                  },
                  "summary": "3001 Data not available"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 GSTIN details fetched / 3001 Data not available",
            "content": {
              "application/json": {
                "schema": {
                  "allOf": [
                    { "$ref": "#/components/schemas/SearchEInvoiceGstinResponse" }
                  ],
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "number",
                      "example": 200
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "Data": {
                          "type": "object",
                          "properties": {
                            "AddrBnm": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "AddrBno": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "AddrFlno": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "AddrLoc": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "AddrPncd": {
                              "type": "number",
                              "example": 560009
                            },
                            "AddrSt": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "BlkStatus": {
                              "type": "string",
                              "example": "U"
                            },
                            "DtDReg": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "DtReg": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "Gstin": {
                              "type": "string",
                              "example": "29AAACQ3770E000"
                            },
                            "LegalName": {
                              "type": "string",
                              "example": "Acme Industries Private Limited"
                            },
                            "StateCode": {
                              "type": "number",
                              "example": 0
                            },
                            "Status": {
                              "type": "string",
                              "example": "ACT"
                            },
                            "TradeName": {
                              "type": "string",
                              "nullable": true,
                              "example": null
                            },
                            "TxpType": {
                              "type": "string",
                              "example": "REG"
                            }
                          },
                          "nullable": true
                        },
                        "ErrorDetails": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "ErrorCode": {
                                "type": "string"
                              },
                              "ErrorMessage": {
                                "type": "string"
                              }
                            }
                          },
                          "nullable": true,
                          "example": [
                            {
                              "ErrorCode": "2154",
                              "ErrorMessage": "IRN details are not found"
                            }
                          ]
                        },
                        "InfoDtls": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "InfoCode": {
                                "type": "string"
                              },
                              "InfoMessage": {
                                "type": "string"
                              }
                            }
                          },
                          "nullable": true,
                          "example": null
                        },
                        "Status": {
                          "type": "number",
                          "example": 1
                        }
                      }
                    },
                    "timestamp": {
                      "type": "number",
                      "example": 1763446641000
                    },
                    "transaction_id": {
                      "type": "string",
                      "example": "7e7d3212-4a44-4c75-8a2a-39b34d4a826f"
                    }
                  }
                },
                "examples": {
                  "200 GSTIN details fetched": {
                    "summary": "200 GSTIN details fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": {
                          "AddrBnm": null,
                          "AddrBno": null,
                          "AddrFlno": null,
                          "AddrLoc": null,
                          "AddrPncd": 560009,
                          "AddrSt": null,
                          "BlkStatus": "U",
                          "DtDReg": null,
                          "DtReg": null,
                          "Gstin": "29AAACQ3770E000",
                          "LegalName": "Acme Industries Private Limited",
                          "StateCode": 0,
                          "Status": "ACT",
                          "TradeName": null,
                          "TxpType": "REG"
                        },
                        "ErrorDetails": null,
                        "InfoDtls": null,
                        "Status": 1
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7e7d3212-4a44-4c75-8a2a-39b34d4a826f"
                    }
                  },
                  "3001 Data not available": {
                    "summary": "3001 Data not available",
                    "value": {
                      "code": 200,
                      "data": {
                        "Data": null,
                        "ErrorDetails": [
                          {
                            "ErrorCode": "3001",
                            "ErrorMessage": "Requested data is not available"
                          }
                        ],
                        "InfoDtls": null,
                        "Status": 0
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "77e59a2a-5e4c-4eb6-843e-f96f62b6e696"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/tax-payer/authenticate": {
      "post": {
        "summary": "E-Way Bill Authentication",
        "deprecated": false,
        "description": "",
        "operationId": "eWayBillAuthenticate",
        "tags": [
          "E-Way Bill1",
          "Authentication1"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "JWT access token",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Source. Possible Values: primary, secondary or tertiary",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "primary",
              "example": "primary"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/EWayBillAuthenticateRequest"
              },
              "examples": {
                "200 Authenticated": {
                  "value": {
                    "username": "ACME_IND_API_QCK",
                    "password": "QnVzaW5lc3NfQVBJX1FDSw",
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "200 Authenticated"
                },
                "108 Invalid login credentials": {
                  "value": {
                    "username": "ACME_IND_API_QCK",
                    "password": "qnvzaW5lc3NfQV",
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "108 Invalid login credentials"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Authenticated / 108 Invalid login credentials",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EWayBillAuthenticateResponse"
                },
                "examples": {
                  "200 Authenticated": {
                    "summary": "200 Authenticated",
                    "value": {
                      "code": 200,
                      "data": {
                        "Status": 1,
                        "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ0YXhwYXllci1zZXNzaW9uIiwiZ3N0aW4iOiIyNEFCS0NTMjAzM0IxWlYiLCJpYXQiOjE3MTI5NDQxMDAsImV4cCI6MTcxMjk0NzcxMX0.sandbox-signature",
                        "expiry": 1714157100000
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "2ab9923e-f844-4b6c-8fc7-0bcc767bafc7"
                    }
                  },
                  "108 Invalid login credentials": {
                    "summary": "108 Invalid login credentials",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "108"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ca515f62-749d-4037-b4cc-adca5db77cd7"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/consolidated-bill": {
      "post": {
        "summary": "Consolidate E-Way Bill",
        "deprecated": false,
        "description": "Can be updated either by the seller or the transporter",
        "operationId": "consolidateEWayBill",
        "tags": [
          "E-Way Bill1",
          "Consignor",
          "Consolidated E-Way Bill"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ConsolidateEWayBillRequest"
              },
              "examples": {
                "650 Consignee cannot consolidate EWB": {
                  "value": {
                    "fromPlace": "BANGALORE SOUTH",
                    "fromState": 29,
                    "transDocDate": "12/10/2017",
                    "transDocNo": "1234",
                    "transMode": "1",
                    "tripSheetEwbBills": [
                      {
                        "ewbNo": 271010079977
                      }
                    ],
                    "vehicleNo": "KA12AB1234"
                  },
                  "summary": "650 Consignee cannot consolidate EWB"
                },
                "200 EWBs consolidated": {
                  "value": {
                    "fromPlace": "BANGALORE SOUTH",
                    "fromState": 29,
                    "vehicleNo": "KA12AB1234",
                    "transMode": "1",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "tripSheetEwbBills": [
                      {
                        "ewbNo": 271010079654
                      },
                      {
                        "ewbNo": 241010079655
                      }
                    ]
                  },
                  "summary": "200 EWBs consolidated"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 EWBs consolidated / 650 Consignee cannot consolidate EWB",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ConsolidateEWayBillResponse"
                },
                "examples": {
                  "650 Consignee cannot consolidate EWB": {
                    "summary": "650 Consignee cannot consolidate EWB",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "650,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "f35b45eb-510e-47d2-9450-0654f4cf0064"
                    }
                  },
                  "200 EWBs consolidated": {
                    "summary": "200 EWBs consolidated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "cEwbDate": "13/05/2024 02:43:00 PM",
                          "cEwbNo": "2210011690"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "8ddb61f7-3d6f-44d6-93f5-d33eeedbc6d2"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/consolidated-bill/{consolidated_ewb_no}": {
      "get": {
        "summary": "Get Consolidated E-Way Bill",
        "deprecated": false,
        "description": "Get Consolidated E-Way Bill",
        "operationId": "getConsolidatedEWayBill",
        "tags": [
          "E-Way Bill1",
          "Consignor",
          "Consolidated E-Way Bill"
        ],
        "parameters": [
          {
            "name": "consolidated_ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Consolidated EWB fetched / 325 Data not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetConsolidatedEWayBillResponse"
                },
                "examples": {
                  "200 Consolidated EWB fetched": {
                    "summary": "200 Consolidated EWB fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "enteredDate": "13/05/2024 02:43:00 PM",
                          "fromPlace": "BANGALORE SOUTH",
                          "fromState": "29",
                          "status": "ACT",
                          "transDocDate": "12/10/2017",
                          "transDocNo": "1234",
                          "transMode": "1  ",
                          "tripSheetEwbBills": [
                            {
                              "docDate": "15/12/2017",
                              "docNo": "7001-2422",
                              "ewbDate": "13/05/2024 12:55:00 PM",
                              "ewbNo": 271010079654,
                              "fromGstin": "27AAACQ3770E004",
                              "fromTradeName": "welton",
                              "status": "ACT",
                              "toGstin": "24AAACQ3770E003",
                              "toTradeName": "sthuthya",
                              "totInvValue": 59465,
                              "userGstin": "27AAACQ3770E004",
                              "validUpto": "18/05/2024 11:59:00 PM"
                            },
                            {
                              "docDate": "15/12/2017",
                              "docNo": "7001-2423",
                              "ewbDate": "13/05/2024 12:55:00 PM",
                              "ewbNo": 241010079655,
                              "fromGstin": "27AAACQ3770E004",
                              "fromTradeName": "welton",
                              "status": "ACT",
                              "toGstin": "24AAACQ3770E003",
                              "toTradeName": "sthuthya",
                              "totInvValue": 59465,
                              "userGstin": "27AAACQ3770E004",
                              "validUpto": "18/05/2024 11:59:00 PM"
                            }
                          ],
                          "tripSheetNo": 2210011690,
                          "userGstin": "27AAACQ3770E004",
                          "vehicleNo": "KA12AB1234"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "20fab0bc-11df-460a-818b-9e9db60f1ff8"
                    }
                  },
                  "325 Data not found": {
                    "summary": "325 Data not found",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "325"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "da0a536f-c0ad-4919-af65-8b8d7896ce9c"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/consolidated-bill/{consolidated_ewb_no}/regenerate": {
      "post": {
        "summary": "Regenerate Consolidated E-Way Bill",
        "deprecated": false,
        "description": "Regenerate Consolidated E-Way Bill",
        "operationId": "regenerateConsolidatedEWayBill",
        "tags": [
          "E-Way Bill1",
          "Consignor",
          "Consolidated E-Way Bill"
        ],
        "parameters": [
          {
            "name": "consolidated_ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RegenerateConsolidatedEWayBillRequest"
              },
              "examples": {
                "387 Could not find tripsheet": {
                  "value": {
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "reasonCode": "1",
                    "reasonRem": "Flood",
                    "transDocDate": "26/04/2018",
                    "transDocNo": "1234",
                    "transMode": "1",
                    "tripSheetNo": 2210011700,
                    "vehicleNo": "PQR1234"
                  },
                  "summary": "387 Could not find tripsheet"
                },
                "200 Consolidated EWB regenerated": {
                  "value": {
                    "tripSheetNo": 2210011690,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "transDocNo": "1234",
                    "transDocDate": "26/04/2018",
                    "transMode": "1",
                    "reasonCode": "1",
                    "reasonRem": "Flood"
                  },
                  "summary": "200 Consolidated EWB regenerated"
                },
                "392 Cancelled tripsheet cannot be regenerated": {
                  "value": {
                    "tripSheetNo": 2210011687,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "transDocNo": "1234",
                    "transDocDate": "26/04/2018",
                    "transMode": "1",
                    "reasonCode": "1",
                    "reasonRem": "Flood"
                  },
                  "summary": "392 Cancelled tripsheet cannot be regenerated"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Consolidated EWB regenerated / 392 Cancelled tripsheet cannot be regenerated / 387 Could not find tripsheet",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegenerateConsolidatedEWayBillResponse"
                },
                "examples": {
                  "387 Could not find tripsheet": {
                    "summary": "387 Could not find tripsheet",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "387"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "226f5a14-62d4-4fa0-b8e0-ea2c6bf06c3e"
                    }
                  },
                  "200 Consolidated EWB regenerated": {
                    "summary": "200 Consolidated EWB regenerated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "tripSheetEwayBills": [
                            {
                              "ewbNo": 271010079654
                            },
                            {
                              "ewbNo": 241010079655
                            }
                          ],
                          "tripSheetNo": 2110011709
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7e76dd03-c03b-46da-a988-e0379ade7f1c"
                    }
                  },
                  "392 Cancelled tripsheet cannot be regenerated": {
                    "summary": "392 Cancelled tripsheet cannot be regenerated",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "392"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "8bfa0284-2ef0-425d-ba3a-8eac8354d488"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/bill/{ewb_no}/multi-vehicle": {
      "post": {
        "summary": "Initiate Multi-Vehicle Movement",
        "deprecated": false,
        "description": "Initiate Multi-Vehicle Movement",
        "operationId": "initiateMultiVehicleMovement",
        "tags": [
          "E-Way Bill1",
          "Consignor",
          "Multi-Vehicle Movement"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/InitiateMultiVehicleMovementRequest"
              },
              "examples": {
                "646 Consignee cannot initiate multi-vehicle movement": {
                  "value": {
                    "ewbNo": 291010080003,
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "toPlace": "Beml Nagar",
                    "toState": 24,
                    "totalQuantity": 33,
                    "transMode": "1",
                    "unitCode": "NOS"
                  },
                  "summary": "646 Consignee cannot initiate multi-vehicle movement"
                },
                "200 Multi-vehicle movement initiated": {
                  "value": {
                    "ewbNo": 211010079995,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "toPlace": "Beml Nagar",
                    "toState": 24,
                    "transMode": "1",
                    "totalQuantity": 33,
                    "unitCode": "NOS"
                  },
                  "summary": "200 Multi-vehicle movement initiated"
                },
                "645 Part B already updated": {
                  "value": {
                    "ewbNo": 271010079654,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "toPlace": "Chennai",
                    "toState": 33,
                    "transMode": "1",
                    "totalQuantity": 33,
                    "unitCode": "NOS"
                  },
                  "summary": "645 Part B already updated"
                },
                "381 Part B is not updated": {
                  "value": {
                    "ewbNo": 211010079995,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "toPlace": "Chennai",
                    "toState": 33,
                    "transMode": "1",
                    "totalQuantity": 33,
                    "unitCode": "NOS"
                  },
                  "summary": "381 Part B is not updated"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Multi-vehicle movement initiated / 645 Part B already updated / 381 Part B is not updated / 646 Consignee cannot initiate multi-vehicle movement",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/InitiateMultiVehicleMovementResponse"
                },
                "examples": {
                  "646 Consignee cannot initiate multi-vehicle movement": {
                    "summary": "646 Consignee cannot initiate multi-vehicle movement",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "646,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a1dbfc06-be89-4692-8406-87c822756bcc"
                    }
                  },
                  "200 Multi-vehicle movement initiated": {
                    "summary": "200 Multi-vehicle movement initiated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "createdDate": "13/05/2024 04:12:00 PM",
                          "ewbNo": "211010079995",
                          "groupNo": "1"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "011bfe03-d1c4-43ed-8b18-d0ed34e50ca9"
                    }
                  },
                  "645 Part B already updated": {
                    "summary": "645 Part B already updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "645,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "20fbe290-26b4-4dd7-86d0-10db899ebd3c"
                    }
                  },
                  "381 Part B is not updated": {
                    "summary": "381 Part B is not updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "381"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "07d928e4-4230-4d66-9c95-99c66a68d5eb"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/bill/{ewb_no}/multi-vehicle/vehicle": {
      "put": {
        "summary": "Update Vehicle",
        "deprecated": false,
        "description": "Update Vehicle",
        "operationId": "updateVehicle",
        "tags": [
          "E-Way Bill1",
          "Consignor",
          "Multi-Vehicle Movement"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMultiVehicleRequest"
              },
              "examples": {
                "411 Multi-vehicle not initiated for specified details": {
                  "value": {
                    "ewbNo": 291010080003,
                    "fromPlace": "Lucknow",
                    "fromState": 9,
                    "groupNo": 11,
                    "newTranNo": "PQR123",
                    "newVehicleNo": " PQR1234",
                    "oldTranNo": "ABC123",
                    "oldvehicleNo": "PQR1234",
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down"
                  },
                  "summary": "411 Multi-vehicle not initiated for specified details"
                },
                "200 Vehicle updated": {
                  "value": {
                    "ewbNo": 291010080003,
                    "groupNo": 1,
                    "oldvehicleNo": "PQR1234",
                    "newVehicleNo": " PQR1234",
                    "oldTranNo": "ABC123",
                    "newTranNo": "PQR123",
                    "fromPlace": "Lucknow",
                    "fromState": 9,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down"
                  },
                  "summary": "200 Vehicle updated"
                },
                "301 Invalid EWB number": {
                  "value": {
                    "ewbNo": 171002233847,
                    "groupNo": 11,
                    "oldvehicleNo": "PQR1234",
                    "newVehicleNo": " PQR1234",
                    "oldTranNo": "ABC123",
                    "newTranNo": "PQR123",
                    "fromPlace": "Lucknow",
                    "fromState": 9,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down"
                  },
                  "summary": "301 Invalid EWB number"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Vehicle updated / 301 Invalid EWB number / 411 Multi-vehicle not initiated for specified details",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UpdateMultiVehicleResponse"
                },
                "examples": {
                  "411 Multi-vehicle not initiated for specified details": {
                    "summary": "411 Multi-vehicle not initiated for specified details",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "411"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "27d0adf9-1942-40c8-867d-19b490642ab1"
                    }
                  },
                  "200 Vehicle updated": {
                    "summary": "200 Vehicle updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "ewbNo": "291010080003",
                          "groupNo": "1",
                          "vehUpdDate": "13/05/2024 04:37:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4a367e41-c754-4c86-961e-e475197be997"
                    }
                  },
                  "301 Invalid EWB number": {
                    "summary": "301 Invalid EWB number",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "301"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "27beabc6-e9a5-4d26-b6ca-5485090fcf64"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Add Vehicle",
        "deprecated": false,
        "description": "Add Vehicle",
        "operationId": "addVehicle",
        "tags": [
          "E-Way Bill1",
          "Consignor",
          "Multi-Vehicle Movement"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddMultiVehicleRequest"
              },
              "examples": {
                "200 Vehicle added": {
                  "value": {
                    "ewbNo": 291010080003,
                    "groupNo": "1",
                    "quantity": 15,
                    "transDocDate": "12/10/2017",
                    "transDocNo": "1234",
                    "vehicleNo": "PQR1234"
                  },
                  "summary": "200 Vehicle added"
                },
                "301 Invalid EWB number": {
                  "value": {
                    "ewbNo": 291010080005,
                    "groupNo": "1",
                    "vehicleNo": "PQR1234",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "quantity": 15
                  },
                  "summary": "301 Invalid EWB number"
                },
                "400 Exceeded multi-vehicle movement initiation quantity": {
                  "value": {
                    "ewbNo": 291010080003,
                    "groupNo": "1",
                    "vehicleNo": "PQR1234",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "quantity": 15
                  },
                  "summary": "400 Exceeded multi-vehicle movement initiation quantity"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Vehicle added / 301 Invalid EWB number / 400 Exceeded multi-vehicle movement initiation quantity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AddMultiVehicleResponse"
                },
                "examples": {
                  "200 Vehicle added": {
                    "summary": "200 Vehicle added",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "ewbNo": "291010080003",
                          "groupNo": "1",
                          "vehAddedDate": "13/05/2024 04:19:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "b0eb7094-2825-4fae-8b1b-79771a41a65a"
                    }
                  },
                  "301 Invalid EWB number": {
                    "summary": "301 Invalid EWB number",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "301"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6440ae4b-4917-4f66-a02e-a0dfb3b80b33"
                    }
                  },
                  "400 Exceeded multi-vehicle movement initiation quantity": {
                    "summary": "400 Exceeded multi-vehicle movement initiation quantity",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "400"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "280a631d-93a1-4be5-aced-a0242d12f7d4"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/bill": {
      "get": {
        "summary": "Get E-Way Bill By Document Data",
        "deprecated": false,
        "description": "",
        "operationId": "getEWayBillByDocumentData",
        "tags": [
          "E-Way Bill1",
          "Consignor"
        ],
        "parameters": [
          {
            "name": "document_type",
            "in": "query",
            "description": "Document type. Possible values: INV",
            "required": true,
            "schema": {
              "type": "string",
              "example": "INV"
            }
          },
          {
            "name": "document_number",
            "in": "query",
            "description": "Document number",
            "required": true,
            "schema": {
              "type": "string",
              "example": "EWB-00001"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 EWB fetched / 418 No data found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetEWayBillByDocumentDataResponse"
                },
                "examples": {
                  "200 EWB fetched": {
                    "summary": "200 EWB fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "alert": null,
                          "ewayBillDate": "13/05/2024 12:50:00 PM",
                          "ewayBillNo": 231010079649,
                          "validUpto": "18/05/2024 23:59:59 "
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "1b6b96a2-1f93-4e29-b1af-2841824c1ffe"
                    }
                  },
                  "418 No data found": {
                    "summary": "418 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "418"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "142aadb4-9f82-4ac1-8f13-90568fa2ae09"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Generate E-Way Bill",
        "deprecated": false,
        "description": "",
        "operationId": "generateEWayBill",
        "tags": [
          "E-Way Bill1",
          "Consignor"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GenerateEWayBillRequest"
              },
              "examples": {
                "212 Invalid Consignee GSTIN": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-8",
                    "docDate": "15/12/2017",
                    "fromGstin": "29AAACQ3770E000",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59  19  A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 560090,
                    "actFromStateCode": 29,
                    "fromStateCode": 29,
                    "toGstin": "02EHFPS5910D2Z0",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 27,
                    "transactionType": 4,
                    "otherValue": -100,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 300.67,
                    "cessValue": 400.56,
                    "cessNonAdvolValue": 400,
                    "totInvValue": 68358,
                    "transporterId": "27AAACQ3770E004",
                    "transporterName": "",
                    "transDocNo": "",
                    "transMode": "1",
                    "transDistance": "100",
                    "transDocDate": "",
                    "vehicleNo": "PVC1234",
                    "vehicleType": "R",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 5609889
                      }
                    ]
                  },
                  "summary": "212 Invalid Consignee GSTIN"
                },
                "702 Distance between pincodes is too high or low": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-8",
                    "docDate": "15/12/2017",
                    "fromGstin": "29AAACQ3770E000",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59  19  A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 400027,
                    "actFromStateCode": 27,
                    "fromStateCode": 27,
                    "toGstin": "27AAACQ3770E000",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 29,
                    "transactionType": 4,
                    "otherValue": -100,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 300.67,
                    "cessValue": 400.56,
                    "cessNonAdvolValue": 400,
                    "totInvValue": 68358,
                    "transporterId": "27AAACQ3770E004",
                    "transporterName": "",
                    "transDocNo": "",
                    "transMode": "1",
                    "transDistance": "100",
                    "transDocDate": "",
                    "vehicleNo": "PVC1234",
                    "vehicleType": "R",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 5609889
                      }
                    ]
                  },
                  "summary": "702 Distance between pincodes is too high or low"
                },
                "200 EWB generated with alert": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-8",
                    "docDate": "15/12/2017",
                    "fromGstin": "29AAACQ3770E000",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59  19  A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 400027,
                    "actFromStateCode": 27,
                    "fromStateCode": 27,
                    "toGstin": "27AAACQ3770E000",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 29,
                    "transactionType": 4,
                    "otherValue": -100,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 300.67,
                    "cessValue": 400.56,
                    "cessNonAdvolValue": 400,
                    "totInvValue": 68358,
                    "transporterId": "27AAACQ3770E004",
                    "transporterName": "",
                    "transDocNo": "",
                    "transMode": "1",
                    "transDistance": "1000",
                    "transDocDate": "",
                    "vehicleNo": "PVC1234",
                    "vehicleType": "R",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 5609889
                      }
                    ]
                  },
                  "summary": "200 EWB generated with alert"
                },
                "604 Duplicate EWB": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-8",
                    "docDate": "15/12/2017",
                    "fromGstin": "29AAACQ3770E000",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59  19  A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 400027,
                    "actFromStateCode": 27,
                    "fromStateCode": 27,
                    "toGstin": "27AAACQ3770E000",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 29,
                    "transactionType": 4,
                    "otherValue": -100,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 300.67,
                    "cessValue": 400.56,
                    "cessNonAdvolValue": 400,
                    "totInvValue": 68358,
                    "transporterId": "27AAACQ3770E004",
                    "transporterName": "",
                    "transDocNo": "",
                    "transMode": "1",
                    "transDistance": "1000",
                    "transDocDate": "",
                    "vehicleNo": "PVC1234",
                    "vehicleType": "R",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 56099
                      }
                    ]
                  },
                  "summary": "604 Duplicate EWB"
                },
                "620 Invoice value cannot be less than sum of items": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-11",
                    "docDate": "15/12/2017",
                    "fromGstin": "29AAACQ3770E000",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59  19  A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 400027,
                    "actFromStateCode": 27,
                    "fromStateCode": 27,
                    "toGstin": "27AAACQ3770E000",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 29,
                    "transactionType": 4,
                    "otherValue": -100,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 1682.97,
                    "cessValue": 1682.97,
                    "cessNonAdvolValue": 400,
                    "totInvValue": 59464.94,
                    "transporterId": "27AAACQ3770E004",
                    "transporterName": "",
                    "transDocNo": "",
                    "transMode": "1",
                    "transDistance": "1000",
                    "transDocDate": "",
                    "vehicleNo": "PVC1234",
                    "vehicleType": "R",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 56099
                      }
                    ]
                  },
                  "summary": "620 Invoice value cannot be less than sum of items"
                },
                "200 EWB generated": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-11",
                    "docDate": "15/12/2017",
                    "fromGstin": "29AAACQ3770E000",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59  19  A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 400027,
                    "actFromStateCode": 27,
                    "fromStateCode": 27,
                    "toGstin": "27AAACQ3770E000",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 29,
                    "transactionType": 4,
                    "otherValue": 0,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 1682.97,
                    "cessValue": 1682.97,
                    "cessNonAdvolValue": 0,
                    "totInvValue": 59464.94,
                    "transporterId": "27AAACQ3770E004",
                    "transporterName": "",
                    "transDocNo": "",
                    "transMode": "1",
                    "transDistance": "1000",
                    "transDocDate": "",
                    "vehicleNo": "PVC1234",
                    "vehicleType": "R",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 56099
                      }
                    ]
                  },
                  "summary": "200 EWB generated"
                },
                "359 User GSTIN should match from GSTIN": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-20",
                    "docDate": "01/05/2024",
                    "fromGstin": "27AAACQ3770E004",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59  19  A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 400027,
                    "actFromStateCode": 27,
                    "fromStateCode": 27,
                    "toGstin": "29AAACQ3770E000",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 29,
                    "transactionType": 4,
                    "otherValue": 0,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 1682.97,
                    "cessValue": 1682.97,
                    "cessNonAdvolValue": 0,
                    "totInvValue": 59464.94,
                    "transporterId": "24AAACQ3770E003",
                    "transporterName": "",
                    "transDocNo": "",
                    "transMode": "1",
                    "transDistance": "1000",
                    "transDocDate": "",
                    "vehicleNo": "PVC1234",
                    "vehicleType": "R",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 56099
                      }
                    ]
                  },
                  "summary": "359 User GSTIN should match from GSTIN"
                },
                "619 Transporter Id is mandatory for Part A": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-100",
                    "docDate": "15/12/2017",
                    "fromGstin": "27AAACQ3770E004",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59  19  A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 400027,
                    "actFromStateCode": 27,
                    "fromStateCode": 27,
                    "toGstin": "24AAACQ3770E003",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 29,
                    "transactionType": 4,
                    "otherValue": 0,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 1682.97,
                    "cessValue": 1682.97,
                    "cessNonAdvolValue": 0,
                    "totInvValue": 59464.94,
                    "transDistance": "0",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 56099
                      }
                    ]
                  },
                  "summary": "619 Transporter Id is mandatory for Part A"
                },
                "Request Example": {
                  "value": {
                    "supplyType": "O",
                    "subSupplyType": "1",
                    "subSupplyDesc": "",
                    "docType": "INV",
                    "docNo": "7001-11",
                    "docDate": "15/12/2017",
                    "fromGstin": "29AAACQ3770E000",
                    "fromTrdName": "welton",
                    "fromAddr1": "2ND CROSS NO 59 19 A",
                    "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                    "fromPlace": "FRAZER TOWN",
                    "fromPincode": 400027,
                    "actFromStateCode": 27,
                    "fromStateCode": 27,
                    "toGstin": "27AAACQ3770E000",
                    "toTrdName": "sthuthya",
                    "toAddr1": "Shree Nilaya",
                    "toAddr2": "Dasarahosahalli",
                    "toPlace": "Beml Nagar",
                    "toPincode": 560090,
                    "actToStateCode": 29,
                    "toStateCode": 29,
                    "transactionType": 4,
                    "otherValue": 0,
                    "totalValue": 56099,
                    "cgstValue": 0,
                    "sgstValue": 0,
                    "igstValue": 1682.97,
                    "cessValue": 1682.97,
                    "cessNonAdvolValue": 0,
                    "totInvValue": 59464.94,
                    "transporterId": "27AAACQ3770E004",
                    "transporterName": "",
                    "transDocNo": "",
                    "transMode": "1",
                    "transDistance": "1000",
                    "transDocDate": "",
                    "vehicleNo": "PVC1234",
                    "vehicleType": "R",
                    "itemList": [
                      {
                        "productName": "Wheat",
                        "productDesc": "Wheat",
                        "hsnCode": 1001,
                        "quantity": 4,
                        "qtyUnit": "BOX",
                        "cgstRate": 0,
                        "sgstRate": 0,
                        "igstRate": 3,
                        "cessRate": 3,
                        "cessNonadvol": 0,
                        "taxableAmount": 56099
                      }
                    ]
                  },
                  "summary": "Request Example"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "212 Invalid Consignee GSTIN / 702 Distance between pincodes is too high or low / 200 EWB generated with alert / 604 Duplicate EWB / 620 Invoice value cannot be less than sum of items / 200 EWB generated / 359 User GSTIN should match from GSTIN / 619 Transporter Id is mandatory for Part A",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GenerateEWayBillResponse"
                },
                "examples": {
                  "212 Invalid Consignee GSTIN": {
                    "summary": "212 Invalid Consignee GSTIN",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "212,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "52d7e713-2b65-4a8f-9126-16af4e28ec59"
                    }
                  },
                  "702 Distance between pincodes is too high or low": {
                    "summary": "702 Distance between pincodes is too high or low",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "702,"
                        },
                        "info": ", The distance between the pincodes given is too high or low",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "aa389a61-b231-458e-9838-afa22d92525c"
                    }
                  },
                  "200 EWB generated with alert": {
                    "summary": "200 EWB generated with alert",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "alert": "Total invoice value is more than the sum of total assessible value and tax values, ",
                          "ewayBillDate": "01/05/2024 07:00:00 PM",
                          "ewayBillNo": 291010077005,
                          "validUpto": "06/05/2024 11:59:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6021ed55-c0e6-4899-bc08-010e3d276d1f"
                    }
                  },
                  "604 Duplicate EWB": {
                    "summary": "604 Duplicate EWB",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "604,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6192cf5d-fd97-4447-a8e6-516e49df7135"
                    }
                  },
                  "620 Invoice value cannot be less than sum of items": {
                    "summary": "620 Invoice value cannot be less than sum of items",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "620"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "bbcfda04-003b-47d7-b7f2-2c5b8585b2f7"
                    }
                  },
                  "200 EWB generated": {
                    "summary": "200 EWB generated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "alert": "",
                          "ewayBillDate": "01/05/2024 07:04:00 PM",
                          "ewayBillNo": 201010077008,
                          "validUpto": "06/05/2024 11:59:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "36c013cf-1fc3-4f4e-80e9-bd30ed519375"
                    }
                  },
                  "359 User GSTIN should match from GSTIN": {
                    "summary": "359 User GSTIN should match from GSTIN",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "359"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "826d7771-ea56-4419-852e-ff419b5e94bd"
                    }
                  },
                  "619 Transporter Id is mandatory for Part A": {
                    "summary": "619 Transporter Id is mandatory for Part A",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "619,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "00833a69-bea8-41d0-be40-ba5bd63b5ff0"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/bills": {
      "get": {
        "summary": "Get E-Way Bills By Date",
        "deprecated": false,
        "description": "",
        "operationId": "getEWayBillsByDate",
        "tags": [
          "E-Way Bill1",
          "Consignor"
        ],
        "parameters": [
          {
            "name": "generated_date",
            "in": "query",
            "description": "E-Way bill generated date",
            "required": true,
            "schema": {
              "type": "string",
              "example": "21/02/2025"
            }
          },
          {
            "name": "rejected",
            "in": "query",
            "description": "Pass true to get rejected E-Way Bills",
            "required": false,
            "schema": {
              "type": "string",
              "example": "true"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 EWBs fetched / 418 No data found / 200 Rejected EWBs fetched / 200 Cancelled and rejected EWBs fetched / Option not enabled in EWB 2",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetEWayBillsByDateResponse"
                },
                "examples": {
                  "200 Cancelled and rejected EWBs fetched": {
                    "summary": "200 Cancelled and rejected EWBs fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": [
                          {
                            "docDate": "15/12/2017",
                            "docNo": "7001-8",
                            "ewbDate": "02/05/2024 07:00:00 PM",
                            "ewbNo": 291010077010,
                            "genGstin": "29AAACQ3770E000",
                            "rejectStatus": "Y",
                            "rejectedDate": "02/05/2024 07:43:00 PM",
                            "status": "CNL",
                            "validUpto": "06/05/2024 11:59:00 PM"
                          }
                        ],
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6a0c19c2-ae4d-4f70-9c48-50770fb74dfd"
                    }
                  },
                  "200 EWBs fetched": {
                    "summary": "200 EWBs fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": [
                          {
                            "delPinCode": 470090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 27,
                            "docDate": "15/12/2017",
                            "docNo": "7001-11",
                            "ewbDate": "01/05/2024 07:04:00 PM",
                            "ewbNo": 201010077008,
                            "extendedTimes": 0,
                            "genGstin": "29AAACQ3770E000",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "06/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-10",
                            "ewbDate": "01/05/2024 07:03:00 PM",
                            "ewbNo": 231010077007,
                            "extendedTimes": 0,
                            "genGstin": "29AAACQ3770E000",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "06/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-9",
                            "ewbDate": "01/05/2024 07:01:00 PM",
                            "ewbNo": 261010077006,
                            "extendedTimes": 0,
                            "genGstin": "29AAACQ3770E000",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "06/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 470090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 27,
                            "docDate": "15/12/2017",
                            "docNo": "7001-8",
                            "ewbDate": "01/05/2024 07:00:00 PM",
                            "ewbNo": 291010077005,
                            "extendedTimes": 0,
                            "genGstin": "29AAACQ3770E000",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "06/05/2024 11:59:00 PM"
                          }
                        ],
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "8a14ade1-f43c-4a1e-93f8-86d384abdcbe"
                    }
                  },
                  "200 Rejected EWBs fetched": {
                    "summary": "200 Rejected EWBs fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": [
                          {
                            "docDate": "15/12/2017",
                            "docNo": "7001-8",
                            "ewbDate": "01/05/2024 07:00:00 PM",
                            "ewbNo": 291010077010,
                            "genGstin": "29AAACQ3770E000",
                            "rejectStatus": "Y",
                            "rejectedDate": "01/05/2024 07:43:00 PM",
                            "status": "ACT",
                            "validUpto": "06/05/2024 11:59:00 PM"
                          }
                        ],
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "485d153d-ab05-4212-8bac-6ac8e172a7be"
                    }
                  },
                  "418 No data found": {
                    "summary": "418 No data found",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "418"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "b8274301-bdbd-4463-837d-a49a80648ddf"
                    }
                  },
                  "Option not enabled in EWB 2": {
                    "summary": "Option not enabled in EWB 2",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "117"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1740131318000,
                      "transaction_id": "8ec232a4-9d06-40c9-8406-a940dbcbf84c"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/bill/{ewb_no}/cancel": {
      "post": {
        "summary": "Cancel E-Way Bill",
        "deprecated": false,
        "description": "",
        "operationId": "cancelEWayBill",
        "tags": [
          "E-Way Bill1",
          "Consignor"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CancelEWayBillRequest"
              },
              "examples": {
                "200 EWB cancelled": {
                  "value": {
                    "ewbNo": 291010077005,
                    "cancelRsnCode": 2,
                    "cancelRmrk": "Cancelled the order"
                  },
                  "summary": "200 EWB cancelled"
                },
                "312 EWB already cancelled/receiver cannot cancel EWB": {
                  "value": {
                    "ewbNo": 291010077010,
                    "cancelRsnCode": 2,
                    "cancelRmrk": "Cancelled the order"
                  },
                  "summary": "312 EWB already cancelled/receiver cannot cancel EWB"
                },
                "444 EWB cannot be cancelled as it is generated from NIC1": {
                  "value": {
                    "ewbNo": 141011175250,
                    "cancelRsnCode": 2,
                    "cancelRmrk": "Cancelled the order"
                  },
                  "summary": "444 EWB cannot be cancelled as it is generated from NIC1"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 EWB cancelled / 312 EWB already cancelled/receiver cannot cancel EWB / 444 EWB cannot be cancelled as it is generated from NIC1",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CancelEWayBillResponse"
                },
                "examples": {
                  "200 EWB cancelled": {
                    "summary": "200 EWB cancelled",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "cancelDate": "01/05/2024 07:56:00 PM",
                          "ewayBillNo": "291010077005"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e7da707c-76c2-4c7e-afb7-a9997d9ab5d3"
                    }
                  },
                  "312 EWB already cancelled/receiver cannot cancel EWB": {
                    "summary": "312 EWB already cancelled/receiver cannot cancel EWB",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "312,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "c8064ddf-e3dd-4b25-b426-e4e07394911c"
                    }
                  },
                  "444 EWB cannot be cancelled as it is generated from NIC1": {
                    "summary": "444 EWB cannot be cancelled as it is generated from NIC1",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "444,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1740137786000,
                      "transaction_id": "6ec9fa9f-8e62-4438-9938-574d38f801b1"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/bill/{ewb_no}/vehicle": {
      "put": {
        "summary": "Update Vehicle Details (Part B)",
        "deprecated": false,
        "description": "Can be updated either by the seller or the transporter",
        "operationId": "updateVehicleDetailsPartB",
        "tags": [
          "E-Way Bill1",
          "Consignor"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateEWayBillVehicleRequest"
              },
              "examples": {
                "200 Part B updated": {
                  "value": {
                    "ewbNo": 231010079649,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "transMode": "1",
                    "vehicleType": "R"
                  },
                  "summary": "200 Part B updated"
                },
                "726 Vehicle type can not be regular": {
                  "value": {
                    "ewbNo": 231010079649,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "BANGALORE",
                    "fromState": 27,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "transMode": "4",
                    "vehicleType": "R"
                  },
                  "summary": "726 Vehicle type can not be regular"
                },
                "361 Invalid Vehicle Type": {
                  "value": {
                    "ewbNo": 231010079649,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "BANGALORE",
                    "fromState": 27,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "transMode": "4",
                    "vehicleType": "Q"
                  },
                  "summary": "361 Invalid Vehicle Type"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Part B updated / 726 Vehicle type can not be regular / 361 Invalid Vehicle Type",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UpdateEWayBillVehicleResponse"
                },
                "examples": {
                  "200 Part B updated": {
                    "summary": "200 Part B updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "validUpto": "18/05/2024 11:59:00 PM",
                          "vehUpdDate": "13/05/2024 01:06:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "d96e4cc7-5dcd-4791-b43e-de87509a3d50"
                    }
                  },
                  "361 Invalid Vehicle Type": {
                    "summary": "361 Invalid Vehicle Type",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "361,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "26c95612-9574-464f-aa0e-ac4fb7788206"
                    }
                  },
                  "726 Vehicle type can not be regular": {
                    "summary": "726 Vehicle type can not be regular",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "726,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9d980a4f-a1f5-4655-a7af-b963cd80b90c"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/bill/{ewb_no}/extend": {
      "post": {
        "summary": "Extend E-Way Bill Validity",
        "deprecated": false,
        "description": "",
        "operationId": "extendEWayBillValidity",
        "tags": [
          "E-Way Bill1",
          "Consignor"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExtendEWayBillValidityRequest"
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "ewbNo": 291210077217,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "remainingDistance": 50,
                    "transDocNo": "1234",
                    "transMode": "5",
                    "extnRsnCode": 1,
                    "extnRemarks": "Flood",
                    "fromPincode": 560090,
                    "consignmentStatus": "T",
                    "transitType": "R",
                    "addressLine1": "Bengaluru",
                    "addressLine2": "Bengaluru",
                    "addressLine3": "Bengaluru"
                  },
                  "summary": "200 Success"
                },
                "382 Validity can be only extended in last 8 hours": {
                  "value": {
                    "ewbNo": 261010077217,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "remainingDistance": 50,
                    "transDocNo": "1234",
                    "transMode": "5",
                    "extnRsnCode": 1,
                    "extnRemarks": "Flood",
                    "fromPincode": 560090,
                    "consignmentStatus": "T",
                    "transitType": "R",
                    "addressLine1": "Bengaluru",
                    "addressLine2": "Bengaluru",
                    "addressLine3": "Bengaluru"
                  },
                  "summary": "382 Validity can be only extended in last 8 hours"
                },
                "705 Invalid transit type": {
                  "value": {
                    "ewbNo": 231010079649,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "remainingDistance": 50,
                    "transDocNo": "1234",
                    "transMode": "5",
                    "extnRsnCode": 1,
                    "extnRemarks": "Flood",
                    "fromPincode": 560090,
                    "consignmentStatus": "T",
                    "transitType": "Q",
                    "addressLine1": "Bengaluru",
                    "addressLine2": "Bengaluru",
                    "addressLine3": "Bengaluru"
                  },
                  "summary": "705 Invalid transit type"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Success / 382 Validity can be only extended in last 8 hours / 705 Invalid transit type",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExtendEWayBillValidityResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "ewayBillNo": "291210077217",
                          "updatedDate": "26/04/2024 05:07:00 PM",
                          "validUpto": "21/05/2024 23:59:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e4bbb27c-f1b5-4b07-9396-4d3fa3a217b3"
                    }
                  },
                  "382 Validity can be only extended in last 8 hours": {
                    "summary": "382 Validity can be only extended in last 8 hours",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "382"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "07a00a18-83bf-4794-8513-b10fdfdfc6a3"
                    }
                  },
                  "705 Invalid transit type": {
                    "summary": "705 Invalid transit type",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "705, "
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "668423ae-f1c8-44b1-9a3e-6a12b62e42a3"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignor/bill/{ewb_no}/transporter": {
      "put": {
        "summary": "Update Transporter",
        "deprecated": false,
        "description": "",
        "operationId": "updateTransporterDetails",
        "tags": [
          "E-Way Bill1",
          "Consignor"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateEWayBillTransporterRequest"
              },
              "examples": {
                "200 Transporter updated": {
                  "value": {
                    "ewbNo": 231010079649,
                    "transporterId": "29AAACW6874H1ZS"
                  },
                  "summary": "200 Transporter updated"
                },
                "222 Invalid transporter id": {
                  "value": {
                    "ewbNo": 231010079649,
                    "transporterId": "24AAACQ3770E000"
                  },
                  "summary": "222 Invalid transporter id"
                },
                "446 Transport details cannot be updated as EWB generated from NIC1": {
                  "value": {
                    "ewbNo": 141011175250,
                    "transporterId": "29AAACW6874H1ZS"
                  },
                  "summary": "446 Transport details cannot be updated as EWB generated from NIC1"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Transporter updated / 222 Invalid transporter id / 446 Transport details cannot be updated as EWB generated from NIC1",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UpdateEWayBillTransporterResponse"
                },
                "examples": {
                  "200 Transporter updated": {
                    "summary": "200 Transporter updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": "",
                        "data": {
                          "ewayBillNo": "231010079649",
                          "transUpdateDate": "13/05/2024 01:10:00 PM",
                          "transporterId": "29AAACW6874H1ZS"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "120f5e86-0cb6-403d-8c5e-64526e51edc6"
                    }
                  },
                  "222 Invalid transporter id": {
                    "summary": "222 Invalid transporter id",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "222,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a21a3561-b121-4234-8e2b-5f784b05bfd2"
                    }
                  },
                  "446 Transport details cannot be updated as EWB generated from NIC1": {
                    "summary": "446 Transport details cannot be updated as EWB generated from NIC1",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "446,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1740137887000,
                      "transaction_id": "4aa766f5-d38c-4268-8205-d3eb721b6c15"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignee/bills": {
      "get": {
        "summary": "Get E-Way Bills By Date",
        "deprecated": false,
        "description": "",
        "operationId": "getEWayBillsByDate1",
        "tags": [
          "E-Way Bill1",
          "Consignee"
        ],
        "parameters": [
          {
            "name": "generated_date",
            "in": "query",
            "description": "E-Way bill generated date",
            "required": true,
            "schema": {
              "type": "string",
              "example": "18/09/2024"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 EWBs fetched / 325 Data not found / 366 Today's EWB cannot be fetched",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetOtherPartyEWayBillsByDateResponse"
                },
                "examples": {
                  "200 EWBs fetched": {
                    "summary": "200 EWBs fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": [
                          {
                            "docDate": "01/05/2024",
                            "docNo": "7001-20",
                            "ewayBillDate": "03/05/2024 01:11:00 PM",
                            "ewbNo": 261010077217,
                            "fromGstin": "27AAACQ3770E004",
                            "fromTradeName": "welton",
                            "genGstin": "27AAACQ3770E004",
                            "genMode": "API",
                            "hsnCode": 1001,
                            "hsnDesc": "Wheat",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "toGstin": "24AAACQ3770E003",
                            "toTradeName": "sthuthya",
                            "totInvValue": 59464.94
                          }
                        ],
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "415f2cb7-73e0-4c9d-b603-ea8f2e1cee2d"
                    }
                  },
                  "325 Data not found": {
                    "summary": "325 Data not found",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "325"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e5568759-7d3a-4dda-ba13-0c277e9b757e"
                    }
                  },
                  "366 Today's EWB cannot be fetched": {
                    "summary": "366 Today's EWB cannot be fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "366"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4fa871d9-5575-46e4-9af6-4a9e9a170992"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/consignee/bill/{ewb_no}/reject": {
      "post": {
        "summary": "Reject E-Way Bill",
        "deprecated": false,
        "description": "",
        "operationId": "rejectEWayBill",
        "tags": [
          "E-Way Bill1",
          "Consignee"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RejectEWayBillRequest"
              },
              "examples": {
                "200 EWB rejected": {
                  "value": {
                    "ewbNo": 291010077010
                  },
                  "summary": "200 EWB rejected"
                },
                "344 Invalid EWB number": {
                  "value": {
                    "ewbNo": 181002233840
                  },
                  "summary": "344 Invalid EWB number"
                },
                "341 Generator cannot reject EWB": {
                  "value": {
                    "ewbNo": 291010077005
                  },
                  "summary": "341 Generator cannot reject EWB"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 EWB rejected / 344 Invalid EWB number / 341 Generator cannot reject EWB",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RejectEWayBillResponse"
                },
                "examples": {
                  "200 EWB rejected": {
                    "summary": "200 EWB rejected",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "ewayBillNo": "291010077010",
                          "ewbRejectedDate": "01/05/2024 07:43:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "17663f0c-e456-4348-9c55-8b15414c1e24"
                    }
                  },
                  "341 Generator cannot reject EWB": {
                    "summary": "341 Generator cannot reject EWB",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "341"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9ab254a4-a1b4-4aa5-a2eb-bf136229d139"
                    }
                  },
                  "344 Invalid EWB number": {
                    "summary": "344 Invalid EWB number",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "344"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "85ca7025-a0e8-40b8-b672-aaa115648052"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/consolidated-bill": {
      "post": {
        "summary": "Consolidate E-Way Bill",
        "deprecated": false,
        "description": "Can be updated either by the seller or the transporter",
        "operationId": "consolidateEWayBill1",
        "tags": [
          "E-Way Bill1",
          "Transporter",
          "Consolidated E-Way Bill1"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ConsolidateEWayBillRequest"
              },
              "examples": {
                "650 Consignee cannot consolidate EWB": {
                  "value": {
                    "fromPlace": "BANGALORE SOUTH",
                    "fromState": 29,
                    "transDocDate": "12/10/2017",
                    "transDocNo": "1234",
                    "transMode": "1",
                    "tripSheetEwbBills": [
                      {
                        "ewbNo": 271010079977
                      }
                    ],
                    "vehicleNo": "KA12AB1234"
                  },
                  "summary": "650 Consignee cannot consolidate EWB"
                },
                "200 EWBs consolidated": {
                  "value": {
                    "fromPlace": "BANGALORE SOUTH",
                    "fromState": 29,
                    "vehicleNo": "KA12AB1234",
                    "transMode": "1",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "tripSheetEwbBills": [
                      {
                        "ewbNo": 271010079654
                      },
                      {
                        "ewbNo": 241010079655
                      }
                    ]
                  },
                  "summary": "200 EWBs consolidated"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 EWBs consolidated / 650 Consignee cannot consolidate EWB",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ConsolidateEWayBillResponse"
                },
                "examples": {
                  "650 Consignee cannot consolidate EWB": {
                    "summary": "650 Consignee cannot consolidate EWB",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "650,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "57586e65-09cf-460d-99a1-591de7900d66"
                    }
                  },
                  "200 EWBs consolidated": {
                    "summary": "200 EWBs consolidated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "cEwbDate": "13/05/2024 02:43:00 PM",
                          "cEwbNo": "2210011690"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "22b01c71-c072-4fc2-aa8d-86365bfa02d2"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/consolidated-bill/{consolidated_ewb_no}": {
      "get": {
        "summary": "Get Consolidated E-Way Bill",
        "deprecated": false,
        "description": "Get Consolidated E-Way Bill",
        "operationId": "getConsolidatedEWayBill1",
        "tags": [
          "E-Way Bill1",
          "Transporter",
          "Consolidated E-Way Bill1"
        ],
        "parameters": [
          {
            "name": "consolidated_ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Consolidated EWB fetched / 325 Data not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetConsolidatedEWayBillResponse"
                },
                "examples": {
                  "200 Consolidated EWB fetched": {
                    "summary": "200 Consolidated EWB fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "enteredDate": "13/05/2024 02:43:00 PM",
                          "fromPlace": "BANGALORE SOUTH",
                          "fromState": "29",
                          "status": "ACT",
                          "transDocDate": "12/10/2017",
                          "transDocNo": "1234",
                          "transMode": "1  ",
                          "tripSheetEwbBills": [
                            {
                              "docDate": "15/12/2017",
                              "docNo": "7001-2422",
                              "ewbDate": "13/05/2024 12:55:00 PM",
                              "ewbNo": 271010079654,
                              "fromGstin": "27AAACQ3770E004",
                              "fromTradeName": "welton",
                              "status": "ACT",
                              "toGstin": "24AAACQ3770E003",
                              "toTradeName": "sthuthya",
                              "totInvValue": 59465,
                              "userGstin": "27AAACQ3770E004",
                              "validUpto": "18/05/2024 11:59:00 PM"
                            },
                            {
                              "docDate": "15/12/2017",
                              "docNo": "7001-2423",
                              "ewbDate": "13/05/2024 12:55:00 PM",
                              "ewbNo": 241010079655,
                              "fromGstin": "27AAACQ3770E004",
                              "fromTradeName": "welton",
                              "status": "ACT",
                              "toGstin": "24AAACQ3770E003",
                              "toTradeName": "sthuthya",
                              "totInvValue": 59465,
                              "userGstin": "27AAACQ3770E004",
                              "validUpto": "18/05/2024 11:59:00 PM"
                            }
                          ],
                          "tripSheetNo": 2210011690,
                          "userGstin": "27AAACQ3770E004",
                          "vehicleNo": "KA12AB1234"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "52368806-e038-4abd-b846-b8e8253bcbc6"
                    }
                  },
                  "325 Data not found": {
                    "summary": "325 Data not found",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "325"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6773a86a-d71f-43d7-9802-5ef01d2ff288"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/consolidated-bill/{consolidated_ewb_no}/regenerate": {
      "post": {
        "summary": "Regenerate Consolidated E-Way Bill",
        "deprecated": false,
        "description": "Regenerate Consolidated E-Way Bill",
        "operationId": "regenerateConsolidatedEWayBill1",
        "tags": [
          "E-Way Bill1",
          "Transporter",
          "Consolidated E-Way Bill1"
        ],
        "parameters": [
          {
            "name": "consolidated_ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RegenerateConsolidatedEWayBillRequest"
              },
              "examples": {
                "387 Could not find tripsheet": {
                  "value": {
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "reasonCode": "1",
                    "reasonRem": "Flood",
                    "transDocDate": "26/04/2018",
                    "transDocNo": "1234",
                    "transMode": "1",
                    "tripSheetNo": 2210011700,
                    "vehicleNo": "PQR1234"
                  },
                  "summary": "387 Could not find tripsheet"
                },
                "200 Consolidated EWB regenerated": {
                  "value": {
                    "tripSheetNo": 2210011690,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "transDocNo": "1234",
                    "transDocDate": "26/04/2018",
                    "transMode": "1",
                    "reasonCode": "1",
                    "reasonRem": "Flood"
                  },
                  "summary": "200 Consolidated EWB regenerated"
                },
                "392 Cancelled tripsheet cannot be regenerated": {
                  "value": {
                    "tripSheetNo": 2210011687,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "transDocNo": "1234",
                    "transDocDate": "26/04/2018",
                    "transMode": "1",
                    "reasonCode": "1",
                    "reasonRem": "Flood"
                  },
                  "summary": "392 Cancelled tripsheet cannot be regenerated"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Consolidated EWB regenerated / 392 Cancelled tripsheet cannot be regenerated / 387 Could not find tripsheet",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegenerateConsolidatedEWayBillResponse"
                },
                "examples": {
                  "387 Could not find tripsheet": {
                    "summary": "387 Could not find tripsheet",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "387"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "3c855c5e-245f-48e4-8201-f25a4eec9e7d"
                    }
                  },
                  "200 Consolidated EWB regenerated": {
                    "summary": "200 Consolidated EWB regenerated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "tripSheetEwayBills": [
                            {
                              "ewbNo": 271010079654
                            },
                            {
                              "ewbNo": 241010079655
                            }
                          ],
                          "tripSheetNo": 2110011709
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9d470acb-38b3-4b8c-9f07-c01409503947"
                    }
                  },
                  "392 Cancelled tripsheet cannot be regenerated": {
                    "summary": "392 Cancelled tripsheet cannot be regenerated",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "392"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "3dbc7c4b-82f0-48f5-a37c-f85d39057312"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/bill/{ewb_no}/multi-vehicle": {
      "post": {
        "summary": "Initiate Multi-vehicle Movement",
        "deprecated": false,
        "description": "Initiate Multi-vehicle Movement",
        "operationId": "initiateMultiVehicleMovement1",
        "tags": [
          "E-Way Bill1",
          "Transporter",
          "Multi-vehicle Movement"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/InitiateMultiVehicleMovementRequest"
              },
              "examples": {
                "646 Consignee cannot initiate multi-vehicle movement": {
                  "value": {
                    "ewbNo": 291010080003,
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "toPlace": "Beml Nagar",
                    "toState": 24,
                    "totalQuantity": 33,
                    "transMode": "1",
                    "unitCode": "NOS"
                  },
                  "summary": "646 Consignee cannot initiate multi-vehicle movement"
                },
                "200 Multi-vehicle movement initiated": {
                  "value": {
                    "ewbNo": 211010079995,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "toPlace": "Beml Nagar",
                    "toState": 24,
                    "transMode": "1",
                    "totalQuantity": 33,
                    "unitCode": "NOS"
                  },
                  "summary": "200 Multi-vehicle movement initiated"
                },
                "645 Part B already updated": {
                  "value": {
                    "ewbNo": 271010079654,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "toPlace": "Chennai",
                    "toState": 33,
                    "transMode": "1",
                    "totalQuantity": 33,
                    "unitCode": "NOS"
                  },
                  "summary": "645 Part B already updated"
                },
                "381 Part B is not updated": {
                  "value": {
                    "ewbNo": 211010079995,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "toPlace": "Chennai",
                    "toState": 33,
                    "transMode": "1",
                    "totalQuantity": 33,
                    "unitCode": "NOS"
                  },
                  "summary": "381 Part B is not updated"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Multi-vehicle movement initiated / 645 Part B already updated / 381 Part B is not updated / 646 Consignee cannot initiate multi-vehicle movement",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/InitiateMultiVehicleMovementResponse"
                },
                "examples": {
                  "646 Consignee cannot initiate multi-vehicle movement": {
                    "summary": "646 Consignee cannot initiate multi-vehicle movement",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "646,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4578617b-75c4-4480-90bd-6653906f024f"
                    }
                  },
                  "200 Multi-vehicle movement initiated": {
                    "summary": "200 Multi-vehicle movement initiated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "createdDate": "13/05/2024 04:12:00 PM",
                          "ewbNo": "211010079995",
                          "groupNo": "1"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4065cab6-2bf6-4301-9f80-df26fc7e2a04"
                    }
                  },
                  "645 Part B already updated": {
                    "summary": "645 Part B already updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "645,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "853309fd-fd1e-4456-bd4d-643b63281b7c"
                    }
                  },
                  "381 Part B is not updated": {
                    "summary": "381 Part B is not updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "381"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "54e4307d-b993-4329-b60d-25cba68f8ce7"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/bill/{ewb_no}/multi-vehicle/vehicle": {
      "put": {
        "summary": "Update Vehicle",
        "deprecated": false,
        "description": "Update Vehicle",
        "operationId": "updateVehicle1",
        "tags": [
          "E-Way Bill1",
          "Transporter",
          "Multi-vehicle Movement"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMultiVehicleRequest"
              },
              "examples": {
                "411 Multi-vehicle not initiated for specified details": {
                  "value": {
                    "ewbNo": 291010080003,
                    "fromPlace": "Lucknow",
                    "fromState": 9,
                    "groupNo": 11,
                    "newTranNo": "PQR123",
                    "newVehicleNo": " PQR1234",
                    "oldTranNo": "ABC123",
                    "oldvehicleNo": "PQR1234",
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down"
                  },
                  "summary": "411 Multi-vehicle not initiated for specified details"
                },
                "200 Vehicle updated": {
                  "value": {
                    "ewbNo": 291010080003,
                    "groupNo": 1,
                    "oldvehicleNo": "PQR1234",
                    "newVehicleNo": " PQR1234",
                    "oldTranNo": "ABC123",
                    "newTranNo": "PQR123",
                    "fromPlace": "Lucknow",
                    "fromState": 9,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down"
                  },
                  "summary": "200 Vehicle updated"
                },
                "301 Invalid EWB number": {
                  "value": {
                    "ewbNo": 171002233847,
                    "groupNo": 11,
                    "oldvehicleNo": "PQR1234",
                    "newVehicleNo": " PQR1234",
                    "oldTranNo": "ABC123",
                    "newTranNo": "PQR123",
                    "fromPlace": "Lucknow",
                    "fromState": 9,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down"
                  },
                  "summary": "301 Invalid EWB number"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Vehicle updated / 301 Invalid EWB number / 411 Multi-vehicle not initiated for specified details",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UpdateMultiVehicleResponse"
                },
                "examples": {
                  "411 Multi-vehicle not initiated for specified details": {
                    "summary": "411 Multi-vehicle not initiated for specified details",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "411"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "1e107c90-d018-4552-9b7b-37ae20f0d3ce"
                    }
                  },
                  "200 Vehicle updated": {
                    "summary": "200 Vehicle updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "ewbNo": "291010080003",
                          "groupNo": "1",
                          "vehUpdDate": "13/05/2024 04:37:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e8d7357f-507d-4147-b22a-598c84760918"
                    }
                  },
                  "301 Invalid EWB number": {
                    "summary": "301 Invalid EWB number",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "301"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "fdbfa41b-de4c-4ffa-ae04-5ca1598805b3"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      },
      "post": {
        "summary": "Add Vehicle",
        "deprecated": false,
        "description": "Add Vehicle",
        "operationId": "addVehicle1",
        "tags": [
          "E-Way Bill1",
          "Transporter",
          "Multi-vehicle Movement"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddMultiVehicleRequest"
              },
              "examples": {
                "200 Vehicle added": {
                  "value": {
                    "ewbNo": 291010080003,
                    "groupNo": "1",
                    "quantity": 15,
                    "transDocDate": "12/10/2017",
                    "transDocNo": "1234",
                    "vehicleNo": "PQR1234"
                  },
                  "summary": "200 Vehicle added"
                },
                "301 Invalid EWB number": {
                  "value": {
                    "ewbNo": 291010080005,
                    "groupNo": "1",
                    "vehicleNo": "PQR1234",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "quantity": 15
                  },
                  "summary": "301 Invalid EWB number"
                },
                "400 Exceeded multi-vehicle movement initiation quantity": {
                  "value": {
                    "ewbNo": 291010080003,
                    "groupNo": "1",
                    "vehicleNo": "PQR1234",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "quantity": 15
                  },
                  "summary": "400 Exceeded multi-vehicle movement initiation quantity"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Vehicle added / 301 Invalid EWB number / 400 Exceeded multi-vehicle movement initiation quantity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AddMultiVehicleResponse"
                },
                "examples": {
                  "200 Vehicle added": {
                    "summary": "200 Vehicle added",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "ewbNo": "291010080003",
                          "groupNo": "1",
                          "vehAddedDate": "13/05/2024 04:19:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "bc53b878-7de9-4db6-ad78-19403c337067"
                    }
                  },
                  "301 Invalid EWB number": {
                    "summary": "301 Invalid EWB number",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "301"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "447a4fb8-5861-448d-b763-c301105f50a4"
                    }
                  },
                  "400 Exceeded multi-vehicle movement initiation quantity": {
                    "summary": "400 Exceeded multi-vehicle movement initiation quantity",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "400"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "8c46d599-a648-487d-af60-70dc318e8433"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/bills": {
      "get": {
        "summary": "Get E-Way Bills by date and state",
        "deprecated": false,
        "description": "By generated date\n\n[https://docs.ewaybillgst.gov.in/apidocs/version1.03/get-eway-bill-transporter-date-and-state.html#overview](https://docs.ewaybillgst.gov.in/apidocs/version1.03/get-eway-bill-transporter-date-and-state.html#overview)\n\nBy assigned date\n\n[https://docs.ewaybillgst.gov.in/apidocs/version1.03/get-eway-bill-transporter-assigned-state-and-date.html#overview](https://docs.ewaybillgst.gov.in/apidocs/version1.03/get-eway-bill-transporter-assigned-state-and-date.html#overview)",
        "operationId": "getEWayBillsByDateAndState",
        "tags": [
          "E-Way Bill1",
          "Transporter"
        ],
        "parameters": [
          {
            "name": "generated_date",
            "in": "query",
            "description": "E-Way Bill generated date",
            "required": false,
            "schema": {
              "type": "string",
              "example": "19/09/2024"
            }
          },
          {
            "name": "generator_state_code",
            "in": "query",
            "description": "State code of the E-Way Bill generator",
            "required": true,
            "schema": {
              "type": "string",
              "example": "29"
            }
          },
          {
            "name": "assigned_date",
            "in": "query",
            "description": "E-Way Bill assigned date",
            "required": false,
            "schema": {
              "type": "string",
              "example": "19/09/2024"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 EWBs fetched / 336 Could not retrieve data",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTransporterEWayBillsResponse"
                },
                "examples": {
                  "200 EWBs fetched": {
                    "summary": "200 EWBs fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": [
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "01/05/2024",
                            "docNo": "7001-11",
                            "ewbDate": "03/05/2024 12:27:00 PM",
                            "ewbNo": 221010077190,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "08/05/2024 11:59:00 PM"
                          }
                        ],
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "7922b130-9e68-4949-af57-852280503a04"
                    }
                  },
                  "336 Could not retrieve data": {
                    "summary": "336 Could not retrieve data",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "336"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9f193e7b-627f-45b7-82ac-19f0b77df73e"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/bills/list": {
      "post": {
        "summary": "List E-Way Bills by Generator",
        "deprecated": false,
        "description": "[https://docs.ewaybillgst.gov.in/apidocs/version1.03/get-eway-bill-transporter-gstin-and-date.html#overview](https://docs.ewaybillgst.gov.in/apidocs/version1.03/get-eway-bill-transporter-gstin-and-date.html#overview)",
        "operationId": "listEWayBillsByGenerator",
        "tags": [
          "E-Way Bill1",
          "Transporter"
        ],
        "parameters": [
          {
            "name": "generated_date",
            "in": "query",
            "description": "E-Way Bill generated date",
            "required": false,
            "schema": {
              "type": "string",
              "example": "18/09/2024"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ListEWayBillsByGeneratorRequest"
              },
              "examples": {
                "200 EWBs fetched": {
                  "value": {
                    "generator_gstin": "29AAACQ3770E000"
                  },
                  "summary": "200 EWBs fetched"
                },
                "336 Could not retrieve data": {
                  "value": {
                    "generator_gstin": "29AAACQ3770E000"
                  },
                  "summary": "336 Could not retrieve data"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 EWBs fetched / 336 Could not retrieve data",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTransporterEWayBillsResponse"
                },
                "examples": {
                  "200 EWBs fetched": {
                    "summary": "200 EWBs fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": [
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "13/05/2024",
                            "docNo": "7001-2421",
                            "ewbDate": "13/05/2024 12:50:00 PM",
                            "ewbNo": 231010079649,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "18/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-2423",
                            "ewbDate": "13/05/2024 12:55:00 PM",
                            "ewbNo": 241010079655,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "18/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-2422",
                            "ewbDate": "13/05/2024 12:55:00 PM",
                            "ewbNo": 271010079654,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "18/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-2434",
                            "ewbDate": "13/05/2024 12:56:00 PM",
                            "ewbNo": 211010079656,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "18/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-99",
                            "ewbDate": "13/05/2024 03:41:00 PM",
                            "ewbNo": 271010079977,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "18/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-100",
                            "ewbDate": "13/05/2024 04:11:00 PM",
                            "ewbNo": 211010079995,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "18/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-101",
                            "ewbDate": "13/05/2024 04:14:00 PM",
                            "ewbNo": 251010080001,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "18/05/2024 11:59:00 PM"
                          },
                          {
                            "delPinCode": 560090,
                            "delPlace": "Beml Nagar",
                            "delStateCode": 29,
                            "docDate": "15/12/2017",
                            "docNo": "7001-102",
                            "ewbDate": "13/05/2024 04:18:00 PM",
                            "ewbNo": 291010080003,
                            "extendedTimes": 0,
                            "genGstin": "27AAACQ3770E004",
                            "rejectStatus": "N",
                            "status": "ACT",
                            "validUpto": "18/05/2024 11:59:00 PM"
                          }
                        ],
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4e8dff8e-c230-4a95-acd6-d04b823026cb"
                    }
                  },
                  "336 Could not retrieve data": {
                    "summary": "336 Could not retrieve data",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "336"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "345df11f-06a9-4e8c-a32c-f9ac5c8a1fd0"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/bill/{ewb_no}/vehicle": {
      "put": {
        "summary": "Update Vehicle Details (Part B)",
        "deprecated": false,
        "description": "Can be updated either by the seller or the transporter",
        "operationId": "updateVehicleDetailsPartB1",
        "tags": [
          "E-Way Bill1",
          "Transporter"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateEWayBillVehicleRequest"
              },
              "examples": {
                "200 Part B updated": {
                  "value": {
                    "ewbNo": 231010079649,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "BANGALORE",
                    "fromState": 29,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "transMode": "1",
                    "vehicleType": "R"
                  },
                  "summary": "200 Part B updated"
                },
                "726 Vehicle type can not be regular": {
                  "value": {
                    "ewbNo": 231010079649,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "BANGALORE",
                    "fromState": 27,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "transMode": "4",
                    "vehicleType": "R"
                  },
                  "summary": "726 Vehicle type can not be regular"
                },
                "361 Invalid Vehicle Type": {
                  "value": {
                    "ewbNo": 231010079649,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "BANGALORE",
                    "fromState": 27,
                    "reasonCode": "1",
                    "reasonRem": "vehicle broke down",
                    "transDocNo": "1234",
                    "transDocDate": "12/10/2017",
                    "transMode": "4",
                    "vehicleType": "Q"
                  },
                  "summary": "361 Invalid Vehicle Type"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Part B updated / 726 Vehicle type can not be regular / 361 Invalid Vehicle Type",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UpdateEWayBillVehicleResponse"
                },
                "examples": {
                  "200 Part B updated": {
                    "summary": "200 Part B updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "validUpto": "18/05/2024 11:59:00 PM",
                          "vehUpdDate": "13/05/2024 01:06:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "a2eecefe-3938-40ec-836f-b3cb5cee90e7"
                    }
                  },
                  "361 Invalid Vehicle Type": {
                    "summary": "361 Invalid Vehicle Type",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "361,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "5ed38aa9-75a4-416b-ace8-063294c481a5"
                    }
                  },
                  "726 Vehicle type can not be regular": {
                    "summary": "726 Vehicle type can not be regular",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "726,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "ef10f815-4c15-4fdd-a508-4fca2fb9e9d5"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/bill/{ewb_no}/extend": {
      "post": {
        "summary": "Extend E-Way Bill Validity",
        "deprecated": false,
        "description": "",
        "operationId": "extendEWayBillValidity1",
        "tags": [
          "E-Way Bill1",
          "Transporter"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExtendEWayBillValidityRequest"
              },
              "examples": {
                "200 Success": {
                  "value": {
                    "ewbNo": 291210077217,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "remainingDistance": 50,
                    "transDocNo": "1234",
                    "transMode": "5",
                    "extnRsnCode": 1,
                    "extnRemarks": "Flood",
                    "fromPincode": 560090,
                    "consignmentStatus": "T",
                    "transitType": "R",
                    "addressLine1": "Bengaluru",
                    "addressLine2": "Bengaluru",
                    "addressLine3": "Bengaluru"
                  },
                  "summary": "200 Success"
                },
                "382 Validity can be only extended in last 8 hours": {
                  "value": {
                    "ewbNo": 261010077217,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "remainingDistance": 50,
                    "transDocNo": "1234",
                    "transMode": "5",
                    "extnRsnCode": 1,
                    "extnRemarks": "Flood",
                    "fromPincode": 560090,
                    "consignmentStatus": "T",
                    "transitType": "R",
                    "addressLine1": "Bengaluru",
                    "addressLine2": "Bengaluru",
                    "addressLine3": "Bengaluru"
                  },
                  "summary": "382 Validity can be only extended in last 8 hours"
                },
                "705 Invalid transit type": {
                  "value": {
                    "ewbNo": 231010079649,
                    "vehicleNo": "PQR1234",
                    "fromPlace": "Bengaluru",
                    "fromState": 29,
                    "remainingDistance": 50,
                    "transDocNo": "1234",
                    "transMode": "5",
                    "extnRsnCode": 1,
                    "extnRemarks": "Flood",
                    "fromPincode": 560090,
                    "consignmentStatus": "T",
                    "transitType": "Q",
                    "addressLine1": "Bengaluru",
                    "addressLine2": "Bengaluru",
                    "addressLine3": "Bengaluru"
                  },
                  "summary": "705 Invalid transit type"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Success / 382 Validity can be only extended in last 8 hours / 705 Invalid transit type",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExtendEWayBillValidityResponse"
                },
                "examples": {
                  "200 Success": {
                    "summary": "200 Success",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": null,
                        "data": {
                          "ewayBillNo": "291210077217",
                          "updatedDate": "26/04/2024 05:07:00 PM",
                          "validUpto": "21/05/2024 23:59:00 PM"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "9c038b5a-ed68-478c-a727-591904aa91bb"
                    }
                  },
                  "382 Validity can be only extended in last 8 hours": {
                    "summary": "382 Validity can be only extended in last 8 hours",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "382"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "f94e2eeb-ae54-439e-9410-98862d51230f"
                    }
                  },
                  "705 Invalid transit type": {
                    "summary": "705 Invalid transit type",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "705, "
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "41c4664d-db30-4c78-8b77-5a55c5557609"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/transporter/bill/{ewb_no}/transporter": {
      "put": {
        "summary": "Update Transporter",
        "deprecated": false,
        "description": "",
        "operationId": "updateTransporterDetails1",
        "tags": [
          "E-Way Bill1",
          "Transporter"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateEWayBillTransporterRequest"
              },
              "examples": {
                "200 Transporter updated": {
                  "value": {
                    "ewbNo": 231010079649,
                    "transporterId": "29AAACW6874H1ZS"
                  },
                  "summary": "200 Transporter updated"
                },
                "222 Invalid transporter id": {
                  "value": {
                    "ewbNo": 231010079649,
                    "transporterId": "24AAACQ3770E000"
                  },
                  "summary": "222 Invalid transporter id"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Transporter updated / 222 Invalid transporter id",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UpdateEWayBillTransporterResponse"
                },
                "examples": {
                  "200 Transporter updated": {
                    "summary": "200 Transporter updated",
                    "value": {
                      "code": 200,
                      "data": {
                        "alert": "",
                        "data": {
                          "ewayBillNo": "231010079649",
                          "transUpdateDate": "13/05/2024 01:10:00 PM",
                          "transporterId": "29AAACW6874H1ZS"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "54e91ada-66f1-4e21-950f-80799a0a0895"
                    }
                  },
                  "222 Invalid transporter id": {
                    "summary": "222 Invalid transporter id",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "222,"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "4b847c73-771a-47bc-9a49-78dad98d2c8f"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/tax-payer/bill/{ewb_no}": {
      "get": {
        "summary": "Get E-Way Bill",
        "deprecated": false,
        "description": "",
        "operationId": "getEWayBill",
        "tags": [
          "E-Way Bill1",
          "Common"
        ],
        "parameters": [
          {
            "name": "ewb_no",
            "in": "path",
            "description": "",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "example": "primary"
            }
          },
          {
            "name": "x-proxy",
            "in": "header",
            "description": "",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "example": "secondary"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 EWB fetched / 357 EWB data not available / 200 Fetch rejected EWB",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetEWayBillResponse"
                },
                "examples": {
                  "200 EWB fetched": {
                    "summary": "200 EWB fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "VehiclListDetails": [
                            {
                              "enteredDate": "01/05/2024 07:00:00 PM",
                              "fromPlace": "FRAZER TOWN",
                              "fromState": 27,
                              "groupNo": "0",
                              "transDocDate": null,
                              "transDocNo": "",
                              "transMode": "1",
                              "tripshtNo": 0,
                              "updMode": "API",
                              "userGSTINTransin": "27AAACQ3770E004",
                              "vehicleNo": "PVC1234"
                            }
                          ],
                          "actFromStateCode": 27,
                          "actToStateCode": 29,
                          "actualDist": 1000,
                          "cessNonAdvolValue": 400,
                          "cessValue": 400.56,
                          "cgstValue": 0,
                          "docDate": "15/12/2017",
                          "docNo": "7001-8",
                          "docType": "INV",
                          "ewayBillDate": "01/05/2024 07:00:00 PM",
                          "ewbNo": 291010077005,
                          "extendedTimes": 0,
                          "fromAddr1": "2ND CROSS NO 59  19  A",
                          "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                          "fromGstin": "29AAACQ3770E000",
                          "fromPincode": 400027,
                          "fromPlace": "FRAZER TOWN",
                          "fromStateCode": 27,
                          "fromTrdName": "welton",
                          "genMode": "API",
                          "igstValue": 300.67,
                          "itemList": [
                            {
                              "cessNonAdvol": 0,
                              "cessRate": 3,
                              "cgstRate": 0,
                              "hsnCode": 1001,
                              "igstRate": 3,
                              "itemNo": 1,
                              "productDesc": "Wheat",
                              "productId": 0,
                              "productName": "Wheat",
                              "qtyUnit": "BOX",
                              "quantity": 4,
                              "sgstRate": 0,
                              "taxableAmount": 5609889
                            }
                          ],
                          "noValidDays": 5,
                          "otherValue": -100,
                          "rejectStatus": "N",
                          "sgstValue": 0,
                          "status": "ACT",
                          "subSupplyType": "1  ",
                          "supplyType": "O",
                          "toAddr1": "Shree Nilaya",
                          "toAddr2": "Dasarahosahalli",
                          "toGstin": "27AAACQ3770E000",
                          "toPincode": 560090,
                          "toPlace": "Beml Nagar",
                          "toStateCode": 29,
                          "toTrdName": "sthuthya",
                          "totInvValue": 68358,
                          "totalValue": 56099,
                          "transactionType": 4,
                          "transporterId": "27AAACQ3770E004",
                          "transporterName": "Acme Industries Private Limited",
                          "userGstin": "29AAACQ3770E000",
                          "validUpto": "06/05/2024 11:59:00 PM",
                          "vehicleType": "R"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "6dddbe8f-147f-4678-88b6-003f112854d7"
                    }
                  },
                  "200 Fetch rejected EWB": {
                    "summary": "200 Fetch rejected EWB",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "VehiclListDetails": [
                            {
                              "enteredDate": "01/05/2024 07:00:00 PM",
                              "fromPlace": "FRAZER TOWN",
                              "fromState": 27,
                              "groupNo": "0",
                              "transDocDate": null,
                              "transDocNo": "",
                              "transMode": "1",
                              "tripshtNo": 0,
                              "updMode": "API",
                              "userGSTINTransin": "27AAACQ3770E004",
                              "vehicleNo": "PVC1234"
                            }
                          ],
                          "actFromStateCode": 27,
                          "actToStateCode": 29,
                          "actualDist": 1000,
                          "cessNonAdvolValue": 400,
                          "cessValue": 400.56,
                          "cgstValue": 0,
                          "docDate": "15/12/2017",
                          "docNo": "7001-8",
                          "docType": "INV",
                          "ewayBillDate": "01/05/2024 07:00:00 PM",
                          "ewbNo": 291010077010,
                          "extendedTimes": 0,
                          "fromAddr1": "2ND CROSS NO 59  19  A",
                          "fromAddr2": "GROUND FLOOR OSBORNE ROAD",
                          "fromGstin": "29AAACQ3770E000",
                          "fromPincode": 400027,
                          "fromPlace": "FRAZER TOWN",
                          "fromStateCode": 27,
                          "fromTrdName": "welton",
                          "genMode": "API",
                          "igstValue": 300.67,
                          "itemList": [
                            {
                              "cessNonAdvol": 0,
                              "cessRate": 3,
                              "cgstRate": 0,
                              "hsnCode": 1001,
                              "igstRate": 3,
                              "itemNo": 1,
                              "productDesc": "Wheat",
                              "productId": 0,
                              "productName": "Wheat",
                              "qtyUnit": "BOX",
                              "quantity": 4,
                              "sgstRate": 0,
                              "taxableAmount": 5609889
                            }
                          ],
                          "noValidDays": 5,
                          "otherValue": -100,
                          "rejectStatus": "Y",
                          "sgstValue": 0,
                          "status": "ACT",
                          "subSupplyType": "1  ",
                          "supplyType": "O",
                          "toAddr1": "Shree Nilaya",
                          "toAddr2": "Dasarahosahalli",
                          "toGstin": "27AAACQ3770E000",
                          "toPincode": 560090,
                          "toPlace": "Beml Nagar",
                          "toStateCode": 29,
                          "toTrdName": "sthuthya",
                          "totInvValue": 68358,
                          "totalValue": 56099,
                          "transactionType": 4,
                          "transporterId": "27AAACQ3770E004",
                          "transporterName": "Quicko Infosoft Private Limited",
                          "userGstin": "29AAACQ3770E000",
                          "validUpto": "06/05/2024 11:59:00 PM",
                          "vehicleType": "R"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "67f3b1ad-80d6-4692-92d8-e978ffec096b"
                    }
                  },
                  "357 EWB data not available": {
                    "summary": "357 EWB data not available",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "357"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "5a742c1b-de26-41fe-bf27-9becb16ed6f4"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/tax-payer/gstin/search": {
      "post": {
        "summary": "Search GSTIN",
        "deprecated": false,
        "description": "",
        "operationId": "searchGstin2",
        "tags": [
          "E-Way Bill1",
          "Common"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SearchEWayBillGstinRequest"
              },
              "examples": {
                "200 GSTIN details fetched": {
                  "value": {
                    "gstin": "29AAACQ3770E000"
                  },
                  "summary": "200 GSTIN details fetched"
                },
                "325 Could not retrieve data": {
                  "value": {
                    "gstin": "27DMOPD7318K2ZL"
                  },
                  "summary": "325 Could not retrieve data"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 GSTIN details fetched / 325 Could not retrieve data",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SearchEWayBillGstinResponse"
                },
                "examples": {
                  "200 GSTIN details fetched": {
                    "summary": "200 GSTIN details fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "address1": "",
                          "address2": "560009",
                          "blkStatus": "",
                          "gstin": "29AAACQ3770E000",
                          "legalName": "Acme Industries Private Limited",
                          "pinCode": "560009",
                          "stateCode": "27",
                          "status": "ACT",
                          "tradeName": "",
                          "txpType": "REG"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "c882b9b8-08c4-4bb7-b0aa-9f61ef6c4d21"
                    }
                  },
                  "325 Could not retrieve data": {
                    "summary": "325 Could not retrieve data",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "325"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "31de47c7-fcd6-4cf3-885b-b1c875f769a6"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/tax-payer/transin/search": {
      "post": {
        "summary": "Search Transporter Id",
        "deprecated": false,
        "description": "",
        "operationId": "searchTransporterId",
        "tags": [
          "E-Way Bill1",
          "Common"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SearchEWayBillTransporterRequest"
              },
              "examples": {
                "200 Transporter details fetched": {
                  "value": {
                    "transin": "29AAFCA3559A1ZV"
                  },
                  "summary": "200 Transporter details fetched"
                },
                "328 Could not retrieve data": {
                  "value": {
                    "transin": "29AKLPM8755F1Z2"
                  },
                  "summary": "328 Could not retrieve data"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200 Transporter details fetched / 328 Could not retrieve data",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SearchEWayBillTransporterResponse"
                },
                "examples": {
                  "200 Transporter details fetched": {
                    "summary": "200 Transporter details fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "address1": "1 ,GROUND FLOOR ,-",
                          "address2": "2ND CROSS ,BANGALURU ,BANGALURU",
                          "legalName": "AGARWAL PACKERS AND MOVERS LIMITED",
                          "pinCode": "560027",
                          "stateCode": "29",
                          "tradeName": "AGARWAL PACKERS AND AMOVERS LIMITED",
                          "transin": "29AAFCA3559A1ZV"
                        },
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "3ea71bc0-b5f5-45d7-8dca-800ccc073951"
                    }
                  },
                  "328 Could not retrieve data": {
                    "summary": "328 Could not retrieve data",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "328"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "205e93e8-97cc-432d-b585-4efd3ec9ac82"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/tax-payer/error-list": {
      "get": {
        "summary": "Get Error List",
        "deprecated": false,
        "description": "",
        "operationId": "getErrorList",
        "tags": [
          "E-Way Bill1",
          "Common"
        ],
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 Error list fetched",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetEWayBillErrorListResponse"
                },
                "examples": {
                  "200 Error list fetched": {
                    "summary": "200 Error list fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": [
                          {
                            "errorCode": "100",
                            "errorDesc": "Invalid Json"
                          },
                          {
                            "errorCode": "101",
                            "errorDesc": "Invalid Username"
                          },
                          {
                            "errorCode": "102",
                            "errorDesc": "Invalid Password"
                          },
                          {
                            "errorCode": "103",
                            "errorDesc": "Invalid Client -Id"
                          },
                          {
                            "errorCode": "104",
                            "errorDesc": "Invalid Client Secret"
                          },
                          {
                            "errorCode": "105",
                            "errorDesc": "Invalid Token"
                          },
                          {
                            "errorCode": "106",
                            "errorDesc": "Token Expired"
                          },
                          {
                            "errorCode": "107",
                            "errorDesc": "Authentication failed. Pls. inform the helpdesk"
                          },
                          {
                            "errorCode": "108",
                            "errorDesc": "Invalid login credentials."
                          },
                          {
                            "errorCode": "109",
                            "errorDesc": "Decryption of data failed"
                          },
                          {
                            "errorCode": "110",
                            "errorDesc": "Invalid Client-ID/Client-Secret"
                          },
                          {
                            "errorCode": "111",
                            "errorDesc": "GSTIN is not registerd to this GSP"
                          },
                          {
                            "errorCode": "112",
                            "errorDesc": "Inactive Client"
                          },
                          {
                            "errorCode": "113",
                            "errorDesc": "Inactive User"
                          },
                          {
                            "errorCode": "114",
                            "errorDesc": "Technical Error, Pl. contact the helpdesk."
                          },
                          {
                            "errorCode": "115",
                            "errorDesc": "Request payload data cannot be empty"
                          },
                          {
                            "errorCode": "116",
                            "errorDesc": "Auth token is not valid for this client"
                          },
                          {
                            "errorCode": "201",
                            "errorDesc": "Invalid Supply Type"
                          },
                          {
                            "errorCode": "202",
                            "errorDesc": "Invalid Sub-supply Type"
                          },
                          {
                            "errorCode": "203",
                            "errorDesc": "Sub-transaction type does not belongs to transaction type"
                          },
                          {
                            "errorCode": "204",
                            "errorDesc": "Invalid Document type"
                          },
                          {
                            "errorCode": "205",
                            "errorDesc": "Document type does not match with transaction & Sub trans type"
                          },
                          {
                            "errorCode": "206",
                            "errorDesc": "Invaild Invoice Number"
                          },
                          {
                            "errorCode": "207",
                            "errorDesc": "Invalid Invoice Date"
                          },
                          {
                            "errorCode": "208",
                            "errorDesc": "Invalid Supplier GSTIN"
                          },
                          {
                            "errorCode": "209",
                            "errorDesc": "Blank Supplier Address"
                          },
                          {
                            "errorCode": "210",
                            "errorDesc": "Invalid or Blank Supplier PIN Code"
                          },
                          {
                            "errorCode": "211",
                            "errorDesc": "Invalid or Blank Supplier state Code"
                          },
                          {
                            "errorCode": "212",
                            "errorDesc": "Invalid Consignee GSTIN"
                          },
                          {
                            "errorCode": "213",
                            "errorDesc": "Invalid Consignee Address"
                          },
                          {
                            "errorCode": "214",
                            "errorDesc": "Invalid Consignee PIN Code"
                          },
                          {
                            "errorCode": "215",
                            "errorDesc": "Invalid Consignee State Code"
                          },
                          {
                            "errorCode": "216",
                            "errorDesc": "Invalid HSN Code"
                          },
                          {
                            "errorCode": "217",
                            "errorDesc": "Invalid UQC Code"
                          },
                          {
                            "errorCode": "218",
                            "errorDesc": "Invalid Tax Rate for Intra State Transaction"
                          },
                          {
                            "errorCode": "219",
                            "errorDesc": "Invalid Tax Rate for Inter State Transaction"
                          },
                          {
                            "errorCode": "220",
                            "errorDesc": "Invalid Trans mode"
                          },
                          {
                            "errorCode": "221",
                            "errorDesc": "Invalid Approximate Distance"
                          },
                          {
                            "errorCode": "222",
                            "errorDesc": "Invalid Transporter Id"
                          },
                          {
                            "errorCode": "223",
                            "errorDesc": "Invalid Transaction Document Number"
                          },
                          {
                            "errorCode": "224",
                            "errorDesc": "Invalid Transaction Date"
                          },
                          {
                            "errorCode": "225",
                            "errorDesc": "Invalid Vehicle Number Format"
                          },
                          {
                            "errorCode": "226",
                            "errorDesc": "Both Transaction and Vehicle Number Blank"
                          },
                          {
                            "errorCode": "227",
                            "errorDesc": "User Gstin cannot be blank"
                          },
                          {
                            "errorCode": "228",
                            "errorDesc": "User id cannot be blank"
                          },
                          {
                            "errorCode": "229",
                            "errorDesc": "Supplier name is required"
                          },
                          {
                            "errorCode": "230",
                            "errorDesc": "Supplier place is required"
                          },
                          {
                            "errorCode": "231",
                            "errorDesc": "Consignee name is required"
                          },
                          {
                            "errorCode": "232",
                            "errorDesc": "Consignee place is required"
                          },
                          {
                            "errorCode": "233",
                            "errorDesc": "Eway bill does not contains any items"
                          },
                          {
                            "errorCode": "234",
                            "errorDesc": "Total amount/Taxable amout is mandatory"
                          },
                          {
                            "errorCode": "235",
                            "errorDesc": "Tax rates for Intra state transaction is blank"
                          },
                          {
                            "errorCode": "236",
                            "errorDesc": "Tax rates for Inter state transaction is blank"
                          },
                          {
                            "errorCode": "237",
                            "errorDesc": "Invalid client -Id/client-secret"
                          },
                          {
                            "errorCode": "238",
                            "errorDesc": "Invalid auth token"
                          },
                          {
                            "errorCode": "239",
                            "errorDesc": "Invalid action"
                          },
                          {
                            "errorCode": "240",
                            "errorDesc": "Could not generate eway bill, pls contact helpdesk"
                          },
                          {
                            "errorCode": "250",
                            "errorDesc": "Invalid Vehicle Release Date Format"
                          },
                          {
                            "errorCode": "251",
                            "errorDesc": "CGST nad SGST TaxRate should be same"
                          },
                          {
                            "errorCode": "252",
                            "errorDesc": "Invalid CGST Tax Rate"
                          },
                          {
                            "errorCode": "253",
                            "errorDesc": "Invalid SGST Tax Rate"
                          },
                          {
                            "errorCode": "254",
                            "errorDesc": "Invalid IGST Tax Rate"
                          },
                          {
                            "errorCode": "255",
                            "errorDesc": "Invalid CESS Rate"
                          },
                          {
                            "errorCode": "278",
                            "errorDesc": "User Gstin does not match with Transporter Id"
                          },
                          {
                            "errorCode": "280",
                            "errorDesc": "Status is not ACTIVE"
                          },
                          {
                            "errorCode": "281",
                            "errorDesc": "Eway Bill is already expired hence update transporter is not allowed."
                          },
                          {
                            "errorCode": "282",
                            "errorDesc": "At least 4 digit HSN code is mandatory for taxpayers with turnover less than 5Cr."
                          },
                          {
                            "errorCode": "283",
                            "errorDesc": "At least 6 digit HSN code is mandatory for taxpayers with turnover 5Cr. and above"
                          },
                          {
                            "errorCode": "301",
                            "errorDesc": "Invalid eway bill number"
                          },
                          {
                            "errorCode": "302",
                            "errorDesc": "Invalid transporter mode"
                          },
                          {
                            "errorCode": "303",
                            "errorDesc": "Vehicle number is required"
                          },
                          {
                            "errorCode": "304",
                            "errorDesc": "Invalid vehicle format"
                          },
                          {
                            "errorCode": "305",
                            "errorDesc": "Place from is required"
                          },
                          {
                            "errorCode": "306",
                            "errorDesc": "Invalid from state"
                          },
                          {
                            "errorCode": "307",
                            "errorDesc": "Invalid reason"
                          },
                          {
                            "errorCode": "308",
                            "errorDesc": "Invalid remarks"
                          },
                          {
                            "errorCode": "309",
                            "errorDesc": "Could not update vehicle details, pl contact helpdesk"
                          },
                          {
                            "errorCode": "311",
                            "errorDesc": "Validity period lapsed, you cannot update vehicle details"
                          },
                          {
                            "errorCode": "312",
                            "errorDesc": "This eway bill is either not generated by you or cancelled"
                          },
                          {
                            "errorCode": "315",
                            "errorDesc": "Validity period lapsed, you cannot cancel this eway bill"
                          },
                          {
                            "errorCode": "316",
                            "errorDesc": "Eway bill is already verified, you cannot cancel it"
                          },
                          {
                            "errorCode": "317",
                            "errorDesc": "Could not cancel eway bill, please contact helpdesk"
                          },
                          {
                            "errorCode": "320",
                            "errorDesc": "Invalid state to"
                          },
                          {
                            "errorCode": "321",
                            "errorDesc": "Invalid place to"
                          },
                          {
                            "errorCode": "322",
                            "errorDesc": "Could not generate consolidated eway bill"
                          },
                          {
                            "errorCode": "325",
                            "errorDesc": "Could not retrieve data"
                          },
                          {
                            "errorCode": "326",
                            "errorDesc": "Could not retrieve GSTIN details for the given GSTIN number"
                          },
                          {
                            "errorCode": "327",
                            "errorDesc": "Could not retrieve data from hsn"
                          },
                          {
                            "errorCode": "328",
                            "errorDesc": "Could not retrieve transporter details from gstin"
                          },
                          {
                            "errorCode": "329",
                            "errorDesc": "Could not retrieve States List"
                          },
                          {
                            "errorCode": "330",
                            "errorDesc": "Could not retrieve UQC list"
                          },
                          {
                            "errorCode": "331",
                            "errorDesc": "Could not retrieve Error code"
                          },
                          {
                            "errorCode": "334",
                            "errorDesc": "Could not retrieve user details by userid "
                          },
                          {
                            "errorCode": "336",
                            "errorDesc": "Could not retrieve transporter data by gstin "
                          },
                          {
                            "errorCode": "337",
                            "errorDesc": "Could not retrieve HSN details for the given HSN number"
                          },
                          {
                            "errorCode": "338",
                            "errorDesc": "You cannot update transporter details, as the current tranporter is already entered Part B details of the eway bill"
                          },
                          {
                            "errorCode": "339",
                            "errorDesc": "You are not assigned to update the tranporter details of this eway bill"
                          },
                          {
                            "errorCode": "341",
                            "errorDesc": "This e-way bill is generated by you and hence you cannot reject it"
                          },
                          {
                            "errorCode": "342",
                            "errorDesc": "You cannot reject this e-way bill as you are not the other party to do so"
                          },
                          {
                            "errorCode": "343",
                            "errorDesc": "This e-way bill is cancelled"
                          },
                          {
                            "errorCode": "344",
                            "errorDesc": "Invalid eway bill number"
                          },
                          {
                            "errorCode": "345",
                            "errorDesc": "Validity period lapsed, you cannot reject the e-way bill"
                          },
                          {
                            "errorCode": "346",
                            "errorDesc": "You can reject the e-way bill only within 72 hours from generated timel"
                          },
                          {
                            "errorCode": "347",
                            "errorDesc": "Validation of eway bill number failed, while rejecting ewaybill"
                          },
                          {
                            "errorCode": "350",
                            "errorDesc": "Could not generate consolidated eway bill"
                          },
                          {
                            "errorCode": "351",
                            "errorDesc": "Invalid state code"
                          },
                          {
                            "errorCode": "352",
                            "errorDesc": "Invalid rfid date"
                          },
                          {
                            "errorCode": "353",
                            "errorDesc": "Invalid location code"
                          },
                          {
                            "errorCode": "354",
                            "errorDesc": "Invalid rfid number"
                          },
                          {
                            "errorCode": "355",
                            "errorDesc": "Invalid Vehicle Number Format"
                          },
                          {
                            "errorCode": "356",
                            "errorDesc": "Invalid wt on bridge"
                          },
                          {
                            "errorCode": "357",
                            "errorDesc": "Could not retrieve eway bill details, pl. contact helpdesk"
                          },
                          {
                            "errorCode": "358",
                            "errorDesc": "GSTIN passed in request header is not matching with the user gstin mentioned in payload JSON"
                          },
                          {
                            "errorCode": "359",
                            "errorDesc": "User GSTIN should match to GSTIN(from) for outward transactions"
                          },
                          {
                            "errorCode": "360",
                            "errorDesc": "User GSTIN should match to GSTIN(to) for inward transactions"
                          },
                          {
                            "errorCode": "361",
                            "errorDesc": "Invalid Vehicle Type"
                          },
                          {
                            "errorCode": "362",
                            "errorDesc": "Transporter document date cannot be earlier than the invoice date"
                          },
                          {
                            "errorCode": "363",
                            "errorDesc": "E-way bill is not enabled for intra state movement for you state"
                          },
                          {
                            "errorCode": "364",
                            "errorDesc": "Error in verifying eway bill"
                          },
                          {
                            "errorCode": "365",
                            "errorDesc": "Error in verifying consolidated eway bill"
                          },
                          {
                            "errorCode": "366",
                            "errorDesc": "You will not get the ewaybills generated today, howerver you cann access the ewaybills of yester days"
                          },
                          {
                            "errorCode": "367",
                            "errorDesc": "Could not retrieve data for officer login"
                          },
                          {
                            "errorCode": "368",
                            "errorDesc": "Could not update transporter"
                          },
                          {
                            "errorCode": "369",
                            "errorDesc": "GSTIN/Transin passed in request header should match with the transported Id mentioned in payload JSON"
                          },
                          {
                            "errorCode": "370",
                            "errorDesc": "GSTIN/Transin passed in request header should not be the same as supplier(fromGSTIN) or recepient(toGSTIN)"
                          },
                          {
                            "errorCode": "371",
                            "errorDesc": "Invalid or Blank Supplier Ship-to State Code"
                          },
                          {
                            "errorCode": "372",
                            "errorDesc": "Invalid or Blank Consignee Ship-to State Code"
                          },
                          {
                            "errorCode": "373",
                            "errorDesc": "The Supplier ship-from state code should be Other Country for Sub Supply Type- Export"
                          },
                          {
                            "errorCode": "374",
                            "errorDesc": "The Consignee pin code should be 999999 for Sub Supply Type- Export"
                          },
                          {
                            "errorCode": "375",
                            "errorDesc": "The Supplier ship-to state code should be Other Country for Sub Supply Type- Import"
                          },
                          {
                            "errorCode": "376",
                            "errorDesc": "The Supplier pin code should be 999999 for Sub Supply Type- Import"
                          },
                          {
                            "errorCode": "377",
                            "errorDesc": "Sub Supply Type is mentioned as Others, the description for that is mandatory"
                          },
                          {
                            "errorCode": "378",
                            "errorDesc": "The supplier or conginee belong to SEZ, Inter state tax rates are applicable here"
                          },
                          {
                            "errorCode": "379",
                            "errorDesc": "Eway Bill can not be extended.. Already Cancelled"
                          },
                          {
                            "errorCode": "380",
                            "errorDesc": "Eway Bill Can not be Extended. Not in Active State"
                          },
                          {
                            "errorCode": "381",
                            "errorDesc": "There is No PART-B/Vehicle Entry.. So Please Update Vehicle Information.."
                          },
                          {
                            "errorCode": "382",
                            "errorDesc": "You Cannot Extend as EWB can be Extended only 8 hour before or after w.r.t Validity of EWB..!!"
                          },
                          {
                            "errorCode": "383",
                            "errorDesc": "Error While Extending..Please Contact Helpdesk. "
                          },
                          {
                            "errorCode": "384",
                            "errorDesc": "You are not current transporter or Generator of the ewayBill, with no transporter details."
                          },
                          {
                            "errorCode": "385",
                            "errorDesc": "For Rail/Ship/Air transDocNo and transDocDate is mandatory"
                          },
                          {
                            "errorCode": "386",
                            "errorDesc": "Reason Code, Remarks is mandatory."
                          },
                          {
                            "errorCode": "387",
                            "errorDesc": "No Record Found for Entered consolidated eWay bill."
                          },
                          {
                            "errorCode": "388",
                            "errorDesc": "Exception in regenration of consolidated eWayBill!!Please Contact helpdesk"
                          },
                          {
                            "errorCode": "389",
                            "errorDesc": "Remaining Distance Required"
                          },
                          {
                            "errorCode": "390",
                            "errorDesc": "Remaining Distance Can not be greater than Actual Distance."
                          },
                          {
                            "errorCode": "391",
                            "errorDesc": "No eway bill of specified tripsheet, neither  ACTIVE nor not Valid."
                          },
                          {
                            "errorCode": "392",
                            "errorDesc": "Tripsheet is already cancelled, Hence Regeration is not possible"
                          },
                          {
                            "errorCode": "393",
                            "errorDesc": "Invalid GSTIN"
                          },
                          {
                            "errorCode": "394",
                            "errorDesc": "For other than Road Transport, TransDoc number is required"
                          },
                          {
                            "errorCode": "395",
                            "errorDesc": "Eway Bill Number should be numeric only"
                          },
                          {
                            "errorCode": "396",
                            "errorDesc": "Either Eway Bill Number Or Consolidated Eway Bill Number is required for Verification"
                          },
                          {
                            "errorCode": "397",
                            "errorDesc": "Error in Multi Vehicle Movement Initiation"
                          },
                          {
                            "errorCode": "398",
                            "errorDesc": "Eway Bill Item List is Empty"
                          },
                          {
                            "errorCode": "399",
                            "errorDesc": "Unit Code is not matching with any of the Unit Code from ItemList"
                          },
                          {
                            "errorCode": "400",
                            "errorDesc": "total quantity is exceeding from multi vehicle movement initiation quantity"
                          },
                          {
                            "errorCode": "401",
                            "errorDesc": "Error in inserting multi vehicle details"
                          },
                          {
                            "errorCode": "402",
                            "errorDesc": "total quantity can not be less than or equal to zero"
                          },
                          {
                            "errorCode": "403",
                            "errorDesc": "Error in multi vehicle details"
                          },
                          {
                            "errorCode": "405",
                            "errorDesc": "No record found for multi vehicle update with specified ewbNo groupNo and old vehicleNo/transDocNo with status as ACT"
                          },
                          {
                            "errorCode": "406",
                            "errorDesc": "Group number cannot be empty or zero"
                          },
                          {
                            "errorCode": "407",
                            "errorDesc": "Invalid old vehicle number format"
                          },
                          {
                            "errorCode": "408",
                            "errorDesc": "Invalid new vehicle number format"
                          },
                          {
                            "errorCode": "409",
                            "errorDesc": "Invalid old transDoc number"
                          },
                          {
                            "errorCode": "410",
                            "errorDesc": "Invalid new transDoc number"
                          },
                          {
                            "errorCode": "411",
                            "errorDesc": "Multi Vehicle Initiation data is not there for specified ewayBill and group No"
                          },
                          {
                            "errorCode": "412",
                            "errorDesc": "Multi Vehicle movement is already Initiated,hence PART B updation not allowed"
                          },
                          {
                            "errorCode": "413",
                            "errorDesc": "Unit Code is not matching with unit code of first initiaton"
                          },
                          {
                            "errorCode": "415",
                            "errorDesc": "Error in fetching in verification data for officer"
                          },
                          {
                            "errorCode": "416",
                            "errorDesc": "Date range is exceeding allowed date range "
                          },
                          {
                            "errorCode": "417",
                            "errorDesc": "No verification data found for officer "
                          },
                          {
                            "errorCode": "418",
                            "errorDesc": "No record found"
                          },
                          {
                            "errorCode": "419",
                            "errorDesc": "Error in fetching search result for taxpayer/transporter"
                          },
                          {
                            "errorCode": "420",
                            "errorDesc": "Minimum six character required for Tradename/legalname search"
                          },
                          {
                            "errorCode": "421",
                            "errorDesc": "Invalid pincode"
                          },
                          {
                            "errorCode": "422",
                            "errorDesc": "Invalid mobile number"
                          },
                          {
                            "errorCode": "423",
                            "errorDesc": "Error in fetching ewaybill list by vehicle number"
                          },
                          {
                            "errorCode": "424",
                            "errorDesc": "Invalid PAN number"
                          },
                          {
                            "errorCode": "432",
                            "errorDesc": "invalid vehicle released value"
                          },
                          {
                            "errorCode": "433",
                            "errorDesc": "invalid goods detained parameter value"
                          },
                          {
                            "errorCode": "434",
                            "errorDesc": "invalid ewbNoAvailable parameter value"
                          },
                          {
                            "errorCode": "435",
                            "errorDesc": "Part B is already updated,hence updation is not allowed"
                          },
                          {
                            "errorCode": "436",
                            "errorDesc": "Invalid email id"
                          },
                          {
                            "errorCode": "442",
                            "errorDesc": "Error in inserting verification details"
                          },
                          {
                            "errorCode": "443",
                            "errorDesc": "invalid invoice available value"
                          },
                          {
                            "errorCode": "600",
                            "errorDesc": "Invalid category"
                          },
                          {
                            "errorCode": "601",
                            "errorDesc": "Invalid date format"
                          },
                          {
                            "errorCode": "602",
                            "errorDesc": "Invalid File Number"
                          },
                          {
                            "errorCode": "603",
                            "errorDesc": "For file details file number is required"
                          },
                          {
                            "errorCode": "604",
                            "errorDesc": "E-way bill(s) are already generated for the same document number, you cannot generate again on same document number"
                          },
                          {
                            "errorCode": "605",
                            "errorDesc": " If the goods are moving towards transporter location, the value of toTransporterLoc should be Y"
                          },
                          {
                            "errorCode": "606",
                            "errorDesc": "Vehicle type is mandatory, if the goods are moving to transporter place"
                          },
                          {
                            "errorCode": "607",
                            "errorDesc": "dispatch from gstin is mandatary "
                          },
                          {
                            "errorCode": "608",
                            "errorDesc": "ship to from gstin is mandatary"
                          },
                          {
                            "errorCode": "609",
                            "errorDesc": " invalid ship to from gstin "
                          },
                          {
                            "errorCode": "610",
                            "errorDesc": "invalid dispatch from gstin "
                          },
                          {
                            "errorCode": "611",
                            "errorDesc": "invalid document type for the given supply type "
                          },
                          {
                            "errorCode": "612",
                            "errorDesc": "Invalid transaction type"
                          },
                          {
                            "errorCode": "614",
                            "errorDesc": "Transaction type is mandatory"
                          },
                          {
                            "errorCode": "617",
                            "errorDesc": "Bill-from and dispatch-from gstin should not be same for this transaction type"
                          },
                          {
                            "errorCode": "618",
                            "errorDesc": "Bill-to and ship-to gstin should not be same for this transaction type"
                          },
                          {
                            "errorCode": "619",
                            "errorDesc": "Transporter Id is mandatory for generation of Part A slip"
                          },
                          {
                            "errorCode": "620",
                            "errorDesc": "Total invoice value cannot be less than the sum of total assessible value and tax values"
                          },
                          {
                            "errorCode": "621",
                            "errorDesc": "trans mode is mandatory since vehicle number is present"
                          },
                          {
                            "errorCode": "622",
                            "errorDesc": "trans mode is mandatory since trans doc number is present"
                          },
                          {
                            "errorCode": "627",
                            "errorDesc": "Total value should not be negative"
                          },
                          {
                            "errorCode": "628",
                            "errorDesc": "Total invoice value should not be negative"
                          },
                          {
                            "errorCode": "629",
                            "errorDesc": "IGST value should not be negative"
                          },
                          {
                            "errorCode": "630",
                            "errorDesc": "CGST value should not be negative"
                          },
                          {
                            "errorCode": "631",
                            "errorDesc": "SGST value should not be negative"
                          },
                          {
                            "errorCode": "632",
                            "errorDesc": "Cess value should not be negative"
                          },
                          {
                            "errorCode": "633",
                            "errorDesc": "Cess non advol should not be negative"
                          },
                          {
                            "errorCode": "634",
                            "errorDesc": "Vehicle type should not be ODC when transmode is other than road"
                          },
                          {
                            "errorCode": "635",
                            "errorDesc": "You cannot update part B, as the current tranporter is already entered Part B details of the eway bill"
                          },
                          {
                            "errorCode": "636",
                            "errorDesc": "You are not assigned to update part B"
                          },
                          {
                            "errorCode": "637",
                            "errorDesc": "You cannot extend ewaybill, as the current tranporter is already entered Part B details of the ewaybill"
                          },
                          {
                            "errorCode": "638",
                            "errorDesc": "Transport mode is mandatory as Vehicle Number/Transport Document Number is given"
                          },
                          {
                            "errorCode": "640",
                            "errorDesc": "Tolal Invoice value is mandatory"
                          },
                          {
                            "errorCode": "641",
                            "errorDesc": "For outward CKD/SKD/Lots supply type, Bill To state should be as Other Country, since the  Bill To GSTIN given is of SEZ unit"
                          },
                          {
                            "errorCode": "642",
                            "errorDesc": "For inward CKD/SKD/Lots supply type, Bill From state should be as Other Country, since the  Bill From GSTIN given is of SEZ unit"
                          },
                          {
                            "errorCode": "643",
                            "errorDesc": "For regular transaction, Bill from state code and Dispatch from state code should be same"
                          },
                          {
                            "errorCode": "644",
                            "errorDesc": "For regular transaction, Bill to state code and Ship to state code should be same"
                          },
                          {
                            "errorCode": "645",
                            "errorDesc": "You cannot do Multi Vehicle movement, as current transporeter already entered part B"
                          },
                          {
                            "errorCode": "646",
                            "errorDesc": "You are not assigned to do multi vehicle movement"
                          },
                          {
                            "errorCode": "647",
                            "errorDesc": "Could not insert RFID data, please contact to helpdesk"
                          },
                          {
                            "errorCode": "648",
                            "errorDesc": "Multi Vehicle movement is already Initiated,hence generation of consolidated eway bill is not allowed"
                          },
                          {
                            "errorCode": "649",
                            "errorDesc": "You cannot generate consolidated eway bill , as the current tranporter is already entered Part B details of the eway bill"
                          },
                          {
                            "errorCode": "650",
                            "errorDesc": "You are not assigned to generate consolidated ewaybill"
                          },
                          {
                            "errorCode": "651",
                            "errorDesc": "For Category PartA or PartB ewbDt is mandatory"
                          },
                          {
                            "errorCode": "652",
                            "errorDesc": "For Category EWB03 procDt is mandatory"
                          },
                          {
                            "errorCode": "653",
                            "errorDesc": "The Ewaybill is cancelled"
                          },
                          {
                            "errorCode": "654",
                            "errorDesc": "This GSTIN has generated a common Enrolment Number. Hence you are not allowed to generate Eway bill"
                          },
                          {
                            "errorCode": "655",
                            "errorDesc": "This GSTIN has generated a common Enrolment Number. Hence you cannot mention it as a transporter"
                          },
                          {
                            "errorCode": "656",
                            "errorDesc": "This Eway Bill does not belongs to your state"
                          },
                          {
                            "errorCode": "657",
                            "errorDesc": "Eway Bill Category wise details will be available after 4 days only"
                          },
                          {
                            "errorCode": "658",
                            "errorDesc": "You are blocked for accesing this API as the allowed number of requests has been exceeded"
                          },
                          {
                            "errorCode": "659",
                            "errorDesc": "Remarks is mandatory"
                          },
                          {
                            "errorCode": "670",
                            "errorDesc": "Invalid Month Parameter"
                          },
                          {
                            "errorCode": "671",
                            "errorDesc": "Invalid Year Parameter"
                          },
                          {
                            "errorCode": "672",
                            "errorDesc": "User Id is mandatory"
                          },
                          {
                            "errorCode": "673",
                            "errorDesc": "Error in getting officer dashboard"
                          },
                          {
                            "errorCode": "675",
                            "errorDesc": "Error in getting EWB03 details by acknowledgement date range"
                          },
                          {
                            "errorCode": "678",
                            "errorDesc": "Invalid Uniq No"
                          },
                          {
                            "errorCode": "679",
                            "errorDesc": "Invalid EWB03 Ack No"
                          },
                          {
                            "errorCode": "680",
                            "errorDesc": "Invalid Close Reason"
                          },
                          {
                            "errorCode": "681",
                            "errorDesc": "Error in Closing EWB  Verification Data"
                          },
                          {
                            "errorCode": "682",
                            "errorDesc": "No Record available to Close"
                          },
                          {
                            "errorCode": "683",
                            "errorDesc": "Error in fetching WatchList Data"
                          },
                          {
                            "errorCode": "700",
                            "errorDesc": "You are not assigned to extend e-waybill"
                          },
                          {
                            "errorCode": "711",
                            "errorDesc": "Invalid value for isInTransit field"
                          },
                          {
                            "errorCode": "712",
                            "errorDesc": "Transit Type is not required as the good are not in movement"
                          },
                          {
                            "errorCode": "713",
                            "errorDesc": "Transit Address is not required as the good are not in movement"
                          },
                          {
                            "errorCode": "714",
                            "errorDesc": "Document type - Tax Invoice is not allowed for composite tax payer"
                          },
                          {
                            "errorCode": "715",
                            "errorDesc": "The Consignor GSTIN is blocked from e-waybill generation as Return is not filed for past 2 months"
                          },
                          {
                            "errorCode": "716",
                            "errorDesc": "The Consignee GSTIN is blocked from e-waybill generation as Return is not filed for past 2 months"
                          },
                          {
                            "errorCode": "717",
                            "errorDesc": "The Transporter GSTIN is blocked from e-waybill generation as Return is not filed for past 2 months"
                          },
                          {
                            "errorCode": "718",
                            "errorDesc": "The User GSTIN is blocked from Transporter Updation as Return is not filed for past 2 months"
                          },
                          {
                            "errorCode": "719",
                            "errorDesc": "The Transporter GSTIN is blocked from Transporter Updation as Return is not filed for past 2 months"
                          },
                          {
                            "errorCode": "800",
                            "errorDesc": "Redis server Is not Working  try after some time"
                          },
                          {
                            "errorCode": "801",
                            "errorDesc": "Transporter id is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "802",
                            "errorDesc": "Transporter name is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "803",
                            "errorDesc": "TransDocNo is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "804",
                            "errorDesc": "TransDocDate is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "805",
                            "errorDesc": "Vehicle No is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "806",
                            "errorDesc": "Vehicle Type is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "807",
                            "errorDesc": "Transmode is mandatory for ewaybill for gold"
                          },
                          {
                            "errorCode": "808",
                            "errorDesc": "Inter-State ewaybill is not allowed for gold"
                          },
                          {
                            "errorCode": "809",
                            "errorDesc": "Other items are not allowed with eway bill for gold"
                          },
                          {
                            "errorCode": "810",
                            "errorDesc": "Transport can not be updated for EwayBill For Gold"
                          },
                          {
                            "errorCode": "811",
                            "errorDesc": "Vehicle can not be updated for EwayBill For Gold"
                          },
                          {
                            "errorCode": "812",
                            "errorDesc": "ConsolidatedEWB cannot be generated for EwayBill For Gold "
                          },
                          {
                            "errorCode": "813",
                            "errorDesc": "Transporter id is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "814",
                            "errorDesc": "Transporter name is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "815",
                            "errorDesc": "TransDocNo is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "816",
                            "errorDesc": "TransDocDate is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "817",
                            "errorDesc": "Vehicle No is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "818",
                            "errorDesc": "Vehicle Type is not required for ewaybill for gold"
                          },
                          {
                            "errorCode": "819",
                            "errorDesc": "Ewaybill cannot be generated for the document date which is prior to 01/07/2017"
                          }
                        ],
                        "status": "1"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "e34850e1-d3f2-4d90-93c9-0e7c207a0db3"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/tax-payer/hsn": {
      "get": {
        "summary": "Get HSN Details",
        "deprecated": false,
        "description": "",
        "operationId": "getHsnDetails",
        "tags": [
          "E-Way Bill1",
          "Common"
        ],
        "parameters": [
          {
            "name": "hsn_code",
            "in": "query",
            "description": "HSN/SAC code",
            "required": true,
            "schema": {
              "type": "string",
              "example": "997212"
            }
          },
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. For token-generation steps, refer to the [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session) recipe, then pass the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key for identification",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200 HSN details fetched / 216 Invalid HSN Code",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetEWayBillHsnDetailsResponse"
                },
                "examples": {
                  "200 HSN details fetched": {
                    "summary": "200 HSN details fetched",
                    "value": {
                      "code": 200,
                      "data": {
                        "data": {
                          "hsnCode": "1001",
                          "hsnDesc": "WHEAT AND MESLIN - Durum wheat :"
                        }
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "80a2b38f-7b5f-415e-afc1-8795d7049a68"
                    }
                  },
                  "216 Invalid HSN Code": {
                    "summary": "216 Invalid HSN Code",
                    "value": {
                      "code": 200,
                      "data": {
                        "error": {
                          "errorCodes": "216"
                        },
                        "info": "",
                        "status": "0"
                      },
                      "timestamp": 1763446641000,
                      "transaction_id": "c057da1e-b118-4d1f-956c-4852bc4f0e03"
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "security": []
      }
    },
    "/gst/compliance/e-way-bill/bill/close": {
      "post": {
        "summary": "Close E-Way Bill",
        "deprecated": false,
        "description": "Close an E-Way Bill.",
        "operationId": "closeEWayBill",
        "tags": [
          "E-Way Bill1",
          "Common"
        ],
        "externalDocs": {
          "description": "NIC documentation for E-Way Bill closure.",
          "url": "https://docs.ewaybillgst.gov.in/apidocs/version1.03/closure-eway-bill.html"
        },
        "parameters": [
          {
            "name": "authorization",
            "in": "header",
            "description": "E-Way Bill access token. To create a session, see [Generate E-Way Bill Session](/recipes/gst/authentication/generate_e_way_bill_session). Send the token in the authorization header.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-api-version",
            "in": "header",
            "description": "API version.",
            "required": false,
            "example": "",
            "schema": {
              "type": "string",
              "default": "1.0.0"
            }
          },
          {
            "name": "x-api-key",
            "in": "header",
            "description": "API key that identifies your account.",
            "required": true,
            "example": "",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "x-source",
            "in": "header",
            "description": "Source to use. Valid values are primary, secondary, and tertiary.",
            "required": false,
            "example": "primary",
            "schema": {
              "type": "string",
              "enum": [
                "primary",
                "secondary",
                "tertiary"
              ],
              "default": "primary"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CloseEWayBillRequest"
              },
              "examples": {
                "Close E-Way Bill": {
                  "summary": "Close an E-Way Bill",
                  "value": {
                    "ewbNo": 111000609282,
                    "closureDate": "21/05/2026",
                    "remarks": "Closed after delivery"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Closure result from NIC.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CloseEWayBillResponse"
                },
                "examples": {
                  "E-Way Bill closed": {
                    "summary": "E-Way Bill closed",
                    "value": {
                      "code": 200,
                      "timestamp": 1785216126833,
                      "transaction_id": "e23fdfa5-f2b3-4510-bd88-c06772803449",
                      "data": {
                        "status": "1",
                        "data": {
                          "ewayBillNo": 111000609282,
                          "ewbClosureDate": "21/05/2026 11:35:00 AM"
                        }
                      }
                    }
                  },
                  "NIC closure error": {
                    "summary": "NIC rejected the closure request",
                    "value": {
                      "code": 200,
                      "timestamp": 1785216126833,
                      "transaction_id": "e23fdfa5-f2b3-4510-bd88-c06772803449",
                      "data": {
                        "status": "0",
                        "error": {
                          "errorCodes": "827"
                        },
                        "info": ""
                      }
                    }
                  }
                }
              }
            }
          },
          "503": {
            "description": "NIC E-Way Bill service is not available.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code",
                    "timestamp",
                    "message",
                    "transaction_id"
                  ],
                  "properties": {
                    "code": {
                      "type": "integer",
                      "example": 503,
                      "description": "HTTP response code."
                    },
                    "timestamp": {
                      "type": "integer",
                      "format": "int64",
                      "description": "Unix timestamp."
                    },
                    "message": {
                      "type": "string",
                      "example": "Source unavailable",
                "description": "Message that explains why the service is not available."
                    },
                    "transaction_id": {
                      "type": "string",
                "description": "ID of this request."
                    }
                  }
                },
                "examples": {
                  "Source unavailable": {
              "summary": "NIC E-Way Bill service is not available",
                    "value": {
                      "code": 503,
                      "timestamp": 1785216267483,
                      "message": "Source unavailable",
                      "transaction_id": "554e71ff-c665-43e6-a09f-2de0ae7fc5c8"
                    }
                  }
                }
              }
            }
          }
        },
        "security": []
      }
    }
  },
  "components": {
    "schemas": {
      "EWayBillResponseMetadata": {
        "type": "object",
        "description": "Metadata returned with every E-Way Bill response.",
        "required": [
                "code",
                "timestamp",
                "transaction_id"
        ],
        "properties": {
                "code": {
                        "type": "integer",
                        "enum": [
                                200
                        ],
                        "description": "NIC response code."
                },
                "timestamp": {
                        "type": "integer",
                        "format": "int64",
                        "description": "Unix timestamp."
                },
                "transaction_id": {
                        "type": "string",
                        "description": "Request transaction identifier."
                }
        }
},
      "EWayBillBusinessError": {
        "type": "object",
        "description": "Error data from NIC.",
        "required": [
                "errorCodes"
        ],
        "properties": {
                "errorCodes": {
                        "type": "string",
                                                        "description": "NIC error code. See [E-Way Bill error codes](/api-reference/gst/annexures/e-way-bill-error-codes)."
                }
        }
},
      "EWayBillBusinessErrorResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "required": [
                                                "status",
                                                "error"
                                        ],
                                        "properties": {
                                                "status": {
                                                        "type": "string",
                                                        "enum": [
                                                                "0"
                                                        ],
                                                        "description": "NIC sends \"0\" when it rejects a request."
                                                },
                                                "error": {
                                                        "$ref": "#/components/schemas/EWayBillBusinessError"
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "EWayBillAuthenticateRequest": {
        "type": "object",
        "required": [
                "username",
                "password",
                "gstin"
        ],
        "properties": {
                "username": {
                        "type": "string",
                        "description": "API username of taxpayer as set on E-Way Bill portal"
                },
                "password": {
                        "type": "string",
                        "description": "API password of taxpayer as set on E-Way Bill portal"
                },
                "gstin": {
                        "type": "string",
                        "description": "GSTIN of the taxpayer"
                }
        },
        "description": "E-Way Bill schema."
},
      "EWayBillAuthenticateSuccessPayload": {
        "type": "object",
        "properties": {
                "Status": {
                        "type": "integer",
                        "example": 1,
                        "description": "NIC authentication success status.",
                        "enum": [
                                1
                        ]
                },
                "access_token": {
                        "type": "string",
                        "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ0YXhwYXllci1zZXNzaW9uIiwiZ3N0aW4iOiIyNEFCS0NTMjAzM0IxWlYiLCJpYXQiOjE3MTI5NDQxMDAsImV4cCI6MTcxMjk0NzcxMX0.sandbox-signature",
                        "description": "The access_token value."
                },
                "error": {
                        "type": "object",
                        "properties": {
                                "errorCodes": {
                                        "type": "string",
                                        "example": "108",
                                        "description": "The errorCodes value."
                                }
                        },
                        "description": "The error value."
                },
                "expiry": {
                        "type": "number",
                        "example": 1714157100000,
                        "description": "The expiry value."
                },
                "info": {
                        "type": "string",
                        "example": "",
                        "description": "The info value."
                },
                "status": {
                        "type": "string",
                        "example": "0",
                        "description": "The status value."
                }
        },
        "description": "E-Way Bill schema.",
        "required": [
                "Status"
        ]
},
      "EWayBillAuthenticateSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "$ref": "#/components/schemas/EWayBillAuthenticateSuccessPayload"
                                }
                        }
                }
        ]
},
      "EWayBillAuthenticateResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/EWayBillAuthenticateSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "ConsolidateEWayBillRequest": {
        "type": "object",
        "properties": {
                "fromPlace": {
                        "type": "string",
                        "example": "BANGALORE SOUTH",
                        "description": "The fromPlace value."
                },
                "fromState": {
                        "type": "number",
                        "example": 29,
                        "description": "The fromState value."
                },
                "transDocDate": {
                        "type": "string",
                        "example": "12/10/2017",
                        "description": "The transDocDate value."
                },
                "transDocNo": {
                        "type": "string",
                        "example": "1234",
                        "description": "The transDocNo value."
                },
                "transMode": {
                        "type": "string",
                        "example": "1",
                        "description": "The transMode value."
                },
                "tripSheetEwbBills": {
                        "type": "array",
                        "items": {
                                "type": "object",
                                "properties": {
                                        "ewbNo": {
                                                "type": "number",
                                                "example": 271010079977,
                                                "description": "The ewbNo value."
                                        }
                                },
                                "description": "E-Way Bill schema."
                        },
                        "example": [
                                {
                                        "ewbNo": 271010079977
                                }
                        ],
                        "description": "The tripSheetEwbBills value."
                },
                "vehicleNo": {
                        "type": "string",
                        "example": "KA12AB1234",
                        "description": "The vehicleNo value."
                }
        },
        "description": "E-Way Bill schema."
},
      "ConsolidateEWayBillSuccessPayload": {
        "type": "object",
        "properties": {
                "cEwbDate": {
                        "type": "string",
                        "example": "13/05/2024 02:43:00 PM",
                        "description": "The cEwbDate value."
                },
                "cEwbNo": {
                        "type": "string",
                        "example": "2210011690",
                        "description": "The cEwbNo value."
                }
        },
        "description": "E-Way Bill schema."
},
      "ConsolidateEWayBillSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/ConsolidateEWayBillSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "650,"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "ConsolidateEWayBillResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/ConsolidateEWayBillSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "GetConsolidatedEWayBillSuccessPayload": {
        "type": "object",
        "properties": {
                "enteredDate": {
                        "type": "string",
                        "example": "13/05/2024 02:43:00 PM",
                        "description": "The enteredDate value."
                },
                "fromPlace": {
                        "type": "string",
                        "example": "BANGALORE SOUTH",
                        "description": "The fromPlace value."
                },
                "fromState": {
                        "type": "string",
                        "example": "29",
                        "description": "The fromState value."
                },
                "status": {
                        "type": "string",
                        "example": "ACT",
                        "description": "The status value."
                },
                "transDocDate": {
                        "type": "string",
                        "example": "12/10/2017",
                        "description": "The transDocDate value."
                },
                "transDocNo": {
                        "type": "string",
                        "example": "1234",
                        "description": "The transDocNo value."
                },
                "transMode": {
                        "type": "string",
                        "example": "1  ",
                        "description": "The transMode value."
                },
                "tripSheetEwbBills": {
                        "type": "array",
                        "items": {
                                "type": "object",
                                "properties": {
                                        "docDate": {
                                                "type": "string",
                                                "example": "15/12/2017",
                                                "description": "The docDate value."
                                        },
                                        "docNo": {
                                                "type": "string",
                                                "example": "7001-2422",
                                                "description": "The docNo value."
                                        },
                                        "ewbDate": {
                                                "type": "string",
                                                "example": "13/05/2024 12:55:00 PM",
                                                "description": "The ewbDate value."
                                        },
                                        "ewbNo": {
                                                "type": "number",
                                                "example": 271010079654,
                                                "description": "The ewbNo value."
                                        },
                                        "fromGstin": {
                                                "type": "string",
                                                "example": "27AAACQ3770E004",
                                                "description": "The fromGstin value."
                                        },
                                        "fromTradeName": {
                                                "type": "string",
                                                "example": "welton",
                                                "description": "The fromTradeName value."
                                        },
                                        "status": {
                                                "type": "string",
                                                "example": "ACT",
                                                "description": "The status value."
                                        },
                                        "toGstin": {
                                                "type": "string",
                                                "example": "24AAACQ3770E003",
                                                "description": "The toGstin value."
                                        },
                                        "toTradeName": {
                                                "type": "string",
                                                "example": "sthuthya",
                                                "description": "The toTradeName value."
                                        },
                                        "totInvValue": {
                                                "type": "number",
                                                "example": 59465,
                                                "description": "The totInvValue value."
                                        },
                                        "userGstin": {
                                                "type": "string",
                                                "example": "27AAACQ3770E004",
                                                "description": "The userGstin value."
                                        },
                                        "validUpto": {
                                                "type": "string",
                                                "example": "18/05/2024 11:59:00 PM",
                                                "description": "The validUpto value."
                                        }
                                },
                                "description": "E-Way Bill schema."
                        },
                        "example": [
                                {
                                        "docDate": "15/12/2017",
                                        "docNo": "7001-2422",
                                        "ewbDate": "13/05/2024 12:55:00 PM",
                                        "ewbNo": 271010079654,
                                        "fromGstin": "27AAACQ3770E004",
                                        "fromTradeName": "welton",
                                        "status": "ACT",
                                        "toGstin": "24AAACQ3770E003",
                                        "toTradeName": "sthuthya",
                                        "totInvValue": 59465,
                                        "userGstin": "27AAACQ3770E004",
                                        "validUpto": "18/05/2024 11:59:00 PM"
                                },
                                {
                                        "docDate": "15/12/2017",
                                        "docNo": "7001-2423",
                                        "ewbDate": "13/05/2024 12:55:00 PM",
                                        "ewbNo": 241010079655,
                                        "fromGstin": "27AAACQ3770E004",
                                        "fromTradeName": "welton",
                                        "status": "ACT",
                                        "toGstin": "24AAACQ3770E003",
                                        "toTradeName": "sthuthya",
                                        "totInvValue": 59465,
                                        "userGstin": "27AAACQ3770E004",
                                        "validUpto": "18/05/2024 11:59:00 PM"
                                }
                        ],
                        "description": "The tripSheetEwbBills value."
                },
                "tripSheetNo": {
                        "type": "number",
                        "example": 2210011690,
                        "description": "The tripSheetNo value."
                },
                "userGstin": {
                        "type": "string",
                        "example": "27AAACQ3770E004",
                        "description": "The userGstin value."
                },
                "vehicleNo": {
                        "type": "string",
                        "example": "KA12AB1234",
                        "description": "The vehicleNo value."
                }
        },
        "description": "E-Way Bill schema."
},
      "GetConsolidatedEWayBillSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/GetConsolidatedEWayBillSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "325"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GetConsolidatedEWayBillResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/GetConsolidatedEWayBillSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "RegenerateConsolidatedEWayBillRequest": {
        "type": "object",
        "properties": {
                "fromPlace": {
                        "type": "string",
                        "example": "Bengaluru",
                        "description": "The fromPlace value."
                },
                "fromState": {
                        "type": "number",
                        "example": 29,
                        "description": "The fromState value."
                },
                "reasonCode": {
                        "type": "string",
                        "example": "1",
                        "description": "The reasonCode value."
                },
                "reasonRem": {
                        "type": "string",
                        "example": "Flood",
                        "description": "The reasonRem value."
                },
                "transDocDate": {
                        "type": "string",
                        "example": "26/04/2018",
                        "description": "The transDocDate value."
                },
                "transDocNo": {
                        "type": "string",
                        "example": "1234",
                        "description": "The transDocNo value."
                },
                "transMode": {
                        "type": "string",
                        "example": "1",
                        "description": "The transMode value."
                },
                "tripSheetNo": {
                        "type": "number",
                        "example": 2210011700,
                        "description": "The tripSheetNo value."
                },
                "vehicleNo": {
                        "type": "string",
                        "example": "PQR1234",
                        "description": "The vehicleNo value."
                }
        },
        "description": "E-Way Bill schema."
},
      "RegenerateConsolidatedEWayBillSuccessPayload": {
        "type": "object",
        "properties": {
                "tripSheetEwayBills": {
                        "type": "array",
                        "items": {
                                "type": "object",
                                "properties": {
                                        "ewbNo": {
                                                "type": "number",
                                                "example": 271010079654,
                                                "description": "The ewbNo value."
                                        }
                                },
                                "description": "E-Way Bill schema."
                        },
                        "example": [
                                {
                                        "ewbNo": 271010079654
                                },
                                {
                                        "ewbNo": 241010079655
                                }
                        ],
                        "description": "The tripSheetEwayBills value."
                },
                "tripSheetNo": {
                        "type": "number",
                        "example": 2110011709,
                        "description": "The tripSheetNo value."
                }
        },
        "description": "E-Way Bill schema."
},
      "RegenerateConsolidatedEWayBillSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/RegenerateConsolidatedEWayBillSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "392"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "RegenerateConsolidatedEWayBillResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/RegenerateConsolidatedEWayBillSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "InitiateMultiVehicleMovementRequest": {
        "type": "object",
        "properties": {
                "ewbNo": {
                        "type": "number",
                        "example": 291010080003,
                        "description": "The ewbNo value."
                },
                "fromPlace": {
                        "type": "string",
                        "example": "BANGALORE",
                        "description": "The fromPlace value."
                },
                "fromState": {
                        "type": "number",
                        "example": 29,
                        "description": "The fromState value."
                },
                "reasonCode": {
                        "type": "string",
                        "example": "1",
                        "description": "The reasonCode value."
                },
                "reasonRem": {
                        "type": "string",
                        "example": "vehicle broke down",
                        "description": "The reasonRem value."
                },
                "toPlace": {
                        "type": "string",
                        "example": "Beml Nagar",
                        "description": "The toPlace value."
                },
                "toState": {
                        "type": "number",
                        "example": 24,
                        "description": "The toState value."
                },
                "totalQuantity": {
                        "type": "number",
                        "example": 33,
                        "description": "The totalQuantity value."
                },
                "transMode": {
                        "type": "string",
                        "example": "1",
                        "description": "The transMode value."
                },
                "unitCode": {
                        "type": "string",
                        "example": "NOS",
                        "description": "The unitCode value."
                }
        },
        "description": "E-Way Bill schema."
},
      "InitiateMultiVehicleMovementSuccessPayload": {
        "type": "object",
        "properties": {
                "createdDate": {
                        "type": "string",
                        "example": "13/05/2024 04:12:00 PM",
                        "description": "The createdDate value."
                },
                "ewbNo": {
                        "type": "string",
                        "example": "211010079995",
                        "description": "The ewbNo value."
                },
                "groupNo": {
                        "type": "string",
                        "example": "1",
                        "description": "The groupNo value."
                }
        },
        "description": "E-Way Bill schema."
},
      "InitiateMultiVehicleMovementSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/InitiateMultiVehicleMovementSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "645,"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "InitiateMultiVehicleMovementResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/InitiateMultiVehicleMovementSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "UpdateMultiVehicleRequest": {
        "type": "object",
        "properties": {
                "ewbNo": {
                        "type": "number",
                        "description": "Ewaybill Number"
                },
                "groupNo": {
                        "type": "number",
                        "description": "Group Number"
                },
                "oldvehicleNo": {
                        "type": "string",
                        "minLength": 7,
                        "maxLength": 15,
                        "description": "Old Vehicle Number"
                },
                "newVehicleNo": {
                        "type": "string",
                        "minLength": 7,
                        "maxLength": 15,
                        "description": "New Vehicle Number"
                },
                "oldTranNo": {
                        "type": "string",
                        "maxLength": 15,
                        "description": "Old Tran Number"
                },
                "newTranNo": {
                        "type": "string",
                        "maxLength": 15,
                        "description": "New Tran Number"
                },
                "fromPlace": {
                        "type": "string",
                        "maxLength": 50,
                        "description": "From Place"
                },
                "fromState": {
                        "type": "integer",
                        "maximum": 99,
                        "description": "From State"
                },
                "reasonCode": {
                        "type": "string",
                        "maxLength": 1,
                        "minLength": 1,
                        "description": "Reason Code"
                },
                "reasonRem": {
                        "type": "string",
                        "maxLength": 50,
                        "description": "Remarks"
                }
        },
        "required": [
                "ewbNo",
                "groupNo",
                "oldvehicleNo",
                "newVehicleNo",
                "oldTranNo",
                "newTranNo",
                "fromPlace",
                "fromState",
                "reasonCode",
                "reasonRem"
        ],
        "description": "Request body for UpdateMultiVehicle."
},
      "UpdateMultiVehicleSuccessPayload": {
        "type": "object",
        "properties": {
                "ewbNo": {
                        "type": "string",
                        "example": "291010080003",
                        "description": "The ewbNo value."
                },
                "groupNo": {
                        "type": "string",
                        "example": "1",
                        "description": "The groupNo value."
                },
                "vehUpdDate": {
                        "type": "string",
                        "example": "13/05/2024 04:37:00 PM",
                        "description": "The vehUpdDate value."
                }
        },
        "description": "E-Way Bill schema."
},
      "UpdateMultiVehicleSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/UpdateMultiVehicleSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "301"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "UpdateMultiVehicleResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/UpdateMultiVehicleSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "AddMultiVehicleRequest": {
        "type": "object",
        "properties": {
                "ewbNo": {
                        "type": "number",
                        "example": 291010080003,
                        "description": "The ewbNo value."
                },
                "groupNo": {
                        "type": "string",
                        "example": "1",
                        "description": "The groupNo value."
                },
                "quantity": {
                        "type": "number",
                        "example": 15,
                        "description": "The quantity value."
                },
                "transDocDate": {
                        "type": "string",
                        "example": "12/10/2017",
                        "description": "The transDocDate value."
                },
                "transDocNo": {
                        "type": "string",
                        "example": "1234",
                        "description": "The transDocNo value."
                },
                "vehicleNo": {
                        "type": "string",
                        "example": "PQR1234",
                        "description": "The vehicleNo value."
                }
        },
        "description": "E-Way Bill schema."
},
      "AddMultiVehicleSuccessPayload": {
        "type": "object",
        "properties": {
                "ewbNo": {
                        "type": "string",
                        "example": "291010080003",
                        "description": "The ewbNo value."
                },
                "groupNo": {
                        "type": "string",
                        "example": "1",
                        "description": "The groupNo value."
                },
                "vehAddedDate": {
                        "type": "string",
                        "example": "13/05/2024 04:19:00 PM",
                        "description": "The vehAddedDate value."
                }
        },
        "description": "E-Way Bill schema."
},
      "AddMultiVehicleSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/AddMultiVehicleSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "301"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "AddMultiVehicleResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/AddMultiVehicleSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "GetEWayBillByDocumentDataSuccessPayload": {
        "type": "object",
        "properties": {
                "alert": {
                        "type": "string",
                        "nullable": true,
                        "example": null,
                        "description": "The alert value."
                },
                "ewayBillDate": {
                        "type": "string",
                        "example": "13/05/2024 12:50:00 PM",
                        "description": "The ewayBillDate value."
                },
                "ewayBillNo": {
                        "type": "number",
                        "example": 231010079649,
                        "description": "The ewayBillNo value."
                },
                "validUpto": {
                        "type": "string",
                        "example": "18/05/2024 23:59:59 ",
                        "description": "The validUpto value."
                }
        },
        "description": "E-Way Bill schema."
},
      "GetEWayBillByDocumentDataSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/GetEWayBillByDocumentDataSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "418"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GetEWayBillByDocumentDataResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/GetEWayBillByDocumentDataSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "GenerateEWayBillRequest": {
        "type": "object",
        "properties": {
                "supplyType": {
                        "type": "string",
                        "maxLength": 1,
                        "minLength": 1,
                        "enum": [
                                "O",
                                "I"
                        ],
                        "description": "Supply Type"
                },
                "subSupplyType": {
                        "type": "string",
                        "description": "Sub Supply Type"
                },
                "subSupplyDesc": {
                        "type": "string",
                        "maxLength": 20,
                        "description": "Other Sub Supply Description"
                },
                "docType": {
                        "type": "string",
                        "enum": [
                                "INV",
                                "CHL",
                                "BIL",
                                "BOE",
                                "OTH"
                        ],
                        "description": "Document Type"
                },
                "docNo": {
                        "type": "string",
                        "maxLength": 16,
                        "description": "Document Number (Alphanumeric with / and - are allowed)"
                },
                "docDate": {
                        "type": "string",
                        "pattern": "[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]",
                        "description": "Document Date"
                },
                "fromGstin": {
                        "type": "string",
                        "maxLength": 15,
                        "pattern": "^[0-9]{2}[0-9A-Z]{13}$|^URP$|^urp$",
                        "description": "From GSTIN (Supplier or Consignor)"
                },
                "fromTrdName": {
                        "type": "string",
                        "maxLength": 100,
                        "description": "From Trade Name (Consignor Trade name)"
                },
                "fromAddr1": {
                        "type": "string",
                        "maxLength": 120,
                        "description": "From Address Line 1 (Valid Special Chars #,-,/)"
                },
                "fromAddr2": {
                        "type": "string",
                        "maxLength": 120,
                        "description": "From Address Line 2(Valid Special Chars # , - ,/)"
                },
                "fromPlace": {
                        "type": "string",
                        "maxLength": 50,
                        "description": "From Place"
                },
                "actFromStateCode": {
                        "type": "integer",
                        "maximum": 99,
                        "description": "Actual From State Code"
                },
                "fromPincode": {
                        "type": "integer",
                        "maximum": 999999,
                        "minimum": 100000,
                        "description": "From Pincode"
                },
                "fromStateCode": {
                        "type": "integer",
                        "maximum": 99,
                        "description": "From State Code"
                },
                "toGstin": {
                        "type": "string",
                        "maxLength": 15,
                        "pattern": "^[0-9]{2}[0-9A-Z]{13}$|^URP$|^urp$",
                        "description": "To GSTIN (Consignee or Recipient)"
                },
                "toTrdName": {
                        "type": "string",
                        "maxLength": 100,
                        "description": "To Trade Name (Consignee Trade name or Recipient Trade name)"
                },
                "toAddr1": {
                        "type": "string",
                        "maxLength": 120,
                        "description": "To Address Line 1 (Valid Special Chars #,-,/)"
                },
                "toAddr2": {
                        "type": "string",
                        "maxLength": 120,
                        "description": "To Address Line 2 (Valid Special Chars #,-,/)"
                },
                "toPlace": {
                        "type": "string",
                        "maxLength": 50,
                        "description": "To Place"
                },
                "toPincode": {
                        "type": "integer",
                        "description": "To Pincode"
                },
                "actToStateCode": {
                        "type": "integer",
                        "maximum": 99,
                        "description": "Actual To State Code"
                },
                "toStateCode": {
                        "type": "integer",
                        "maximum": 99,
                        "description": "To State Code"
                },
                "transactionType": {
                        "type": "integer",
                        "maximum": 4,
                        "description": "Transaction type"
                },
                "totalValue": {
                        "type": "number",
                        "multipleOf": 0.01,
                        "description": "Sum of Taxable value "
                },
                "cgstValue": {
                        "type": "number",
                        "multipleOf": 0.01,
                        "description": "CGST value"
                },
                "sgstValue": {
                        "type": "number",
                        "multipleOf": 0.01,
                        "description": "SGST value"
                },
                "igstValue": {
                        "type": "number",
                        "multipleOf": 0.01,
                        "description": "IGST value"
                },
                "cessValue": {
                        "type": "number",
                        "multipleOf": 0.01,
                        "description": "Cess value"
                },
                "cessNonAdvolValue": {
                        "type": "number",
                        "multipleOf": 0.01,
                        "description": "Cess Non Advol value"
                },
                "otherValue": {
                        "type": "number",
                        "multipleOf": 0.01,
                        "description": "Other charges, if any "
                },
                "totInvValue": {
                        "type": "number",
                        "multipleOf": 0.01,
                        "description": "Total Invoice Value (Including taxable value, tax value,and other charges if any)"
                },
                "transMode": {
                        "type": "string",
                        "enum": [
                                "1",
                                "2",
                                "3",
                                "4"
                        ],
                        "description": "Mode of transport (Road-1, Rail-2, Air-3, Ship-4) "
                },
                "transDistance": {
                        "type": "string",
                        "description": "Distance (<4000 km) "
                },
                "transporterName": {
                        "type": "string",
                        "maxLength": 100,
                        "description": "Name of the transporter"
                },
                "transporterId": {
                        "type": "string",
                        "pattern": "[0-9]{2}[0-9|A-Z]{13}",
                        "description": "15 Digit Transporter GSTIN/TRANSIN"
                },
                "transDocNo": {
                        "type": "string",
                        "maxLength": 15,
                        "description": "Transport Document Number (Alphanumeric with / and \u00e2\u20ac\u201c are allowed)"
                },
                "transDocDate": {
                        "type": "string",
                        "description": "Transport Document Date"
                },
                "vehicleNo": {
                        "type": "string",
                        "minLength": 7,
                        "maxLength": 15,
                        "description": "Vehicle Number"
                },
                "vehicleType": {
                        "type": "string",
                        "description": "Vehicle Type"
                },
                "itemList": {
                        "type": "array",
                        "items": {
                                "type": "object",
                                "properties": {
                                        "productName": {
                                                "type": "string",
                                                "maxLength": 100,
                                                "description": "Product / Item Name"
                                        },
                                        "productDesc": {
                                                "type": "string",
                                                "maxLength": 100,
                                                "description": "Product / Item description"
                                        },
                                        "hsnCode": {
                                                "type": "number",
                                                "description": "HSN Code"
                                        },
                                        "quantity": {
                                                "type": "number",
                                                "description": "Quantity"
                                        },
                                        "qtyUnit": {
                                                "type": "string",
                                                "maxLength": 3,
                                                "minLength": 3,
                                                "description": "Unit"
                                        },
                                        "taxableAmount": {
                                                "type": "number",
                                                "multipleOf": 0.01,
                                                "description": "Taxable Amount"
                                        },
                                        "sgstRate": {
                                                "type": "number",
                                                "multipleOf": 0.001,
                                                "description": "SGST Rate of Tax"
                                        },
                                        "cgstRate": {
                                                "type": "number",
                                                "multipleOf": 0.001,
                                                "description": "CGST Rate of Tax"
                                        },
                                        "igstRate": {
                                                "type": "number",
                                                "multipleOf": 0.001,
                                                "description": "IGST Rate of Tax"
                                        },
                                        "cessRate": {
                                                "type": "number",
                                                "multipleOf": 0.001,
                                                "description": "Cess Rate of Tax"
                                        },
                                        "cessNonadvol": {
                                                "type": "number",
                                                "description": "Cess Non-Advolerum"
                                        }
                                },
                                "required": [
                                        "hsnCode",
                                        "taxableAmount"
                                ]
                        },
                        "description": "The itemList value."
                }
        },
        "required": [
                "supplyType",
                "subSupplyType",
                "docType",
                "docNo",
                "docDate",
                "fromGstin",
                "fromPincode",
                "fromStateCode",
                "toGstin",
                "toPincode",
                "toStateCode",
                "transDistance",
                "itemList",
                "actToStateCode",
                "actFromStateCode",
                "totInvValue",
                "transactionType"
        ],
        "description": "E-Way Bill schema."
},
      "GenerateEWayBillSuccessPayload": {
        "type": "object",
        "properties": {
                "alert": {
                        "type": "string",
                        "example": "Total invoice value is more than the sum of total assessible value and tax values, ",
                        "description": "The alert value."
                },
                "ewayBillDate": {
                        "type": "string",
                        "example": "01/05/2024 07:00:00 PM",
                        "description": "The ewayBillDate value."
                },
                "ewayBillNo": {
                        "type": "number",
                        "example": 291010077005,
                        "description": "The ewayBillNo value."
                },
                "validUpto": {
                        "type": "string",
                        "example": "06/05/2024 11:59:00 PM",
                        "description": "The validUpto value."
                }
        },
        "description": "E-Way Bill schema."
},
      "GenerateEWayBillSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/GenerateEWayBillSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "212,"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "0",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GenerateEWayBillResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/GenerateEWayBillSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "GetEWayBillsByDateSuccessPayload": {
        "type": "array",
        "items": {
                "type": "object",
                "properties": {
                        "delPinCode": {
                                "type": "number",
                                "example": 470090,
                                "description": "The delPinCode value."
                        },
                        "delPlace": {
                                "type": "string",
                                "example": "Beml Nagar",
                                "description": "The delPlace value."
                        },
                        "delStateCode": {
                                "type": "number",
                                "example": 27,
                                "description": "The delStateCode value."
                        },
                        "docDate": {
                                "type": "string",
                                "example": "15/12/2017",
                                "description": "The docDate value."
                        },
                        "docNo": {
                                "type": "string",
                                "example": "7001-11",
                                "description": "The docNo value."
                        },
                        "ewbDate": {
                                "type": "string",
                                "example": "01/05/2024 07:04:00 PM",
                                "description": "The ewbDate value."
                        },
                        "ewbNo": {
                                "type": "number",
                                "example": 201010077008,
                                "description": "The ewbNo value."
                        },
                        "extendedTimes": {
                                "type": "number",
                                "example": 0,
                                "description": "The extendedTimes value."
                        },
                        "genGstin": {
                                "type": "string",
                                "example": "29AAACQ3770E000",
                                "description": "The genGstin value."
                        },
                        "rejectStatus": {
                                "type": "string",
                                "example": "N",
                                "description": "The rejectStatus value."
                        },
                        "status": {
                                "type": "string",
                                "example": "ACT",
                                "description": "The status value."
                        },
                        "validUpto": {
                                "type": "string",
                                "example": "06/05/2024 11:59:00 PM",
                                "description": "The validUpto value."
                        },
                        "rejectedDate": {
                                "type": "string",
                                "description": "Date on which the recipient rejected the E-Way Bill."
                        }
                },
                "description": "E-Way Bill schema."
        },
        "example": [
                {
                        "delPinCode": 470090,
                        "delPlace": "Beml Nagar",
                        "delStateCode": 27,
                        "docDate": "15/12/2017",
                        "docNo": "7001-11",
                        "ewbDate": "01/05/2024 07:04:00 PM",
                        "ewbNo": 201010077008,
                        "extendedTimes": 0,
                        "genGstin": "29AAACQ3770E000",
                        "rejectStatus": "N",
                        "status": "ACT",
                        "validUpto": "06/05/2024 11:59:00 PM"
                },
                {
                        "delPinCode": 560090,
                        "delPlace": "Beml Nagar",
                        "delStateCode": 29,
                        "docDate": "15/12/2017",
                        "docNo": "7001-10",
                        "ewbDate": "01/05/2024 07:03:00 PM",
                        "ewbNo": 231010077007,
                        "extendedTimes": 0,
                        "genGstin": "29AAACQ3770E000",
                        "rejectStatus": "N",
                        "status": "ACT",
                        "validUpto": "06/05/2024 11:59:00 PM"
                },
                {
                        "delPinCode": 560090,
                        "delPlace": "Beml Nagar",
                        "delStateCode": 29,
                        "docDate": "15/12/2017",
                        "docNo": "7001-9",
                        "ewbDate": "01/05/2024 07:01:00 PM",
                        "ewbNo": 261010077006,
                        "extendedTimes": 0,
                        "genGstin": "29AAACQ3770E000",
                        "rejectStatus": "N",
                        "status": "ACT",
                        "validUpto": "06/05/2024 11:59:00 PM"
                },
                {
                        "delPinCode": 470090,
                        "delPlace": "Beml Nagar",
                        "delStateCode": 27,
                        "docDate": "15/12/2017",
                        "docNo": "7001-8",
                        "ewbDate": "01/05/2024 07:00:00 PM",
                        "ewbNo": 291010077005,
                        "extendedTimes": 0,
                        "genGstin": "29AAACQ3770E000",
                        "rejectStatus": "N",
                        "status": "ACT",
                        "validUpto": "06/05/2024 11:59:00 PM"
                }
        ]
},
      "GetEWayBillsByDateSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/GetEWayBillsByDateSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "418"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GetEWayBillsByDateResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/GetEWayBillsByDateSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "CancelEWayBillRequest": {
        "type": "object",
        "required": [
                "ewbNo",
                "cancelRsnCode"
        ],
        "properties": {
                "ewbNo": {
                        "type": "number",
                        "description": "E-Way Bill number",
                        "format": "double"
                },
                "cancelRsnCode": {
                        "type": "integer",
                        "description": "Reason for cancellation. Possible values: 1 (Duplicate), 2 (Order Cancelled), 3 (Data Entry mistake), 4 (Others)",
                        "format": "int32"
                },
                "cancelRmrk": {
                        "type": "string",
                        "description": "Remarks"
                }
        },
        "description": "E-Way Bill schema."
},
      "CancelEWayBillSuccessPayload": {
        "type": "object",
        "properties": {
                "cancelDate": {
                        "type": "string",
                        "example": "01/05/2024 07:56:00 PM",
                        "description": "The cancelDate value."
                },
                "ewayBillNo": {
                        "type": "string",
                        "example": "291010077005",
                        "description": "The ewayBillNo value."
                }
        },
        "description": "E-Way Bill schema."
},
      "CancelEWayBillSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/CancelEWayBillSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "312,"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "CancelEWayBillResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/CancelEWayBillSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "CloseEWayBillRequest": {
        "type": "object",
        "description": "Data to close an E-Way Bill.",
        "required": [
          "ewbNo",
          "closureDate",
          "remarks"
        ],
        "properties": {
          "ewbNo": {
            "type": "integer",
            "format": "int64",
            "example": 111000609282,
            "description": "12-digit E-Way Bill number."
          },
          "closureDate": {
            "type": "string",
            "pattern": "^(0[1-9]|[12][0-9]|3[01])/(0[1-9]|1[0-2])/[0-9]{4}$",
            "example": "21/05/2026",
            "description": "Closure date. Use DD/MM/YYYY."
          },
          "remarks": {
            "type": "string",
            "minLength": 1,
            "maxLength": 100,
            "example": "Closed after delivery",
            "description": "Reason to close the E-Way Bill."
          }
        }
      },
      "CloseEWayBillSuccessPayload": {
        "type": "object",
        "description": "Data for the closed E-Way Bill.",
        "required": [
          "ewayBillNo",
          "ewbClosureDate"
        ],
        "properties": {
          "ewayBillNo": {
            "type": "integer",
            "format": "int64",
            "example": 111000609282,
            "description": "Closed E-Way Bill number."
          },
          "ewbClosureDate": {
            "type": "string",
            "example": "21/05/2026 11:35:00 AM",
            "description": "Date and time when NIC closed the E-Way Bill."
          }
        }
      },
      "CloseEWayBillSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EWayBillResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "required": [
                  "status",
                  "data"
                ],
                "properties": {
                  "status": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "example": "1",
                    "description": "NIC sends \"1\" when it closes the E-Way Bill."
                  },
                  "data": {
                    "$ref": "#/components/schemas/CloseEWayBillSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "CloseEWayBillResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/CloseEWayBillSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
          }
        ],
        "description": "NIC response for an E-Way Bill closure request. Both response types use HTTP 200."
      },
      "UpdateEWayBillVehicleRequest": {
        "type": "object",
        "properties": {
                "ewbNo": {
                        "type": "number",
                        "description": "Ewaybill Number"
                },
                "vehicleNo": {
                        "type": "string",
                        "minLength": 7,
                        "maxLength": 15,
                        "description": "Vehicle Number"
                },
                "vehicleType": {
                        "type": "string",
                        "description": "Vehicle Type"
                },
                "fromPlace": {
                        "type": "string",
                        "maxLength": 50,
                        "description": "From Place"
                },
                "fromState": {
                        "type": "integer",
                        "maximum": 99,
                        "description": "From State"
                },
                "reasonCode": {
                        "type": "string",
                        "maxLength": 1,
                        "minLength": 1,
                        "description": "Reason Code"
                },
                "reasonRem": {
                        "type": "string",
                        "maxLength": 50,
                        "description": "Remarks"
                },
                "transDocNo": {
                        "type": "string",
                        "maxLength": 15,
                        "description": "Transport Document Number"
                },
                "transDocDate": {
                        "type": "string",
                        "pattern": "[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]",
                        "description": "Transport Document Date"
                },
                "transMode": {
                        "type": "string",
                        "description": "Transport Mode"
                }
        },
        "required": [
                "fromPlace",
                "fromState",
                "reasonCode",
                "reasonRem",
                "transMode"
        ],
        "description": "Request body for UpdateEWayBillVehicle."
},
      "UpdateEWayBillVehicleSuccessPayload": {
        "type": "object",
        "properties": {
                "validUpto": {
                        "type": "string",
                        "example": "18/05/2024 11:59:00 PM",
                        "description": "The validUpto value."
                },
                "vehUpdDate": {
                        "type": "string",
                        "example": "13/05/2024 01:06:00 PM",
                        "description": "The vehUpdDate value."
                }
        },
        "description": "E-Way Bill schema."
},
      "UpdateEWayBillVehicleSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/UpdateEWayBillVehicleSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "726,"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "UpdateEWayBillVehicleResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/UpdateEWayBillVehicleSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "ExtendEWayBillValidityRequest": {
        "type": "object",
        "properties": {
                "ewbNo": {
                        "type": "number",
                        "description": "Ewaybill Number"
                },
                "vehicleNo": {
                        "type": "string",
                        "minLength": 7,
                        "maxLength": 15,
                        "description": "Vehicle Number"
                },
                "fromPlace": {
                        "type": "string",
                        "maxLength": 50,
                        "description": "From Place"
                },
                "fromState": {
                        "type": "integer",
                        "maximum": 99,
                        "description": "From State"
                },
                "remainingDistance": {
                        "type": "number",
                        "description": "Remaining Distance"
                },
                "transDocNo": {
                        "type": "string",
                        "maxLength": 15,
                        "description": "Transport Document Number"
                },
                "transDocDate": {
                        "type": "string",
                        "pattern": "[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]",
                        "description": "Transport Document Date"
                },
                "transMode": {
                        "type": "string",
                        "description": "Transport Mode"
                },
                "extnRsnCode": {
                        "type": "number",
                        "description": "Extension Reason Code"
                },
                "extnRemarks": {
                        "type": "string",
                        "description": "Extension Remarks"
                },
                "fromPincode": {
                        "type": "number",
                        "description": "From Pincode"
                },
                "consignmentStatus": {
                        "type": "string",
                        "description": "consignmentStatus(T)"
                },
                "transitType": {
                        "type": "string",
                        "description": "transit Type"
                },
                "addressLine1": {
                        "type": "string",
                        "description": "addressLine1"
                },
                "addressLine2": {
                        "type": "string",
                        "description": "addressLine2"
                },
                "addressLine3": {
                        "type": "string",
                        "description": "addressLine3"
                }
        },
        "required": [
                "fromPlace",
                "fromState",
                "fromPincode",
                "remainingDistance",
                "transMode",
                "ewbNo",
                "extnRsnCode",
                "extnRemarks"
        ],
        "description": "E-Way Bill schema."
},
      "ExtendEWayBillValiditySuccessPayload": {
        "type": "object",
        "properties": {
                "ewayBillNo": {
                        "type": "string",
                        "example": "291210077217",
                        "description": "The ewayBillNo value."
                },
                "updatedDate": {
                        "type": "string",
                        "example": "26/04/2024 05:07:00 PM",
                        "description": "The updatedDate value."
                },
                "validUpto": {
                        "type": "string",
                        "example": "21/05/2024 23:59:00 PM",
                        "description": "The validUpto value."
                }
        },
        "description": "E-Way Bill schema."
},
      "ExtendEWayBillValiditySuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/ExtendEWayBillValiditySuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "382"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "ExtendEWayBillValidityResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/ExtendEWayBillValiditySuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "UpdateEWayBillTransporterRequest": {
        "type": "object",
        "properties": {
                "ewbNo": {
                        "type": "number",
                        "description": "EwayBill Number"
                },
                "transporterId": {
                        "type": "string",
                        "pattern": "[0-9]{2}[0-9|A-Z]{13}",
                        "description": "15 Digit Transporter GSTIN/TRANSIN"
                }
        },
        "required": [
                "ewbNo",
                "transporterId"
        ],
        "description": "E-Way Bill schema."
},
      "UpdateEWayBillTransporterSuccessPayload": {
        "type": "object",
        "properties": {
                "ewayBillNo": {
                        "type": "string",
                        "example": "231010079649",
                        "description": "The ewayBillNo value."
                },
                "transUpdateDate": {
                        "type": "string",
                        "example": "13/05/2024 01:10:00 PM",
                        "description": "The transUpdateDate value."
                },
                "transporterId": {
                        "type": "string",
                        "example": "29AAACW6874H1ZS",
                        "description": "The transporterId value."
                }
        },
        "description": "E-Way Bill schema."
},
      "UpdateEWayBillTransporterSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/UpdateEWayBillTransporterSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "222,"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "UpdateEWayBillTransporterResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/UpdateEWayBillTransporterSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "GetOtherPartyEWayBillsByDateSuccessPayload": {
        "type": "array",
        "items": {
                "type": "object",
                "properties": {
                        "docDate": {
                                "type": "string",
                                "example": "01/05/2024",
                                "description": "The docDate value."
                        },
                        "docNo": {
                                "type": "string",
                                "example": "7001-20",
                                "description": "The docNo value."
                        },
                        "ewayBillDate": {
                                "type": "string",
                                "example": "03/05/2024 01:11:00 PM",
                                "description": "The ewayBillDate value."
                        },
                        "ewbNo": {
                                "type": "number",
                                "example": 261010077217,
                                "description": "The ewbNo value."
                        },
                        "fromGstin": {
                                "type": "string",
                                "example": "27AAACQ3770E004",
                                "description": "The fromGstin value."
                        },
                        "fromTradeName": {
                                "type": "string",
                                "example": "welton",
                                "description": "The fromTradeName value."
                        },
                        "genGstin": {
                                "type": "string",
                                "example": "27AAACQ3770E004",
                                "description": "The genGstin value."
                        },
                        "genMode": {
                                "type": "string",
                                "example": "API",
                                "description": "The genMode value."
                        },
                        "hsnCode": {
                                "type": "number",
                                "example": 1001,
                                "description": "The hsnCode value."
                        },
                        "hsnDesc": {
                                "type": "string",
                                "example": "Wheat",
                                "description": "The hsnDesc value."
                        },
                        "rejectStatus": {
                                "type": "string",
                                "example": "N",
                                "description": "The rejectStatus value."
                        },
                        "status": {
                                "type": "string",
                                "example": "ACT",
                                "description": "The status value."
                        },
                        "toGstin": {
                                "type": "string",
                                "example": "24AAACQ3770E003",
                                "description": "The toGstin value."
                        },
                        "toTradeName": {
                                "type": "string",
                                "example": "sthuthya",
                                "description": "The toTradeName value."
                        },
                        "totInvValue": {
                                "type": "number",
                                "example": 59464.94,
                                "description": "The totInvValue value."
                        }
                },
                "description": "E-Way Bill schema."
        },
        "example": [
                {
                        "docDate": "01/05/2024",
                        "docNo": "7001-20",
                        "ewayBillDate": "03/05/2024 01:11:00 PM",
                        "ewbNo": 261010077217,
                        "fromGstin": "27AAACQ3770E004",
                        "fromTradeName": "welton",
                        "genGstin": "27AAACQ3770E004",
                        "genMode": "API",
                        "hsnCode": 1001,
                        "hsnDesc": "Wheat",
                        "rejectStatus": "N",
                        "status": "ACT",
                        "toGstin": "24AAACQ3770E003",
                        "toTradeName": "sthuthya",
                        "totInvValue": 59464.94
                }
        ]
},
      "GetOtherPartyEWayBillsByDateSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/GetOtherPartyEWayBillsByDateSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "325"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GetOtherPartyEWayBillsByDateResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/GetOtherPartyEWayBillsByDateSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "RejectEWayBillRequest": {
        "type": "object",
        "required": [
                "ewbNo"
        ],
        "properties": {
                "ewbNo": {
                        "type": "integer",
                        "description": "E-Way Bill number to reject.",
                        "format": "int64"
                }
        },
        "description": "E-Way Bill schema."
},
      "RejectEWayBillSuccessPayload": {
        "type": "object",
        "properties": {
                "ewayBillNo": {
                        "type": "string",
                        "example": "291010077010",
                        "description": "The ewayBillNo value."
                },
                "ewbRejectedDate": {
                        "type": "string",
                        "example": "01/05/2024 07:43:00 PM",
                        "description": "The ewbRejectedDate value."
                }
        },
        "description": "E-Way Bill schema."
},
      "RejectEWayBillSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "alert": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": null
                                                },
                                                "data": {
                                                        "$ref": "#/components/schemas/RejectEWayBillSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "344"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "RejectEWayBillResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/RejectEWayBillSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "GetTransporterEWayBillsSuccessPayload": {
        "type": "array",
        "items": {
                "type": "object",
                "properties": {
                        "delPinCode": {
                                "type": "number",
                                "example": 560090,
                                "description": "The delPinCode value."
                        },
                        "delPlace": {
                                "type": "string",
                                "example": "Beml Nagar",
                                "description": "The delPlace value."
                        },
                        "delStateCode": {
                                "type": "number",
                                "example": 29,
                                "description": "The delStateCode value."
                        },
                        "docDate": {
                                "type": "string",
                                "example": "01/05/2024",
                                "description": "The docDate value."
                        },
                        "docNo": {
                                "type": "string",
                                "example": "7001-11",
                                "description": "The docNo value."
                        },
                        "ewbDate": {
                                "type": "string",
                                "example": "03/05/2024 12:27:00 PM",
                                "description": "The ewbDate value."
                        },
                        "ewbNo": {
                                "type": "number",
                                "example": 221010077190,
                                "description": "The ewbNo value."
                        },
                        "extendedTimes": {
                                "type": "number",
                                "example": 0,
                                "description": "The extendedTimes value."
                        },
                        "genGstin": {
                                "type": "string",
                                "example": "27AAACQ3770E004",
                                "description": "The genGstin value."
                        },
                        "rejectStatus": {
                                "type": "string",
                                "example": "N",
                                "description": "The rejectStatus value."
                        },
                        "status": {
                                "type": "string",
                                "example": "ACT",
                                "description": "The status value."
                        },
                        "validUpto": {
                                "type": "string",
                                "example": "08/05/2024 11:59:00 PM",
                                "description": "The validUpto value."
                        }
                },
                "description": "E-Way Bill schema."
        },
        "example": [
                {
                        "delPinCode": 560090,
                        "delPlace": "Beml Nagar",
                        "delStateCode": 29,
                        "docDate": "01/05/2024",
                        "docNo": "7001-11",
                        "ewbDate": "03/05/2024 12:27:00 PM",
                        "ewbNo": 221010077190,
                        "extendedTimes": 0,
                        "genGstin": "27AAACQ3770E004",
                        "rejectStatus": "N",
                        "status": "ACT",
                        "validUpto": "08/05/2024 11:59:00 PM"
                }
        ]
},
      "GetTransporterEWayBillsSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/GetTransporterEWayBillsSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "336"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GetTransporterEWayBillsResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/GetTransporterEWayBillsSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "ListEWayBillsByGeneratorRequest": {
        "type": "object",
        "required": [
                "generator_gstin"
        ],
        "properties": {
                "generator_gstin": {
                        "type": "string",
                        "description": "GSTIN of E-Way Bill generator",
                        "minLength": 15,
                        "maxLength": 15,
                        "pattern": "^[0-9]{2}[0-9A-Z]{13}$"
                }
        },
        "description": "E-Way Bill schema."
},
      "GetEWayBillSuccessPayload": {
        "type": "object",
        "properties": {
                "VehiclListDetails": {
                        "type": "array",
                        "items": {
                                "type": "object",
                                "properties": {
                                        "enteredDate": {
                                                "type": "string",
                                                "example": "01/05/2024 07:00:00 PM",
                                                "description": "The enteredDate value."
                                        },
                                        "fromPlace": {
                                                "type": "string",
                                                "example": "FRAZER TOWN",
                                                "description": "The fromPlace value."
                                        },
                                        "fromState": {
                                                "type": "number",
                                                "example": 27,
                                                "description": "The fromState value."
                                        },
                                        "groupNo": {
                                                "type": "string",
                                                "example": "0",
                                                "description": "The groupNo value."
                                        },
                                        "transDocDate": {
                                                "type": "string",
                                                "nullable": true,
                                                "example": null,
                                                "description": "The transDocDate value."
                                        },
                                        "transDocNo": {
                                                "type": "string",
                                                "example": "",
                                                "description": "The transDocNo value."
                                        },
                                        "transMode": {
                                                "type": "string",
                                                "example": "1",
                                                "description": "The transMode value."
                                        },
                                        "tripshtNo": {
                                                "type": "number",
                                                "example": 0,
                                                "description": "The tripshtNo value."
                                        },
                                        "updMode": {
                                                "type": "string",
                                                "example": "API",
                                                "description": "The updMode value."
                                        },
                                        "userGSTINTransin": {
                                                "type": "string",
                                                "example": "27AAACQ3770E004",
                                                "description": "The userGSTINTransin value."
                                        },
                                        "vehicleNo": {
                                                "type": "string",
                                                "example": "PVC1234",
                                                "description": "The vehicleNo value."
                                        }
                                },
                                "description": "E-Way Bill schema."
                        },
                        "example": [
                                {
                                        "enteredDate": "01/05/2024 07:00:00 PM",
                                        "fromPlace": "FRAZER TOWN",
                                        "fromState": 27,
                                        "groupNo": "0",
                                        "transDocDate": null,
                                        "transDocNo": "",
                                        "transMode": "1",
                                        "tripshtNo": 0,
                                        "updMode": "API",
                                        "userGSTINTransin": "27AAACQ3770E004",
                                        "vehicleNo": "PVC1234"
                                }
                        ],
                        "description": "The VehiclListDetails value."
                },
                "actFromStateCode": {
                        "type": "number",
                        "example": 27,
                        "description": "The actFromStateCode value."
                },
                "actToStateCode": {
                        "type": "number",
                        "example": 29,
                        "description": "The actToStateCode value."
                },
                "actualDist": {
                        "type": "number",
                        "example": 1000,
                        "description": "The actualDist value."
                },
                "cessNonAdvolValue": {
                        "type": "number",
                        "example": 400,
                        "description": "The cessNonAdvolValue value."
                },
                "cessValue": {
                        "type": "number",
                        "example": 400.56,
                        "description": "The cessValue value."
                },
                "cgstValue": {
                        "type": "number",
                        "example": 0,
                        "description": "The cgstValue value."
                },
                "docDate": {
                        "type": "string",
                        "example": "15/12/2017",
                        "description": "The docDate value."
                },
                "docNo": {
                        "type": "string",
                        "example": "7001-8",
                        "description": "The docNo value."
                },
                "docType": {
                        "type": "string",
                        "example": "INV",
                        "description": "The docType value."
                },
                "ewayBillDate": {
                        "type": "string",
                        "example": "01/05/2024 07:00:00 PM",
                        "description": "The ewayBillDate value."
                },
                "ewbNo": {
                        "type": "number",
                        "example": 291010077005,
                        "description": "The ewbNo value."
                },
                "extendedTimes": {
                        "type": "number",
                        "example": 0,
                        "description": "The extendedTimes value."
                },
                "fromAddr1": {
                        "type": "string",
                        "example": "2ND CROSS NO 59  19  A",
                        "description": "The fromAddr1 value."
                },
                "fromAddr2": {
                        "type": "string",
                        "example": "GROUND FLOOR OSBORNE ROAD",
                        "description": "The fromAddr2 value."
                },
                "fromGstin": {
                        "type": "string",
                        "example": "29AAACQ3770E000",
                        "description": "The fromGstin value."
                },
                "fromPincode": {
                        "type": "number",
                        "example": 400027,
                        "description": "The fromPincode value."
                },
                "fromPlace": {
                        "type": "string",
                        "example": "FRAZER TOWN",
                        "description": "The fromPlace value."
                },
                "fromStateCode": {
                        "type": "number",
                        "example": 27,
                        "description": "The fromStateCode value."
                },
                "fromTrdName": {
                        "type": "string",
                        "example": "welton",
                        "description": "The fromTrdName value."
                },
                "genMode": {
                        "type": "string",
                        "example": "API",
                        "description": "The genMode value."
                },
                "igstValue": {
                        "type": "number",
                        "example": 300.67,
                        "description": "The igstValue value."
                },
                "itemList": {
                        "type": "array",
                        "items": {
                                "type": "object",
                                "properties": {
                                        "cessNonAdvol": {
                                                "type": "number",
                                                "example": 0,
                                                "description": "The cessNonAdvol value."
                                        },
                                        "cessRate": {
                                                "type": "number",
                                                "example": 3,
                                                "description": "The cessRate value."
                                        },
                                        "cgstRate": {
                                                "type": "number",
                                                "example": 0,
                                                "description": "The cgstRate value."
                                        },
                                        "hsnCode": {
                                                "type": "number",
                                                "example": 1001,
                                                "description": "The hsnCode value."
                                        },
                                        "igstRate": {
                                                "type": "number",
                                                "example": 3,
                                                "description": "The igstRate value."
                                        },
                                        "itemNo": {
                                                "type": "number",
                                                "example": 1,
                                                "description": "The itemNo value."
                                        },
                                        "productDesc": {
                                                "type": "string",
                                                "example": "Wheat",
                                                "description": "The productDesc value."
                                        },
                                        "productId": {
                                                "type": "number",
                                                "example": 0,
                                                "description": "The productId value."
                                        },
                                        "productName": {
                                                "type": "string",
                                                "example": "Wheat",
                                                "description": "The productName value."
                                        },
                                        "qtyUnit": {
                                                "type": "string",
                                                "example": "BOX",
                                                "description": "The qtyUnit value."
                                        },
                                        "quantity": {
                                                "type": "number",
                                                "example": 4,
                                                "description": "The quantity value."
                                        },
                                        "sgstRate": {
                                                "type": "number",
                                                "example": 0,
                                                "description": "The sgstRate value."
                                        },
                                        "taxableAmount": {
                                                "type": "number",
                                                "example": 5609889,
                                                "description": "The taxableAmount value."
                                        }
                                },
                                "description": "E-Way Bill schema."
                        },
                        "example": [
                                {
                                        "cessNonAdvol": 0,
                                        "cessRate": 3,
                                        "cgstRate": 0,
                                        "hsnCode": 1001,
                                        "igstRate": 3,
                                        "itemNo": 1,
                                        "productDesc": "Wheat",
                                        "productId": 0,
                                        "productName": "Wheat",
                                        "qtyUnit": "BOX",
                                        "quantity": 4,
                                        "sgstRate": 0,
                                        "taxableAmount": 5609889
                                }
                        ],
                        "description": "The itemList value."
                },
                "noValidDays": {
                        "type": "number",
                        "example": 5,
                        "description": "The noValidDays value."
                },
                "otherValue": {
                        "type": "number",
                        "example": -100,
                        "description": "The otherValue value."
                },
                "rejectStatus": {
                        "type": "string",
                        "example": "N",
                        "description": "The rejectStatus value."
                },
                "sgstValue": {
                        "type": "number",
                        "example": 0,
                        "description": "The sgstValue value."
                },
                "status": {
                        "type": "string",
                        "example": "ACT",
                        "description": "The status value."
                },
                "subSupplyType": {
                        "type": "string",
                        "example": "1  ",
                        "description": "The subSupplyType value."
                },
                "supplyType": {
                        "type": "string",
                        "example": "O",
                        "description": "The supplyType value."
                },
                "toAddr1": {
                        "type": "string",
                        "example": "Shree Nilaya",
                        "description": "The toAddr1 value."
                },
                "toAddr2": {
                        "type": "string",
                        "example": "Dasarahosahalli",
                        "description": "The toAddr2 value."
                },
                "toGstin": {
                        "type": "string",
                        "example": "27AAACQ3770E000",
                        "description": "The toGstin value."
                },
                "toPincode": {
                        "type": "number",
                        "example": 560090,
                        "description": "The toPincode value."
                },
                "toPlace": {
                        "type": "string",
                        "example": "Beml Nagar",
                        "description": "The toPlace value."
                },
                "toStateCode": {
                        "type": "number",
                        "example": 29,
                        "description": "The toStateCode value."
                },
                "toTrdName": {
                        "type": "string",
                        "example": "sthuthya",
                        "description": "The toTrdName value."
                },
                "totInvValue": {
                        "type": "number",
                        "example": 68358,
                        "description": "The totInvValue value."
                },
                "totalValue": {
                        "type": "number",
                        "example": 56099,
                        "description": "The totalValue value."
                },
                "transactionType": {
                        "type": "number",
                        "example": 4,
                        "description": "The transactionType value."
                },
                "transporterId": {
                        "type": "string",
                        "example": "27AAACQ3770E004",
                        "description": "The transporterId value."
                },
                "transporterName": {
                        "type": "string",
                        "example": "Acme Industries Private Limited",
                        "description": "The transporterName value."
                },
                "userGstin": {
                        "type": "string",
                        "example": "29AAACQ3770E000",
                        "description": "The userGstin value."
                },
                "validUpto": {
                        "type": "string",
                        "example": "06/05/2024 11:59:00 PM",
                        "description": "The validUpto value."
                },
                "vehicleType": {
                        "type": "string",
                        "example": "R",
                        "description": "The vehicleType value."
                }
        },
        "description": "E-Way Bill schema."
},
      "GetEWayBillSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/GetEWayBillSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "357"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GetEWayBillResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/GetEWayBillSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "SearchEWayBillGstinRequest": {
        "type": "object",
        "required": [
                "gstin"
        ],
        "properties": {
                "gstin": {
                        "type": "string",
                        "description": "GSTIN of the taxpayer"
                }
        },
        "description": "E-Way Bill schema."
},
      "SearchEWayBillGstinSuccessPayload": {
        "type": "object",
        "properties": {
                "address1": {
                        "type": "string",
                        "example": "",
                        "description": "The address1 value."
                },
                "address2": {
                        "type": "string",
                        "example": "560009",
                        "description": "The address2 value."
                },
                "blkStatus": {
                        "type": "string",
                        "example": "",
                        "description": "The blkStatus value."
                },
                "gstin": {
                        "type": "string",
                        "example": "29AAACQ3770E000",
                        "description": "The gstin value."
                },
                "legalName": {
                        "type": "string",
                        "example": "Acme Industries Private Limited",
                        "description": "The legalName value."
                },
                "pinCode": {
                        "type": "string",
                        "example": "560009",
                        "description": "The pinCode value."
                },
                "stateCode": {
                        "type": "string",
                        "example": "27",
                        "description": "The stateCode value."
                },
                "status": {
                        "type": "string",
                        "example": "ACT",
                        "description": "The status value."
                },
                "tradeName": {
                        "type": "string",
                        "example": "",
                        "description": "The tradeName value."
                },
                "txpType": {
                        "type": "string",
                        "example": "REG",
                        "description": "The txpType value."
                }
        },
        "description": "E-Way Bill schema."
},
      "SearchEWayBillGstinSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/SearchEWayBillGstinSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "325"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "SearchEWayBillGstinResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/SearchEWayBillGstinSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "SearchEWayBillTransporterRequest": {
        "type": "object",
        "required": [
                "transin"
        ],
        "properties": {
                "transin": {
                        "type": "string",
                        "description": "Transporter Identification Number"
                }
        },
        "description": "E-Way Bill schema."
},
      "SearchEWayBillTransporterSuccessPayload": {
        "type": "object",
        "properties": {
                "address1": {
                        "type": "string",
                        "example": "1 ,GROUND FLOOR ,-",
                        "description": "The address1 value."
                },
                "address2": {
                        "type": "string",
                        "example": "2ND CROSS ,BANGALURU ,BANGALURU",
                        "description": "The address2 value."
                },
                "legalName": {
                        "type": "string",
                        "example": "AGARWAL PACKERS AND MOVERS LIMITED",
                        "description": "The legalName value."
                },
                "pinCode": {
                        "type": "string",
                        "example": "560027",
                        "description": "The pinCode value."
                },
                "stateCode": {
                        "type": "string",
                        "example": "29",
                        "description": "The stateCode value."
                },
                "tradeName": {
                        "type": "string",
                        "example": "AGARWAL PACKERS AND AMOVERS LIMITED",
                        "description": "The tradeName value."
                },
                "transin": {
                        "type": "string",
                        "example": "29AAFCA3559A1ZV",
                        "description": "The transin value."
                }
        },
        "description": "E-Way Bill schema."
},
      "SearchEWayBillTransporterSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/SearchEWayBillTransporterSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "328"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "SearchEWayBillTransporterResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/SearchEWayBillTransporterSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},
      "GetEWayBillErrorListSuccessPayload": {
        "type": "array",
        "items": {
                "type": "object",
                "properties": {
                        "errorCode": {
                                "type": "string",
                                "example": "100",
                                "description": "The errorCode value."
                        },
                        "errorDesc": {
                                "type": "string",
                                "example": "Invalid Json",
                                "description": "The errorDesc value."
                        }
                },
                "description": "E-Way Bill schema."
        },
        "example": [
                {
                        "errorCode": "100",
                        "errorDesc": "Invalid Json"
                },
                {
                        "errorCode": "101",
                        "errorDesc": "Invalid Username"
                },
                {
                        "errorCode": "102",
                        "errorDesc": "Invalid Password"
                },
                {
                        "errorCode": "103",
                        "errorDesc": "Invalid Client -Id"
                },
                {
                        "errorCode": "104",
                        "errorDesc": "Invalid Client Secret"
                },
                {
                        "errorCode": "105",
                        "errorDesc": "Invalid Token"
                },
                {
                        "errorCode": "106",
                        "errorDesc": "Token Expired"
                },
                {
                        "errorCode": "107",
                        "errorDesc": "Authentication failed. Pls. inform the helpdesk"
                },
                {
                        "errorCode": "108",
                        "errorDesc": "Invalid login credentials."
                },
                {
                        "errorCode": "109",
                        "errorDesc": "Decryption of data failed"
                },
                {
                        "errorCode": "110",
                        "errorDesc": "Invalid Client-ID/Client-Secret"
                },
                {
                        "errorCode": "111",
                        "errorDesc": "GSTIN is not registerd to this GSP"
                },
                {
                        "errorCode": "112",
                        "errorDesc": "Inactive Client"
                },
                {
                        "errorCode": "113",
                        "errorDesc": "Inactive User"
                },
                {
                        "errorCode": "114",
                        "errorDesc": "Technical Error, Pl. contact the helpdesk."
                },
                {
                        "errorCode": "115",
                        "errorDesc": "Request payload data cannot be empty"
                },
                {
                        "errorCode": "116",
                        "errorDesc": "Auth token is not valid for this client"
                },
                {
                        "errorCode": "201",
                        "errorDesc": "Invalid Supply Type"
                },
                {
                        "errorCode": "202",
                        "errorDesc": "Invalid Sub-supply Type"
                },
                {
                        "errorCode": "203",
                        "errorDesc": "Sub-transaction type does not belongs to transaction type"
                },
                {
                        "errorCode": "204",
                        "errorDesc": "Invalid Document type"
                },
                {
                        "errorCode": "205",
                        "errorDesc": "Document type does not match with transaction & Sub trans type"
                },
                {
                        "errorCode": "206",
                        "errorDesc": "Invaild Invoice Number"
                },
                {
                        "errorCode": "207",
                        "errorDesc": "Invalid Invoice Date"
                },
                {
                        "errorCode": "208",
                        "errorDesc": "Invalid Supplier GSTIN"
                },
                {
                        "errorCode": "209",
                        "errorDesc": "Blank Supplier Address"
                },
                {
                        "errorCode": "210",
                        "errorDesc": "Invalid or Blank Supplier PIN Code"
                },
                {
                        "errorCode": "211",
                        "errorDesc": "Invalid or Blank Supplier state Code"
                },
                {
                        "errorCode": "212",
                        "errorDesc": "Invalid Consignee GSTIN"
                },
                {
                        "errorCode": "213",
                        "errorDesc": "Invalid Consignee Address"
                },
                {
                        "errorCode": "214",
                        "errorDesc": "Invalid Consignee PIN Code"
                },
                {
                        "errorCode": "215",
                        "errorDesc": "Invalid Consignee State Code"
                },
                {
                        "errorCode": "216",
                        "errorDesc": "Invalid HSN Code"
                },
                {
                        "errorCode": "217",
                        "errorDesc": "Invalid UQC Code"
                },
                {
                        "errorCode": "218",
                        "errorDesc": "Invalid Tax Rate for Intra State Transaction"
                },
                {
                        "errorCode": "219",
                        "errorDesc": "Invalid Tax Rate for Inter State Transaction"
                },
                {
                        "errorCode": "220",
                        "errorDesc": "Invalid Trans mode"
                },
                {
                        "errorCode": "221",
                        "errorDesc": "Invalid Approximate Distance"
                },
                {
                        "errorCode": "222",
                        "errorDesc": "Invalid Transporter Id"
                },
                {
                        "errorCode": "223",
                        "errorDesc": "Invalid Transaction Document Number"
                },
                {
                        "errorCode": "224",
                        "errorDesc": "Invalid Transaction Date"
                },
                {
                        "errorCode": "225",
                        "errorDesc": "Invalid Vehicle Number Format"
                },
                {
                        "errorCode": "226",
                        "errorDesc": "Both Transaction and Vehicle Number Blank"
                },
                {
                        "errorCode": "227",
                        "errorDesc": "User Gstin cannot be blank"
                },
                {
                        "errorCode": "228",
                        "errorDesc": "User id cannot be blank"
                },
                {
                        "errorCode": "229",
                        "errorDesc": "Supplier name is required"
                },
                {
                        "errorCode": "230",
                        "errorDesc": "Supplier place is required"
                },
                {
                        "errorCode": "231",
                        "errorDesc": "Consignee name is required"
                },
                {
                        "errorCode": "232",
                        "errorDesc": "Consignee place is required"
                },
                {
                        "errorCode": "233",
                        "errorDesc": "Eway bill does not contains any items"
                },
                {
                        "errorCode": "234",
                        "errorDesc": "Total amount/Taxable amout is mandatory"
                },
                {
                        "errorCode": "235",
                        "errorDesc": "Tax rates for Intra state transaction is blank"
                },
                {
                        "errorCode": "236",
                        "errorDesc": "Tax rates for Inter state transaction is blank"
                },
                {
                        "errorCode": "237",
                        "errorDesc": "Invalid client -Id/client-secret"
                },
                {
                        "errorCode": "238",
                        "errorDesc": "Invalid auth token"
                },
                {
                        "errorCode": "239",
                        "errorDesc": "Invalid action"
                },
                {
                        "errorCode": "240",
                        "errorDesc": "Could not generate eway bill, pls contact helpdesk"
                },
                {
                        "errorCode": "250",
                        "errorDesc": "Invalid Vehicle Release Date Format"
                },
                {
                        "errorCode": "251",
                        "errorDesc": "CGST nad SGST TaxRate should be same"
                },
                {
                        "errorCode": "252",
                        "errorDesc": "Invalid CGST Tax Rate"
                },
                {
                        "errorCode": "253",
                        "errorDesc": "Invalid SGST Tax Rate"
                },
                {
                        "errorCode": "254",
                        "errorDesc": "Invalid IGST Tax Rate"
                },
                {
                        "errorCode": "255",
                        "errorDesc": "Invalid CESS Rate"
                },
                {
                        "errorCode": "278",
                        "errorDesc": "User Gstin does not match with Transporter Id"
                },
                {
                        "errorCode": "280",
                        "errorDesc": "Status is not ACTIVE"
                },
                {
                        "errorCode": "281",
                        "errorDesc": "Eway Bill is already expired hence update transporter is not allowed."
                },
                {
                        "errorCode": "282",
                        "errorDesc": "At least 4 digit HSN code is mandatory for taxpayers with turnover less than 5Cr."
                },
                {
                        "errorCode": "283",
                        "errorDesc": "At least 6 digit HSN code is mandatory for taxpayers with turnover 5Cr. and above"
                },
                {
                        "errorCode": "301",
                        "errorDesc": "Invalid eway bill number"
                },
                {
                        "errorCode": "302",
                        "errorDesc": "Invalid transporter mode"
                },
                {
                        "errorCode": "303",
                        "errorDesc": "Vehicle number is required"
                },
                {
                        "errorCode": "304",
                        "errorDesc": "Invalid vehicle format"
                },
                {
                        "errorCode": "305",
                        "errorDesc": "Place from is required"
                },
                {
                        "errorCode": "306",
                        "errorDesc": "Invalid from state"
                },
                {
                        "errorCode": "307",
                        "errorDesc": "Invalid reason"
                },
                {
                        "errorCode": "308",
                        "errorDesc": "Invalid remarks"
                },
                {
                        "errorCode": "309",
                        "errorDesc": "Could not update vehicle details, pl contact helpdesk"
                },
                {
                        "errorCode": "311",
                        "errorDesc": "Validity period lapsed, you cannot update vehicle details"
                },
                {
                        "errorCode": "312",
                        "errorDesc": "This eway bill is either not generated by you or cancelled"
                },
                {
                        "errorCode": "315",
                        "errorDesc": "Validity period lapsed, you cannot cancel this eway bill"
                },
                {
                        "errorCode": "316",
                        "errorDesc": "Eway bill is already verified, you cannot cancel it"
                },
                {
                        "errorCode": "317",
                        "errorDesc": "Could not cancel eway bill, please contact helpdesk"
                },
                {
                        "errorCode": "320",
                        "errorDesc": "Invalid state to"
                },
                {
                        "errorCode": "321",
                        "errorDesc": "Invalid place to"
                },
                {
                        "errorCode": "322",
                        "errorDesc": "Could not generate consolidated eway bill"
                },
                {
                        "errorCode": "325",
                        "errorDesc": "Could not retrieve data"
                },
                {
                        "errorCode": "326",
                        "errorDesc": "Could not retrieve GSTIN details for the given GSTIN number"
                },
                {
                        "errorCode": "327",
                        "errorDesc": "Could not retrieve data from hsn"
                },
                {
                        "errorCode": "328",
                        "errorDesc": "Could not retrieve transporter details from gstin"
                },
                {
                        "errorCode": "329",
                        "errorDesc": "Could not retrieve States List"
                },
                {
                        "errorCode": "330",
                        "errorDesc": "Could not retrieve UQC list"
                },
                {
                        "errorCode": "331",
                        "errorDesc": "Could not retrieve Error code"
                },
                {
                        "errorCode": "334",
                        "errorDesc": "Could not retrieve user details by userid "
                },
                {
                        "errorCode": "336",
                        "errorDesc": "Could not retrieve transporter data by gstin "
                },
                {
                        "errorCode": "337",
                        "errorDesc": "Could not retrieve HSN details for the given HSN number"
                },
                {
                        "errorCode": "338",
                        "errorDesc": "You cannot update transporter details, as the current tranporter is already entered Part B details of the eway bill"
                },
                {
                        "errorCode": "339",
                        "errorDesc": "You are not assigned to update the tranporter details of this eway bill"
                },
                {
                        "errorCode": "341",
                        "errorDesc": "This e-way bill is generated by you and hence you cannot reject it"
                },
                {
                        "errorCode": "342",
                        "errorDesc": "You cannot reject this e-way bill as you are not the other party to do so"
                },
                {
                        "errorCode": "343",
                        "errorDesc": "This e-way bill is cancelled"
                },
                {
                        "errorCode": "344",
                        "errorDesc": "Invalid eway bill number"
                },
                {
                        "errorCode": "345",
                        "errorDesc": "Validity period lapsed, you cannot reject the e-way bill"
                },
                {
                        "errorCode": "346",
                        "errorDesc": "You can reject the e-way bill only within 72 hours from generated timel"
                },
                {
                        "errorCode": "347",
                        "errorDesc": "Validation of eway bill number failed, while rejecting ewaybill"
                },
                {
                        "errorCode": "350",
                        "errorDesc": "Could not generate consolidated eway bill"
                },
                {
                        "errorCode": "351",
                        "errorDesc": "Invalid state code"
                },
                {
                        "errorCode": "352",
                        "errorDesc": "Invalid rfid date"
                },
                {
                        "errorCode": "353",
                        "errorDesc": "Invalid location code"
                },
                {
                        "errorCode": "354",
                        "errorDesc": "Invalid rfid number"
                },
                {
                        "errorCode": "355",
                        "errorDesc": "Invalid Vehicle Number Format"
                },
                {
                        "errorCode": "356",
                        "errorDesc": "Invalid wt on bridge"
                },
                {
                        "errorCode": "357",
                        "errorDesc": "Could not retrieve eway bill details, pl. contact helpdesk"
                },
                {
                        "errorCode": "358",
                        "errorDesc": "GSTIN passed in request header is not matching with the user gstin mentioned in payload JSON"
                },
                {
                        "errorCode": "359",
                        "errorDesc": "User GSTIN should match to GSTIN(from) for outward transactions"
                },
                {
                        "errorCode": "360",
                        "errorDesc": "User GSTIN should match to GSTIN(to) for inward transactions"
                },
                {
                        "errorCode": "361",
                        "errorDesc": "Invalid Vehicle Type"
                },
                {
                        "errorCode": "362",
                        "errorDesc": "Transporter document date cannot be earlier than the invoice date"
                },
                {
                        "errorCode": "363",
                        "errorDesc": "E-way bill is not enabled for intra state movement for you state"
                },
                {
                        "errorCode": "364",
                        "errorDesc": "Error in verifying eway bill"
                },
                {
                        "errorCode": "365",
                        "errorDesc": "Error in verifying consolidated eway bill"
                },
                {
                        "errorCode": "366",
                        "errorDesc": "You will not get the ewaybills generated today, howerver you cann access the ewaybills of yester days"
                },
                {
                        "errorCode": "367",
                        "errorDesc": "Could not retrieve data for officer login"
                },
                {
                        "errorCode": "368",
                        "errorDesc": "Could not update transporter"
                },
                {
                        "errorCode": "369",
                        "errorDesc": "GSTIN/Transin passed in request header should match with the transported Id mentioned in payload JSON"
                },
                {
                        "errorCode": "370",
                        "errorDesc": "GSTIN/Transin passed in request header should not be the same as supplier(fromGSTIN) or recepient(toGSTIN)"
                },
                {
                        "errorCode": "371",
                        "errorDesc": "Invalid or Blank Supplier Ship-to State Code"
                },
                {
                        "errorCode": "372",
                        "errorDesc": "Invalid or Blank Consignee Ship-to State Code"
                },
                {
                        "errorCode": "373",
                        "errorDesc": "The Supplier ship-from state code should be Other Country for Sub Supply Type- Export"
                },
                {
                        "errorCode": "374",
                        "errorDesc": "The Consignee pin code should be 999999 for Sub Supply Type- Export"
                },
                {
                        "errorCode": "375",
                        "errorDesc": "The Supplier ship-to state code should be Other Country for Sub Supply Type- Import"
                },
                {
                        "errorCode": "376",
                        "errorDesc": "The Supplier pin code should be 999999 for Sub Supply Type- Import"
                },
                {
                        "errorCode": "377",
                        "errorDesc": "Sub Supply Type is mentioned as Others, the description for that is mandatory"
                },
                {
                        "errorCode": "378",
                        "errorDesc": "The supplier or conginee belong to SEZ, Inter state tax rates are applicable here"
                },
                {
                        "errorCode": "379",
                        "errorDesc": "Eway Bill can not be extended.. Already Cancelled"
                },
                {
                        "errorCode": "380",
                        "errorDesc": "Eway Bill Can not be Extended. Not in Active State"
                },
                {
                        "errorCode": "381",
                        "errorDesc": "There is No PART-B/Vehicle Entry.. So Please Update Vehicle Information.."
                },
                {
                        "errorCode": "382",
                        "errorDesc": "You Cannot Extend as EWB can be Extended only 8 hour before or after w.r.t Validity of EWB..!!"
                },
                {
                        "errorCode": "383",
                        "errorDesc": "Error While Extending..Please Contact Helpdesk. "
                },
                {
                        "errorCode": "384",
                        "errorDesc": "You are not current transporter or Generator of the ewayBill, with no transporter details."
                },
                {
                        "errorCode": "385",
                        "errorDesc": "For Rail/Ship/Air transDocNo and transDocDate is mandatory"
                },
                {
                        "errorCode": "386",
                        "errorDesc": "Reason Code, Remarks is mandatory."
                },
                {
                        "errorCode": "387",
                        "errorDesc": "No Record Found for Entered consolidated eWay bill."
                },
                {
                        "errorCode": "388",
                        "errorDesc": "Exception in regenration of consolidated eWayBill!!Please Contact helpdesk"
                },
                {
                        "errorCode": "389",
                        "errorDesc": "Remaining Distance Required"
                },
                {
                        "errorCode": "390",
                        "errorDesc": "Remaining Distance Can not be greater than Actual Distance."
                },
                {
                        "errorCode": "391",
                        "errorDesc": "No eway bill of specified tripsheet, neither  ACTIVE nor not Valid."
                },
                {
                        "errorCode": "392",
                        "errorDesc": "Tripsheet is already cancelled, Hence Regeration is not possible"
                },
                {
                        "errorCode": "393",
                        "errorDesc": "Invalid GSTIN"
                },
                {
                        "errorCode": "394",
                        "errorDesc": "For other than Road Transport, TransDoc number is required"
                },
                {
                        "errorCode": "395",
                        "errorDesc": "Eway Bill Number should be numeric only"
                },
                {
                        "errorCode": "396",
                        "errorDesc": "Either Eway Bill Number Or Consolidated Eway Bill Number is required for Verification"
                },
                {
                        "errorCode": "397",
                        "errorDesc": "Error in Multi Vehicle Movement Initiation"
                },
                {
                        "errorCode": "398",
                        "errorDesc": "Eway Bill Item List is Empty"
                },
                {
                        "errorCode": "399",
                        "errorDesc": "Unit Code is not matching with any of the Unit Code from ItemList"
                },
                {
                        "errorCode": "400",
                        "errorDesc": "total quantity is exceeding from multi vehicle movement initiation quantity"
                },
                {
                        "errorCode": "401",
                        "errorDesc": "Error in inserting multi vehicle details"
                },
                {
                        "errorCode": "402",
                        "errorDesc": "total quantity can not be less than or equal to zero"
                },
                {
                        "errorCode": "403",
                        "errorDesc": "Error in multi vehicle details"
                },
                {
                        "errorCode": "405",
                        "errorDesc": "No record found for multi vehicle update with specified ewbNo groupNo and old vehicleNo/transDocNo with status as ACT"
                },
                {
                        "errorCode": "406",
                        "errorDesc": "Group number cannot be empty or zero"
                },
                {
                        "errorCode": "407",
                        "errorDesc": "Invalid old vehicle number format"
                },
                {
                        "errorCode": "408",
                        "errorDesc": "Invalid new vehicle number format"
                },
                {
                        "errorCode": "409",
                        "errorDesc": "Invalid old transDoc number"
                },
                {
                        "errorCode": "410",
                        "errorDesc": "Invalid new transDoc number"
                },
                {
                        "errorCode": "411",
                        "errorDesc": "Multi Vehicle Initiation data is not there for specified ewayBill and group No"
                },
                {
                        "errorCode": "412",
                        "errorDesc": "Multi Vehicle movement is already Initiated,hence PART B updation not allowed"
                },
                {
                        "errorCode": "413",
                        "errorDesc": "Unit Code is not matching with unit code of first initiaton"
                },
                {
                        "errorCode": "415",
                        "errorDesc": "Error in fetching in verification data for officer"
                },
                {
                        "errorCode": "416",
                        "errorDesc": "Date range is exceeding allowed date range "
                },
                {
                        "errorCode": "417",
                        "errorDesc": "No verification data found for officer "
                },
                {
                        "errorCode": "418",
                        "errorDesc": "No record found"
                },
                {
                        "errorCode": "419",
                        "errorDesc": "Error in fetching search result for taxpayer/transporter"
                },
                {
                        "errorCode": "420",
                        "errorDesc": "Minimum six character required for Tradename/legalname search"
                },
                {
                        "errorCode": "421",
                        "errorDesc": "Invalid pincode"
                },
                {
                        "errorCode": "422",
                        "errorDesc": "Invalid mobile number"
                },
                {
                        "errorCode": "423",
                        "errorDesc": "Error in fetching ewaybill list by vehicle number"
                },
                {
                        "errorCode": "424",
                        "errorDesc": "Invalid PAN number"
                },
                {
                        "errorCode": "432",
                        "errorDesc": "invalid vehicle released value"
                },
                {
                        "errorCode": "433",
                        "errorDesc": "invalid goods detained parameter value"
                },
                {
                        "errorCode": "434",
                        "errorDesc": "invalid ewbNoAvailable parameter value"
                },
                {
                        "errorCode": "435",
                        "errorDesc": "Part B is already updated,hence updation is not allowed"
                },
                {
                        "errorCode": "436",
                        "errorDesc": "Invalid email id"
                },
                {
                        "errorCode": "442",
                        "errorDesc": "Error in inserting verification details"
                },
                {
                        "errorCode": "443",
                        "errorDesc": "invalid invoice available value"
                },
                {
                        "errorCode": "600",
                        "errorDesc": "Invalid category"
                },
                {
                        "errorCode": "601",
                        "errorDesc": "Invalid date format"
                },
                {
                        "errorCode": "602",
                        "errorDesc": "Invalid File Number"
                },
                {
                        "errorCode": "603",
                        "errorDesc": "For file details file number is required"
                },
                {
                        "errorCode": "604",
                        "errorDesc": "E-way bill(s) are already generated for the same document number, you cannot generate again on same document number"
                },
                {
                        "errorCode": "605",
                        "errorDesc": " If the goods are moving towards transporter location, the value of toTransporterLoc should be Y"
                },
                {
                        "errorCode": "606",
                        "errorDesc": "Vehicle type is mandatory, if the goods are moving to transporter place"
                },
                {
                        "errorCode": "607",
                        "errorDesc": "dispatch from gstin is mandatary "
                },
                {
                        "errorCode": "608",
                        "errorDesc": "ship to from gstin is mandatary"
                },
                {
                        "errorCode": "609",
                        "errorDesc": " invalid ship to from gstin "
                },
                {
                        "errorCode": "610",
                        "errorDesc": "invalid dispatch from gstin "
                },
                {
                        "errorCode": "611",
                        "errorDesc": "invalid document type for the given supply type "
                },
                {
                        "errorCode": "612",
                        "errorDesc": "Invalid transaction type"
                },
                {
                        "errorCode": "614",
                        "errorDesc": "Transaction type is mandatory"
                },
                {
                        "errorCode": "617",
                        "errorDesc": "Bill-from and dispatch-from gstin should not be same for this transaction type"
                },
                {
                        "errorCode": "618",
                        "errorDesc": "Bill-to and ship-to gstin should not be same for this transaction type"
                },
                {
                        "errorCode": "619",
                        "errorDesc": "Transporter Id is mandatory for generation of Part A slip"
                },
                {
                        "errorCode": "620",
                        "errorDesc": "Total invoice value cannot be less than the sum of total assessible value and tax values"
                },
                {
                        "errorCode": "621",
                        "errorDesc": "trans mode is mandatory since vehicle number is present"
                },
                {
                        "errorCode": "622",
                        "errorDesc": "trans mode is mandatory since trans doc number is present"
                },
                {
                        "errorCode": "627",
                        "errorDesc": "Total value should not be negative"
                },
                {
                        "errorCode": "628",
                        "errorDesc": "Total invoice value should not be negative"
                },
                {
                        "errorCode": "629",
                        "errorDesc": "IGST value should not be negative"
                },
                {
                        "errorCode": "630",
                        "errorDesc": "CGST value should not be negative"
                },
                {
                        "errorCode": "631",
                        "errorDesc": "SGST value should not be negative"
                },
                {
                        "errorCode": "632",
                        "errorDesc": "Cess value should not be negative"
                },
                {
                        "errorCode": "633",
                        "errorDesc": "Cess non advol should not be negative"
                },
                {
                        "errorCode": "634",
                        "errorDesc": "Vehicle type should not be ODC when transmode is other than road"
                },
                {
                        "errorCode": "635",
                        "errorDesc": "You cannot update part B, as the current tranporter is already entered Part B details of the eway bill"
                },
                {
                        "errorCode": "636",
                        "errorDesc": "You are not assigned to update part B"
                },
                {
                        "errorCode": "637",
                        "errorDesc": "You cannot extend ewaybill, as the current tranporter is already entered Part B details of the ewaybill"
                },
                {
                        "errorCode": "638",
                        "errorDesc": "Transport mode is mandatory as Vehicle Number/Transport Document Number is given"
                },
                {
                        "errorCode": "640",
                        "errorDesc": "Tolal Invoice value is mandatory"
                },
                {
                        "errorCode": "641",
                        "errorDesc": "For outward CKD/SKD/Lots supply type, Bill To state should be as Other Country, since the  Bill To GSTIN given is of SEZ unit"
                },
                {
                        "errorCode": "642",
                        "errorDesc": "For inward CKD/SKD/Lots supply type, Bill From state should be as Other Country, since the  Bill From GSTIN given is of SEZ unit"
                },
                {
                        "errorCode": "643",
                        "errorDesc": "For regular transaction, Bill from state code and Dispatch from state code should be same"
                },
                {
                        "errorCode": "644",
                        "errorDesc": "For regular transaction, Bill to state code and Ship to state code should be same"
                },
                {
                        "errorCode": "645",
                        "errorDesc": "You cannot do Multi Vehicle movement, as current transporeter already entered part B"
                },
                {
                        "errorCode": "646",
                        "errorDesc": "You are not assigned to do multi vehicle movement"
                },
                {
                        "errorCode": "647",
                        "errorDesc": "Could not insert RFID data, please contact to helpdesk"
                },
                {
                        "errorCode": "648",
                        "errorDesc": "Multi Vehicle movement is already Initiated,hence generation of consolidated eway bill is not allowed"
                },
                {
                        "errorCode": "649",
                        "errorDesc": "You cannot generate consolidated eway bill , as the current tranporter is already entered Part B details of the eway bill"
                },
                {
                        "errorCode": "650",
                        "errorDesc": "You are not assigned to generate consolidated ewaybill"
                },
                {
                        "errorCode": "651",
                        "errorDesc": "For Category PartA or PartB ewbDt is mandatory"
                },
                {
                        "errorCode": "652",
                        "errorDesc": "For Category EWB03 procDt is mandatory"
                },
                {
                        "errorCode": "653",
                        "errorDesc": "The Ewaybill is cancelled"
                },
                {
                        "errorCode": "654",
                        "errorDesc": "This GSTIN has generated a common Enrolment Number. Hence you are not allowed to generate Eway bill"
                },
                {
                        "errorCode": "655",
                        "errorDesc": "This GSTIN has generated a common Enrolment Number. Hence you cannot mention it as a transporter"
                },
                {
                        "errorCode": "656",
                        "errorDesc": "This Eway Bill does not belongs to your state"
                },
                {
                        "errorCode": "657",
                        "errorDesc": "Eway Bill Category wise details will be available after 4 days only"
                },
                {
                        "errorCode": "658",
                        "errorDesc": "You are blocked for accesing this API as the allowed number of requests has been exceeded"
                },
                {
                        "errorCode": "659",
                        "errorDesc": "Remarks is mandatory"
                },
                {
                        "errorCode": "670",
                        "errorDesc": "Invalid Month Parameter"
                },
                {
                        "errorCode": "671",
                        "errorDesc": "Invalid Year Parameter"
                },
                {
                        "errorCode": "672",
                        "errorDesc": "User Id is mandatory"
                },
                {
                        "errorCode": "673",
                        "errorDesc": "Error in getting officer dashboard"
                },
                {
                        "errorCode": "675",
                        "errorDesc": "Error in getting EWB03 details by acknowledgement date range"
                },
                {
                        "errorCode": "678",
                        "errorDesc": "Invalid Uniq No"
                },
                {
                        "errorCode": "679",
                        "errorDesc": "Invalid EWB03 Ack No"
                },
                {
                        "errorCode": "680",
                        "errorDesc": "Invalid Close Reason"
                },
                {
                        "errorCode": "681",
                        "errorDesc": "Error in Closing EWB  Verification Data"
                },
                {
                        "errorCode": "682",
                        "errorDesc": "No Record available to Close"
                },
                {
                        "errorCode": "683",
                        "errorDesc": "Error in fetching WatchList Data"
                },
                {
                        "errorCode": "700",
                        "errorDesc": "You are not assigned to extend e-waybill"
                },
                {
                        "errorCode": "711",
                        "errorDesc": "Invalid value for isInTransit field"
                },
                {
                        "errorCode": "712",
                        "errorDesc": "Transit Type is not required as the good are not in movement"
                },
                {
                        "errorCode": "713",
                        "errorDesc": "Transit Address is not required as the good are not in movement"
                },
                {
                        "errorCode": "714",
                        "errorDesc": "Document type - Tax Invoice is not allowed for composite tax payer"
                },
                {
                        "errorCode": "715",
                        "errorDesc": "The Consignor GSTIN is blocked from e-waybill generation as Return is not filed for past 2 months"
                },
                {
                        "errorCode": "716",
                        "errorDesc": "The Consignee GSTIN is blocked from e-waybill generation as Return is not filed for past 2 months"
                },
                {
                        "errorCode": "717",
                        "errorDesc": "The Transporter GSTIN is blocked from e-waybill generation as Return is not filed for past 2 months"
                },
                {
                        "errorCode": "718",
                        "errorDesc": "The User GSTIN is blocked from Transporter Updation as Return is not filed for past 2 months"
                },
                {
                        "errorCode": "719",
                        "errorDesc": "The Transporter GSTIN is blocked from Transporter Updation as Return is not filed for past 2 months"
                },
                {
                        "errorCode": "800",
                        "errorDesc": "Redis server Is not Working  try after some time"
                },
                {
                        "errorCode": "801",
                        "errorDesc": "Transporter id is not required for ewaybill for gold"
                },
                {
                        "errorCode": "802",
                        "errorDesc": "Transporter name is not required for ewaybill for gold"
                },
                {
                        "errorCode": "803",
                        "errorDesc": "TransDocNo is not required for ewaybill for gold"
                },
                {
                        "errorCode": "804",
                        "errorDesc": "TransDocDate is not required for ewaybill for gold"
                },
                {
                        "errorCode": "805",
                        "errorDesc": "Vehicle No is not required for ewaybill for gold"
                },
                {
                        "errorCode": "806",
                        "errorDesc": "Vehicle Type is not required for ewaybill for gold"
                },
                {
                        "errorCode": "807",
                        "errorDesc": "Transmode is mandatory for ewaybill for gold"
                },
                {
                        "errorCode": "808",
                        "errorDesc": "Inter-State ewaybill is not allowed for gold"
                },
                {
                        "errorCode": "809",
                        "errorDesc": "Other items are not allowed with eway bill for gold"
                },
                {
                        "errorCode": "810",
                        "errorDesc": "Transport can not be updated for EwayBill For Gold"
                },
                {
                        "errorCode": "811",
                        "errorDesc": "Vehicle can not be updated for EwayBill For Gold"
                },
                {
                        "errorCode": "812",
                        "errorDesc": "ConsolidatedEWB cannot be generated for EwayBill For Gold "
                },
                {
                        "errorCode": "813",
                        "errorDesc": "Transporter id is not required for ewaybill for gold"
                },
                {
                        "errorCode": "814",
                        "errorDesc": "Transporter name is not required for ewaybill for gold"
                },
                {
                        "errorCode": "815",
                        "errorDesc": "TransDocNo is not required for ewaybill for gold"
                },
                {
                        "errorCode": "816",
                        "errorDesc": "TransDocDate is not required for ewaybill for gold"
                },
                {
                        "errorCode": "817",
                        "errorDesc": "Vehicle No is not required for ewaybill for gold"
                },
                {
                        "errorCode": "818",
                        "errorDesc": "Vehicle Type is not required for ewaybill for gold"
                },
                {
                        "errorCode": "819",
                        "errorDesc": "Ewaybill cannot be generated for the document date which is prior to 01/07/2017"
                }
        ]
},
      "GetEWayBillErrorListSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/GetEWayBillErrorListSuccessPayload"
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "1",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GetEWayBillErrorListResponse": {
        "$ref": "#/components/schemas/GetEWayBillErrorListSuccessResponse",
        "description": "Successful E-Way Bill error-list response."
},
      "GetEWayBillHsnDetailsSuccessPayload": {
        "type": "object",
        "properties": {
                "hsnCode": {
                        "type": "string",
                        "example": "1001",
                        "description": "The hsnCode value."
                },
                "hsnDesc": {
                        "type": "string",
                        "example": "WHEAT AND MESLIN - Durum wheat :",
                        "description": "The hsnDesc value."
                }
        },
        "description": "E-Way Bill schema."
},
      "GetEWayBillHsnDetailsSuccessResponse": {
        "allOf": [
                {
                        "$ref": "#/components/schemas/EWayBillResponseMetadata"
                },
                {
                        "type": "object",
                        "required": [
                                "data"
                        ],
                        "properties": {
                                "data": {
                                        "type": "object",
                                        "properties": {
                                                "data": {
                                                        "$ref": "#/components/schemas/GetEWayBillHsnDetailsSuccessPayload"
                                                },
                                                "error": {
                                                        "type": "object",
                                                        "properties": {
                                                                "errorCodes": {
                                                                        "type": "string",
                                                                        "example": "216"
                                                                }
                                                        }
                                                },
                                                "info": {
                                                        "type": "string",
                                                        "example": ""
                                                },
                                                "status": {
                                                        "type": "string",
                                                        "example": "0",
                                                        "enum": [
                                                                "1"
                                                        ],
                                                        "description": "NIC success status."
                                                }
                                        }
                                }
                        }
                }
        ]
},
      "GetEWayBillHsnDetailsResponse": {
        "oneOf": [
                {
                        "$ref": "#/components/schemas/GetEWayBillHsnDetailsSuccessResponse"
                },
                {
                        "$ref": "#/components/schemas/EWayBillBusinessErrorResponse"
                }
        ],
        "description": "An E-Way Bill success or NIC business-failure response. Both variants use HTTP 200."
},

      "TaxpayerResponseMetadata": {
        "type": "object",
        "description": "Fields included in every taxpayer endpoint response.",
        "required": [
          "code",
          "timestamp",
          "transaction_id"
        ],
        "properties": {
          "code": {
            "type": "integer",
            "description": "The HTTP status code reported in the response body.",
            "enum": [
              200
            ],
            "example": 200
          },
          "timestamp": {
            "type": "integer",
            "format": "int64",
            "description": "The response timestamp in Unix epoch milliseconds.",
            "example": 1763446641000
          },
          "transaction_id": {
            "type": "string",
            "description": "The transaction identifier used to trace the request.",
            "example": "41bb8041-fb83-4654-8d75-85a19f329158"
          }
        }
      },
      "GstnBusinessError": {
        "type": "object",
        "description": "A business error returned by GSTN.",
        "required": [
          "error_cd",
          "message"
        ],
        "properties": {
          "error_cd": {
            "type": "string",
            "description": "The GSTN business error code.",
            "example": "RET11416"
          },
          "message": {
            "type": "string",
            "description": "A human-readable description of the GSTN business error.",
            "example": "No records found."
          }
        }
      },
      "GstnBusinessErrorResponse": {
        "type": "object",
        "description": "HTTP 200 response containing a GSTN business failure.",
        "required": [
          "code",
          "timestamp",
          "transaction_id",
          "data"
        ],
        "properties": {
          "code": {
            "type": "integer",
            "enum": [
              200
            ],
            "description": "The HTTP status code reported in the response body.",
            "example": 200
          },
          "timestamp": {
            "type": "integer",
            "format": "int64",
            "description": "The response timestamp in Unix epoch milliseconds.",
            "example": 1763446641000
          },
          "transaction_id": {
            "type": "string",
            "description": "The transaction identifier used to trace the request.",
            "example": "41bb8041-fb83-4654-8d75-85a19f329158"
          },
          "data": {
            "type": "object",
            "description": "The GSTN business-failure wrapper.",
            "required": [
              "status_cd",
              "error"
            ],
            "properties": {
              "status_cd": {
                "type": "string",
                "enum": [
                  "0"
                ],
                "description": "GSTN business-failure status.",
                "example": "0"
              },
              "error": {
                "$ref": "#/components/schemas/GstnBusinessError"
              }
            }
          }
        }
      },
      "GetAatoValuesSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Aato Values.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "GSTIN of the taxpayer.",
            "minLength": 15,
            "maxLength": 15
          },
          "fy": {
            "type": "string",
            "description": "Previous financial year."
          },
          "pan": {
            "type": "string",
            "description": "PAN of the taxpayer.",
            "minLength": 10,
            "maxLength": 10
          },
          "gsttofil": {
            "type": "number",
            "description": "GSTIN turnover based on return filing."
          },
          "pantofil": {
            "type": "number",
            "description": "PAN turnover based on return filing."
          },
          "estgstto": {
            "type": "number",
            "description": "Estimated GSTIN turnover."
          },
          "estpanto": {
            "type": "number",
            "description": "Estimated PAN turnover."
          },
          "finalgstto": {
            "type": "number",
            "description": "Final GSTIN turnover after officer action."
          },
          "finalpanto": {
            "type": "number",
            "description": "Final PAN turnover after officer action."
          },
          "tpdecto": {
            "type": "array",
            "description": "Turnover declarations submitted by the taxpayer.",
            "items": {
              "type": "object",
              "properties": {
                "estgstto": {
                  "type": "number",
                  "description": "Estimated GSTIN turnover provided by GSTN."
                },
                "gsttobytp": {
                  "type": "number",
                  "description": "GSTIN turnover declared by the taxpayer."
                },
                "docId": {
                  "type": "object",
                  "description": "Declaration document identifier.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Declaration document identifier."
                    }
                  }
                },
                "remarks": {
                  "type": "string",
                  "description": "Remarks submitted with the declaration."
                },
                "filingDate": {
                  "type": "string",
                  "description": "Date and time when the declaration was filed."
                }
              }
            }
          }
        }
      },
      "GetAatoValuesSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetAatoValuesSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetAatoValuesResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetAatoValuesSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetEInvoiceByIrnSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get EInvoice By Irn.",
        "properties": {
          "data": {
            "type": "object",
            "description": "E-Invoice data",
            "properties": {
              "AckNo": {
                "type": "number",
                "description": "IRN acknowledgment number"
              },
              "AckDt": {
                "type": "string",
                "description": "IRN acknowledgment date"
              },
              "Irn": {
                "type": "string",
                "description": "IRN number",
                "minLength": 64,
                "maxLength": 64
              },
              "SignedInvoice": {
                "type": "string",
                "description": "Signed Invoice"
              },
              "SignedQRCode": {
                "type": "string",
                "description": "Signed QR Code"
              },
              "Status": {
                "type": "string",
                "description": "IRN Status",
                "minLength": 3,
                "maxLength": 3
              },
              "EwbNo": {
                "type": "integer",
                "description": "E Way Bill Number"
              },
              "EwbDt": {
                "type": "string",
                "description": "E Way Bill Date"
              },
              "EwbValidTill": {
                "type": "string",
                "description": "E Way Bill validity date"
              },
              "Cnldt": {
                "type": "string",
                "description": "IRN cancellation Date"
              },
              "CnlRsn": {
                "type": "string",
                "description": "Cancellation Reason"
              },
              "CnlRem": {
                "type": "string",
                "description": "Cancellation Remarks"
              },
              "Remarks": {
                "type": "string",
                "description": "Remarks"
              }
            }
          },
          "RequestDate": {
            "type": "string",
            "description": "Request Date"
          }
        }
      },
      "GetEInvoiceByIrnSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetEInvoiceByIrnSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetEInvoiceByIrnResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetEInvoiceByIrnSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetEInvoiceHsnSummarySuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get EInvoice Hsn Summary.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "Supplier GSTIN",
            "minLength": 15,
            "maxLength": 15
          },
          "fp": {
            "type": "string",
            "description": "Financial Period",
            "minLength": 6,
            "maxLength": 6
          },
          "hsn": {
            "type": "object",
            "description": "The hsn value returned by GSTN.",
            "properties": {
              "hsn_b2b": {
                "type": "array",
                "description": "List of HSN data",
                "items": {
                  "type": "object",
                  "properties": {
                    "num": {
                      "type": "integer",
                      "description": "Serial no"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "HSN of Goods or Services",
                      "minLength": 2,
                      "maxLength": 8
                    },
                    "desc": {
                      "type": "string",
                      "description": "HSN Description",
                      "minLength": 1
                    },
                    "user_desc": {
                      "type": "string",
                      "description": "HSN Description",
                      "minLength": 1
                    },
                    "uqc": {
                      "type": "string",
                      "description": "Unit Quantity Code",
                      "minLength": 1
                    },
                    "qty": {
                      "type": "number",
                      "description": "Quantity"
                    },
                    "rt": {
                      "type": "number",
                      "description": "Tax Rate",
                      "minimum": 0,
                      "maximum": 999.99
                    },
                    "txval": {
                      "type": "number",
                      "description": "Total Tax Value"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount"
                    },
                    "camt": {
                      "type": "number",
                      "description": "CGST Amount"
                    },
                    "samt": {
                      "type": "number",
                      "description": "SGST Amount"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "CESS Amount"
                    },
                    "chksum": {
                      "type": "string",
                      "description": "Checksum value",
                      "minLength": 1,
                      "maxLength": 64
                    }
                  }
                }
              },
              "hsn_b2c": {
                "type": "array",
                "description": "List of HSN data",
                "items": {
                  "type": "object",
                  "properties": {
                    "num": {
                      "type": "integer",
                      "description": "Serial no"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "HSN of Goods or Services",
                      "minLength": 2,
                      "maxLength": 8
                    },
                    "desc": {
                      "type": "string",
                      "description": "HSN Description",
                      "minLength": 1
                    },
                    "user_desc": {
                      "type": "string",
                      "description": "HSN Description",
                      "minLength": 1
                    },
                    "uqc": {
                      "type": "string",
                      "description": "Unit Quantity Code",
                      "minLength": 1
                    },
                    "qty": {
                      "type": "number",
                      "description": "Quantity"
                    },
                    "rt": {
                      "type": "number",
                      "description": "Tax Rate",
                      "minimum": 0,
                      "maximum": 999.99
                    },
                    "txval": {
                      "type": "number",
                      "description": "Total Tax Value"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount"
                    },
                    "camt": {
                      "type": "number",
                      "description": "CGST Amount"
                    },
                    "samt": {
                      "type": "number",
                      "description": "SGST Amount"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "CESS Amount"
                    },
                    "chksum": {
                      "type": "string",
                      "description": "Checksum value",
                      "minLength": 1,
                      "maxLength": 64
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetEInvoiceHsnSummarySuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetEInvoiceHsnSummarySuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetEInvoiceHsnSummaryResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetEInvoiceHsnSummarySuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1AtSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 At.",
        "properties": {
          "at": {
            "type": "array",
            "description": "The at value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Checksum Value",
                  "maxLength": 64
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "Item Details",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ad_amt": {
                        "type": "number",
                        "description": "Amount of Advance received"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "rt": {
                        "type": "number",
                        "description": "Rate as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Supply Type of invoice",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                }
              }
            }
          }
        }
      },
      "GetGstr1AtSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1AtSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1AtResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1AtSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1AtaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Ata.",
        "properties": {
          "ata": {
            "type": "array",
            "description": "The ata value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Checksum Value",
                  "maxLength": 64
                },
                "omon": {
                  "type": "string",
                  "description": "Original Month",
                  "minLength": 6,
                  "maxLength": 6
                },
                "pos": {
                  "type": "string",
                  "description": "Original Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Original Supply Type of invoice",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "Item Details",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ad_amt": {
                        "type": "number",
                        "description": "Amount of Advance received"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "rt": {
                        "type": "number",
                        "description": "Rate as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1AtaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1AtaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1AtaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1AtaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1B2bSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 B2b.",
        "properties": {
          "b2b": {
            "type": "array",
            "description": "The b2b value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "cfs": {
                  "type": "string",
                  "description": "GSTR2 filing status of counter party"
                },
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cflag": {
                        "type": "string",
                        "description": "Status of counter party"
                      },
                      "etin": {
                        "type": "string",
                        "description": "Ecom Tin",
                        "minLength": 15,
                        "maxLength": 15
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "Invoice Type"
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "opd": {
                        "type": "string",
                        "description": "Original Period"
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "Source Type of Invoice"
                      },
                      "irn": {
                        "type": "string",
                        "description": "Invoice Referrence Number",
                        "minLength": 64,
                        "maxLength": 64
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "IRN Generated Date",
                        "minLength": 1
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "pos": {
                        "type": "string",
                        "description": "Actual Place of Supply",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "updby": {
                        "type": "string",
                        "description": "Uploaded by"
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      },
                      "flag": {
                        "type": "string",
                        "description": "The flag value returned by GSTN.",
                        "example": "U"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1B2bSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1B2bSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1B2bResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1B2bSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1B2baSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 B2ba.",
        "properties": {
          "b2ba": {
            "type": "array",
            "description": "The b2ba value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cflag": {
                        "type": "string",
                        "description": "Status of counter party"
                      },
                      "etin": {
                        "type": "string",
                        "description": "Ecom Tin",
                        "minLength": 15,
                        "maxLength": 15
                      },
                      "oinum": {
                        "type": "string",
                        "description": "Original Invoice Number",
                        "maxLength": 16
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "Invoice Type"
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "opd": {
                        "type": "string",
                        "description": "Original Period"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "pos": {
                        "type": "string",
                        "description": "Actual Place of Supply",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "updby": {
                        "type": "string",
                        "description": "Uploaded by"
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1B2baSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1B2baSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1B2baResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1B2baSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1B2clSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 B2cl.",
        "properties": {
          "b2cl": {
            "type": "array",
            "description": "The b2cl value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "etin": {
                        "type": "string",
                        "description": "Ecom Gstin",
                        "minLength": 15,
                        "maxLength": 15
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "CBW"
                        ]
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value returned by GSTN."
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                }
              }
            }
          }
        }
      },
      "GetGstr1B2clSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1B2clSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1B2clResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1B2clSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1B2claSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 B2cla.",
        "properties": {
          "b2cla": {
            "type": "array",
            "description": "The b2cla value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "etin": {
                        "type": "string",
                        "description": "Ecom Tin",
                        "minLength": 15,
                        "maxLength": 15
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Invoice Date"
                      },
                      "oinum": {
                        "type": "string",
                        "description": "Original Invoice Number",
                        "maxLength": 16
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "CBW"
                        ]
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value returned by GSTN."
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                }
              }
            }
          }
        }
      },
      "GetGstr1B2claSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1B2claSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1B2claResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1B2claSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1B2csSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 B2cs.",
        "properties": {
          "b2cs": {
            "type": "array",
            "description": "The b2cs value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "etin": {
                  "type": "string",
                  "description": "Ecom Gstin",
                  "minLength": 15,
                  "maxLength": 15
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Supply Type of invoice",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "rt": {
                  "type": "number",
                  "description": "Rate as per invoice"
                },
                "iamt": {
                  "type": "number",
                  "description": "IGST Amount as per invoice"
                },
                "camt": {
                  "type": "number",
                  "description": "CGST Amount as per invoice"
                },
                "samt": {
                  "type": "number",
                  "description": "SGST Amount as per invoice"
                },
                "csamt": {
                  "type": "number",
                  "description": "Cess Amount as per invoice"
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value of Goods or Service as per invoice"
                },
                "typ": {
                  "type": "string",
                  "description": "Type of Ecom/ non-Ecom",
                  "enum": [
                    "E",
                    "OE"
                  ]
                }
              }
            }
          }
        }
      },
      "GetGstr1B2csSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1B2csSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1B2csResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1B2csSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1B2csaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 B2csa.",
        "properties": {
          "b2csa": {
            "type": "array",
            "description": "The b2csa value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum",
                  "minLength": 1,
                  "maxLength": 64
                },
                "omon": {
                  "type": "string",
                  "description": "Original month",
                  "minLength": 6,
                  "maxLength": 6
                },
                "etin": {
                  "type": "string",
                  "description": "Ecom Tin",
                  "minLength": 15,
                  "maxLength": 15
                },
                "flag": {
                  "description": "tax payer action",
                  "type": "string"
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Supply Type of invoice",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "typ": {
                  "type": "string",
                  "description": "The typ value returned by GSTN."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rt": {
                        "type": "number",
                        "description": "Rate as per invoice"
                      },
                      "txval": {
                        "type": "number",
                        "description": "Taxable value of Goods or Service as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      }
                    }
                  }
                }
              }
            }
          },
          "b2cs": {
            "type": "array",
            "description": "The b2cs value returned by GSTN.",
            "example": [
              {
                "camt": 0,
                "chksum": "03b5861d149936885055e3e9fda55f500586296f161ed315ca80eeaf892f5376",
                "csamt": 0,
                "flag": "N",
                "iamt": 242.84,
                "pos": "02",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 1349.1,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "08bbf76f2b2725ea703be7fdf818bcfa0a74560c92017fb8a0042139c19b01de",
                "csamt": 0,
                "flag": "N",
                "iamt": 1907.48,
                "pos": "03",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 10597.1,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "4b00c1b6eb7c54caeebe25d86830a85a549e6ed27928488002699f364b43edd1",
                "csamt": 0,
                "flag": "N",
                "iamt": 287.64,
                "pos": "05",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 1598,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "1dd36a11eaf95a82a200167ebe9b12063e2f05fc1cb7524779c28916608c65f0",
                "csamt": 0,
                "flag": "N",
                "iamt": 3345.84,
                "pos": "06",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 18588,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "6d029bb6914881a25cdaef98b7420b71803ebb8f605c5658360e61576b4a77fd",
                "csamt": 0,
                "flag": "N",
                "iamt": 6459.42,
                "pos": "07",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 35885.6,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "59911d7b4a2a4627fcd5d1335180317cd851e49831281f349ab181a9a33d340b",
                "csamt": 0,
                "flag": "N",
                "iamt": 4084.76,
                "pos": "08",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 22693.1,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "784130cfed4f8da92e22069af09a1a5b93f66dc8144a124189727adb63043806",
                "csamt": 0,
                "flag": "N",
                "iamt": 4911.18,
                "pos": "09",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 27284.3,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "b3459e194ccf04c3174c21fac373e3d6ae115366718578d353496fb1a29f9cc5",
                "csamt": 0,
                "flag": "N",
                "iamt": 5596.26,
                "pos": "10",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 31090.3,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "e966a9ca391654c7720c1fb4c61e0a008d563cb9954522b8d23c78cd379a6199",
                "csamt": 0,
                "flag": "N",
                "iamt": 1691.5,
                "pos": "16",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 9397.2,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "06d6555ecaf839064ed7693ec29caf7dde6ac9eff63f379e9e3c732fbd2a888b",
                "csamt": 0,
                "flag": "N",
                "iamt": 1295.68,
                "pos": "18",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 7198.2,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "e018bc3584cd1c5b89d659c7453bbe1431bb4dcf9649560a9e9b5804b704b4c6",
                "csamt": 0,
                "flag": "N",
                "iamt": 3922.42,
                "pos": "19",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 21791.2,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "e94d9b8b73afe22410abfab15070cfd53d86e19343f1e9d072f5a86c67e97e3c",
                "csamt": 0,
                "flag": "N",
                "iamt": 1925.3,
                "pos": "20",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 10696.1,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "223e7b1453600584fb3bdcf2b0db4b77f1d04950b9905be2fa55632c37948a9e",
                "csamt": 0,
                "flag": "N",
                "iamt": 683.48,
                "pos": "21",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 3797.1,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "52b3c421cb9e4fd5171271c917851c8c29ec2e428109e28651b8051b95250b21",
                "csamt": 0,
                "flag": "N",
                "iamt": 1439.64,
                "pos": "22",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 7998,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "eed1041f6805b483bc21f08a19f5661d08f0424ee6b53165250f4b854262cb7f",
                "csamt": 0,
                "flag": "N",
                "iamt": 1403.48,
                "pos": "23",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 7797.1,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "146cff518909b6a655c3df0147e23f4f6e72b92ac957cc89a95b499dd2e3c5ef",
                "csamt": 0,
                "flag": "N",
                "iamt": 20935.22,
                "pos": "27",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 116306.6,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "ca4785ebd9ba7ba887bc9993b763fc3b093fb0c9b32dea7ff8bc0e124e9d759e",
                "flag": "N",
                "iamt": 137579.65,
                "pos": "29",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 764331.38,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "174be654d2dce1f10a22b9e19e02f45d84fc4f100434a5e2857926ad5d9f348d",
                "csamt": 0,
                "flag": "N",
                "iamt": 485.84,
                "pos": "30",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 2699.1,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "468c8eb9b0a4b4a42f62978e2b7e6b5ca5ae5e6868b10ae6f42f7dd819193d76",
                "csamt": 0,
                "flag": "N",
                "iamt": 2446.76,
                "pos": "32",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 13593.1,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "b070890a7a068320acae854bf6797ee31bde8f928c8d64f3bab687921ca6661a",
                "csamt": 0,
                "flag": "N",
                "iamt": 11569.16,
                "pos": "33",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 64273,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "d0466d478553ef25cea26b18a28a2af83df874a44fa4249fd65a02042269abaf",
                "csamt": 0,
                "flag": "N",
                "iamt": 719.82,
                "pos": "34",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 3999,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "d29c5d2340fe7a2a35324211c16e23c340da857142cadaf64d3783d9449c3e39",
                "csamt": 0,
                "flag": "N",
                "iamt": 9490.96,
                "pos": "36",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 52727.5,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "6763b809b465ce4777b6b75c59b5f347d5be28cb6485ee4222aee9649f3a5bba",
                "csamt": 0,
                "flag": "N",
                "iamt": 10004.82,
                "pos": "37",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 55582.3,
                "typ": "OE"
              },
              {
                "camt": 0,
                "chksum": "d0b4acc3e8881a82477404317c2c196c7dd05677fefb51590666bb98cc6fd406",
                "csamt": 0,
                "flag": "N",
                "iamt": 3094.96,
                "pos": "97",
                "rt": 18,
                "samt": 0,
                "sply_ty": "INTER",
                "txval": 17194.2,
                "typ": "OE"
              },
              {
                "camt": 2284.92,
                "chksum": "946cb435ba9c511832971f21a1325123cc8a5fd0a0981b3175328eec1e874b9d",
                "csamt": 0,
                "flag": "N",
                "iamt": 0,
                "pos": "24",
                "rt": 18,
                "samt": 2284.92,
                "sply_ty": "INTRA",
                "txval": 25388,
                "typ": "OE"
              }
            ],
            "items": {
              "type": "object",
              "properties": {
                "camt": {
                  "type": "number",
                  "description": "The camt value returned by GSTN.",
                  "example": 0
                },
                "chksum": {
                  "type": "string",
                  "description": "The chksum value returned by GSTN.",
                  "example": "03b5861d149936885055e3e9fda55f500586296f161ed315ca80eeaf892f5376"
                },
                "csamt": {
                  "type": "number",
                  "description": "The csamt value returned by GSTN.",
                  "example": 0
                },
                "flag": {
                  "type": "string",
                  "description": "The flag value returned by GSTN.",
                  "example": "N"
                },
                "iamt": {
                  "type": "number",
                  "description": "The iamt value returned by GSTN.",
                  "example": 242.84
                },
                "pos": {
                  "type": "string",
                  "description": "The pos value returned by GSTN.",
                  "example": "02"
                },
                "rt": {
                  "type": "number",
                  "description": "The rt value returned by GSTN.",
                  "example": 18
                },
                "samt": {
                  "type": "number",
                  "description": "The samt value returned by GSTN.",
                  "example": 0
                },
                "sply_ty": {
                  "type": "string",
                  "description": "The sply ty value returned by GSTN.",
                  "example": "INTER"
                },
                "txval": {
                  "type": "number",
                  "description": "The txval value returned by GSTN.",
                  "example": 1349.1
                },
                "typ": {
                  "type": "string",
                  "description": "The typ value returned by GSTN.",
                  "example": "OE"
                }
              }
            }
          }
        }
      },
      "GetGstr1B2csaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1B2csaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1B2csaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1B2csaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1CdnrSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Cdnr.",
        "properties": {
          "cdnr": {
            "type": "array",
            "description": "The cdnr value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "nt": {
                  "type": "array",
                  "description": "The nt value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cflag": {
                        "type": "string",
                        "description": "Status of counter party"
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "p_gst": {
                        "type": "string",
                        "description": "Pre GST Regime Dr./ Cr. Notes",
                        "enum": [
                          "Y",
                          "N"
                        ],
                        "maxLength": 1
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "d_flag": {
                        "type": "string",
                        "description": "delink flag",
                        "enum": [
                          "Y"
                        ]
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "opd": {
                        "type": "string",
                        "description": "Original Period"
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "Source Type of Invoice"
                      },
                      "irn": {
                        "type": "string",
                        "description": "Invoice Referrence Number",
                        "minLength": 64,
                        "maxLength": 64
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "IRN Generated Date",
                        "minLength": 1
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "Credit Note/Debit Note/  Refund Voucher date"
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "Credit note/debit note / Refund Voucher Number",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "ntty": {
                        "type": "string",
                        "description": "Credit/debit note type/ Refund Voucher",
                        "enum": [
                          "C",
                          "R",
                          "D"
                        ]
                      },
                      "updby": {
                        "type": "string",
                        "description": "Uploaded by"
                      },
                      "val": {
                        "type": "number",
                        "description": "Total Note Value"
                      }
                    }
                  }
                },
                "cfs": {
                  "type": "string",
                  "description": "The cfs value returned by GSTN.",
                  "example": "N"
                }
              }
            }
          }
        }
      },
      "GetGstr1CdnrSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1CdnrSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1CdnrResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1CdnrSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1CdnraSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Cdnra.",
        "properties": {
          "cdnra": {
            "type": "array",
            "description": "The cdnra value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "nt": {
                  "type": "array",
                  "description": "The nt value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cflag": {
                        "type": "string",
                        "description": "Status of counter party"
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "p_gst": {
                        "type": "string",
                        "description": "Pre GST Regime Dr./ Cr. Notes",
                        "enum": [
                          "Y",
                          "N"
                        ],
                        "maxLength": 1
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "d_flag": {
                        "type": "string",
                        "description": "delink flag",
                        "enum": [
                          "Y"
                        ]
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "opd": {
                        "type": "string",
                        "description": "Original Period"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "ont_dt": {
                        "type": "string",
                        "description": "Original Credit Note/Debit Note/  Refund Voucher date"
                      },
                      "ont_num": {
                        "type": "string",
                        "description": "Original Credit note/debit note / Refund Voucher Number",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "Credit Note/Debit Note/  Refund Voucher date"
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "Credit note/debit note / Refund Voucher Number",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "ntty": {
                        "type": "string",
                        "description": "Credit/debit note type/ Refund Voucher",
                        "enum": [
                          "C",
                          "R",
                          "D"
                        ]
                      },
                      "updby": {
                        "type": "string",
                        "description": "Uploaded by"
                      },
                      "val": {
                        "type": "number",
                        "description": "Total Note Value"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1CdnraSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1CdnraSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1CdnraResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1CdnraSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1CdnurSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Cdnur.",
        "properties": {
          "cdnur": {
            "type": "array",
            "description": "The cdnur value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "idt": {
                  "type": "string",
                  "description": "Supplier Invoice Date"
                },
                "inum": {
                  "type": "string",
                  "description": "Supplier Invoice Number",
                  "maxLength": 16
                },
                "p_gst": {
                  "type": "string",
                  "description": "Pre GST Regime Dr./ Cr. Notes",
                  "enum": [
                    "Y",
                    "N"
                  ],
                  "maxLength": 1
                },
                "pos": {
                  "type": "string",
                  "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                  "minLength": 2,
                  "maxLength": 2
                },
                "d_flag": {
                  "type": "string",
                  "description": "delink flag",
                  "enum": [
                    "Y"
                  ]
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "srctyp": {
                  "type": "string",
                  "description": "Source Type of Invoice"
                },
                "irn": {
                  "type": "string",
                  "description": "Invoice Referrence Number",
                  "minLength": 64,
                  "maxLength": 64
                },
                "irngendate": {
                  "type": "string",
                  "description": "IRN Generated Date",
                  "minLength": 1
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "itm_det": {
                        "type": "object",
                        "description": "The itm det value returned by GSTN.",
                        "properties": {
                          "rt": {
                            "type": "number",
                            "description": "rate as per invoice"
                          },
                          "iamt": {
                            "type": "number",
                            "description": "IGST Amount as per invoice"
                          },
                          "csamt": {
                            "type": "number",
                            "description": "Cess Amount as per invoice"
                          },
                          "txval": {
                            "type": "number",
                            "description": "Taxable value of Goods or Service as per invoice"
                          }
                        }
                      },
                      "num": {
                        "type": "number",
                        "description": "Serial no"
                      }
                    }
                  }
                },
                "nt_dt": {
                  "type": "string",
                  "description": "Credit Note/Debit Note/  Refund Voucher date"
                },
                "nt_num": {
                  "type": "string",
                  "description": "Credit note/debit note / Refund Voucher Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "ntty": {
                  "type": "string",
                  "description": "Credit/debit note type/ Refund Voucher",
                  "enum": [
                    "C",
                    "R",
                    "D"
                  ]
                },
                "typ": {
                  "type": "string",
                  "description": "Supplier Invoice type EXPWP/ EXPWOP/ B2CL",
                  "enum": [
                    "EXPWP",
                    "EXPWOP",
                    "B2CL"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Total Note Value"
                }
              }
            }
          }
        }
      },
      "GetGstr1CdnurSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1CdnurSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1CdnurResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1CdnurSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1CdnuraSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Cdnura.",
        "properties": {
          "cdnura": {
            "type": "array",
            "description": "The cdnura value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "idt": {
                  "type": "string",
                  "description": "Supplier Invoice Date"
                },
                "inum": {
                  "type": "string",
                  "description": "Supplier Invoice Number",
                  "maxLength": 16
                },
                "p_gst": {
                  "type": "string",
                  "description": "Pre GST Regime Dr./ Cr. Notes",
                  "enum": [
                    "Y",
                    "N"
                  ],
                  "maxLength": 1
                },
                "pos": {
                  "type": "string",
                  "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                  "minLength": 2,
                  "maxLength": 2
                },
                "d_flag": {
                  "type": "string",
                  "description": "delink flag",
                  "enum": [
                    "Y"
                  ]
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "itm_det": {
                        "type": "object",
                        "description": "The itm det value returned by GSTN.",
                        "properties": {
                          "rt": {
                            "type": "number",
                            "description": "rate as per invoice"
                          },
                          "iamt": {
                            "type": "number",
                            "description": "IGST Amount as per invoice"
                          },
                          "csamt": {
                            "type": "number",
                            "description": "Cess Amount as per invoice"
                          },
                          "txval": {
                            "type": "number",
                            "description": "Taxable value of Goods or Service as per invoice"
                          }
                        }
                      },
                      "num": {
                        "type": "number",
                        "description": "Serial no"
                      }
                    }
                  }
                },
                "ont_dt": {
                  "type": "string",
                  "description": "Original Credit Note/Debit Note/  Refund Voucher date"
                },
                "ont_num": {
                  "type": "string",
                  "description": "Original Credit note/debit note / Refund Voucher Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "nt_dt": {
                  "type": "string",
                  "description": "Credit Note/Debit Note/  Refund Voucher date"
                },
                "nt_num": {
                  "type": "string",
                  "description": "Credit note/debit note / Refund Voucher Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "ntty": {
                  "type": "string",
                  "description": "Credit/debit note type/ Refund Voucher",
                  "enum": [
                    "C",
                    "R",
                    "D"
                  ]
                },
                "typ": {
                  "type": "string",
                  "description": "Supplier Invoice type EXPWP/ EXPWOP/ B2CL",
                  "enum": [
                    "EXPWP",
                    "EXPWOP",
                    "B2CL"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Total Note Value"
                }
              }
            }
          }
        }
      },
      "GetGstr1CdnuraSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1CdnuraSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1CdnuraResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1CdnuraSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1DocumentIssuedSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Document Issued.",
        "properties": {
          "doc_issue": {
            "type": "object",
            "description": "The doc issue value returned by GSTN.",
            "properties": {
              "flag": {
                "type": "string",
                "description": "Status of Invoice"
              },
              "chksum": {
                "type": "string",
                "description": "Invoice checksum value",
                "minLength": 1,
                "maxLength": 64
              },
              "doc_det": {
                "type": "array",
                "description": "The doc det value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "doc_num": {
                      "type": "integer",
                      "description": "Document Number",
                      "minimum": 1,
                      "maximum": 12
                    },
                    "docs": {
                      "type": "array",
                      "description": "The docs value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "description": "A GSTN record whose fields vary by return section.",
                        "properties": {
                          "cancel": {
                            "type": "number",
                            "description": "No. of Cancelled document"
                          },
                          "from": {
                            "type": "string",
                            "description": "From serial number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "net_issue": {
                            "type": "number",
                            "description": "net Issue of Document"
                          },
                          "num": {
                            "type": "number",
                            "description": "Serial no"
                          },
                          "to": {
                            "type": "string",
                            "description": "To serial number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "totnum": {
                            "type": "number",
                            "description": "Total number of Documents"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1DocumentIssuedSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1DocumentIssuedSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1DocumentIssuedResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1DocumentIssuedSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstrsGstr1EcomYearMonthSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstrs Gstr1 Ecom Year Month.",
        "properties": {
          "ecom": {
            "$ref": "#/components/schemas/Gstr1EcomData"
          }
        }
      },
      "GetGstrsGstr1EcomYearMonthSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstrsGstr1EcomYearMonthSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstrsGstr1EcomYearMonthResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstrsGstr1EcomYearMonthSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGSTR1ECOMASuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get GSTR1 ECOMA.",
        "properties": {
          "ecoma": {
            "$ref": "#/components/schemas/Gstr1EcomaData"
          }
        }
      },
      "GetGSTR1ECOMASuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGSTR1ECOMASuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGSTR1ECOMAResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGSTR1ECOMASuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1ExpSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Exp.",
        "properties": {
          "exp": {
            "type": "array",
            "description": "The exp value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "exp_typ": {
                  "type": "string",
                  "description": "Export Type : With / Without payment of GST",
                  "enum": [
                    "WPAY",
                    "WOPAY"
                  ]
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "Source Type of Invoice"
                      },
                      "irn": {
                        "type": "string",
                        "description": "Invoice Referrence Number",
                        "minLength": 64,
                        "maxLength": 64
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "IRN Generated Date",
                        "minLength": 1
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "rt": {
                              "type": "number",
                              "description": "rate as per invoice"
                            },
                            "iamt": {
                              "type": "number",
                              "description": "IGST Amount as per invoice"
                            },
                            "csamt": {
                              "type": "number",
                              "description": "Cess Amount as per invoice"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Taxable value of Goods or Service as per invoice"
                            }
                          }
                        }
                      },
                      "sbdt": {
                        "type": "string",
                        "description": "Shipping Bill Date. or Bill of Export Date"
                      },
                      "sbpcode": {
                        "type": "string",
                        "description": "Shipping Port Code",
                        "maxLength": 6
                      },
                      "sbnum": {
                        "type": "string",
                        "description": "Shipping Bill No. or Bill of Export No.",
                        "minLength": 3,
                        "maxLength": 7
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1ExpSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1ExpSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1ExpResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1ExpSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1ExpaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Expa.",
        "properties": {
          "expa": {
            "type": "array",
            "description": "The expa value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "exp_typ": {
                  "type": "string",
                  "description": "Export Type : With / Without payment of GST",
                  "enum": [
                    "WPAY",
                    "WOPAY"
                  ]
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Invoice Date"
                      },
                      "oinum": {
                        "type": "string",
                        "description": "Original Invoice Number",
                        "maxLength": 16
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "rt": {
                              "type": "number",
                              "description": "rate as per invoice"
                            },
                            "iamt": {
                              "type": "number",
                              "description": "IGST Amount as per invoice"
                            },
                            "csamt": {
                              "type": "number",
                              "description": "Cess Amount as per invoice"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Taxable value of Goods or Service as per invoice"
                            }
                          }
                        }
                      },
                      "sbdt": {
                        "type": "string",
                        "description": "Shipping Bill Date. or Bill of Export Date"
                      },
                      "sbpcode": {
                        "type": "string",
                        "description": "Shipping Port Code",
                        "maxLength": 6
                      },
                      "sbnum": {
                        "type": "string",
                        "description": "Shipping Bill No. or Bill of Export No.",
                        "minLength": 3,
                        "maxLength": 7
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1ExpaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1ExpaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1ExpaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1ExpaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1HsnSummarySuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Hsn Summary.",
        "properties": {
          "hsn": {
            "type": "object",
            "description": "The hsn value returned by GSTN.",
            "properties": {
              "flag": {
                "type": "string",
                "description": "Status of Invoice"
              },
              "chksum": {
                "type": "string",
                "description": "Invoice checksum value",
                "minLength": 1,
                "maxLength": 64
              },
              "hsn_b2b": {
                "type": "array",
                "description": "The hsn b2b value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount as per invoice"
                    },
                    "camt": {
                      "type": "number",
                      "description": "CGST Amount as per invoice"
                    },
                    "samt": {
                      "type": "number",
                      "description": "SGST Amount as per invoice"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess Amount as per invoice"
                    },
                    "desc": {
                      "type": "string",
                      "description": "Description of goods sold"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "HSN of Goods or Services as per Invoice line items",
                      "minLength": 2,
                      "maxLength": 8
                    },
                    "num": {
                      "type": "integer",
                      "description": "Serial no"
                    },
                    "qty": {
                      "type": "number",
                      "description": "Quantity of goods sold"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable value of Goods or Service as per invoice"
                    },
                    "uqc": {
                      "type": "string",
                      "description": "UQC (Unit of Measure) of goods sold"
                    },
                    "val": {
                      "type": "number",
                      "description": "Supplier Invoice Value"
                    },
                    "rt": {
                      "type": "number",
                      "description": "Tax Rate"
                    }
                  }
                }
              },
              "hsn_b2c": {
                "type": "array",
                "description": "The hsn b2c value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount as per invoice"
                    },
                    "camt": {
                      "type": "number",
                      "description": "CGST Amount as per invoice"
                    },
                    "samt": {
                      "type": "number",
                      "description": "SGST Amount as per invoice"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess Amount as per invoice"
                    },
                    "desc": {
                      "type": "string",
                      "description": "Description of goods sold"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "HSN of Goods or Services as per Invoice line items",
                      "minLength": 2,
                      "maxLength": 8
                    },
                    "num": {
                      "type": "integer",
                      "description": "Serial no"
                    },
                    "qty": {
                      "type": "number",
                      "description": "Quantity of goods sold"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable value of Goods or Service as per invoice"
                    },
                    "uqc": {
                      "type": "string",
                      "description": "UQC (Unit of Measure) of goods sold"
                    },
                    "val": {
                      "type": "number",
                      "description": "Supplier Invoice Value"
                    },
                    "rt": {
                      "type": "number",
                      "description": "Tax Rate"
                    }
                  }
                }
              },
              "data": {
                "type": "array",
                "description": "The data value returned by GSTN.",
                "example": [
                  {
                    "camt": 2285,
                    "desc": "Individual tax preparation and planning services",
                    "hsn_sc": "998232",
                    "iamt": 237746,
                    "num": 1,
                    "qty": 0,
                    "rt": 18,
                    "samt": 2285,
                    "txval": 1346201,
                    "uqc": "NA"
                  }
                ],
                "items": {
                  "type": "object",
                  "properties": {
                    "camt": {
                      "type": "number",
                      "description": "The camt value returned by GSTN.",
                      "example": 2285
                    },
                    "desc": {
                      "type": "string",
                      "description": "The desc value returned by GSTN.",
                      "example": "Individual tax preparation and planning services"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "The hsn sc value returned by GSTN.",
                      "example": "998232"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "The iamt value returned by GSTN.",
                      "example": 237746
                    },
                    "num": {
                      "type": "number",
                      "description": "The num value returned by GSTN.",
                      "example": 1
                    },
                    "qty": {
                      "type": "number",
                      "description": "The qty value returned by GSTN.",
                      "example": 0
                    },
                    "rt": {
                      "type": "number",
                      "description": "The rt value returned by GSTN.",
                      "example": 18
                    },
                    "samt": {
                      "type": "number",
                      "description": "The samt value returned by GSTN.",
                      "example": 2285
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value returned by GSTN.",
                      "example": 1346201
                    },
                    "uqc": {
                      "type": "string",
                      "description": "The uqc value returned by GSTN.",
                      "example": "NA"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1HsnSummarySuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1HsnSummarySuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1HsnSummaryResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1HsnSummarySuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1NilSuppliesSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Nil Supplies.",
        "properties": {
          "nil": {
            "type": "object",
            "description": "The nil value returned by GSTN.",
            "properties": {
              "flag": {
                "type": "string",
                "description": "Status of Invoice"
              },
              "chksum": {
                "type": "string",
                "description": "Invoice checksum value",
                "minLength": 1,
                "maxLength": 64
              },
              "inv": {
                "type": "array",
                "description": "The inv value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "expt_amt": {
                      "type": "number",
                      "description": "Total Exempted outward supplies"
                    },
                    "ngsup_amt": {
                      "type": "number",
                      "description": "Total Non GST outward supplies"
                    },
                    "nil_amt": {
                      "type": "number",
                      "description": "Total Nil rated outward supplies"
                    },
                    "sply_ty": {
                      "type": "string",
                      "description": "Supply Type",
                      "enum": [
                        "INTRB2B",
                        "INTRB2C",
                        "INTRAB2B",
                        "INTRAB2C"
                      ]
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1NilSuppliesSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1NilSuppliesSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1NilSuppliesResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1NilSuppliesSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstrsGstr1SupecoYearMonthSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstrs Gstr1 Supeco Year Month.",
        "properties": {
          "supeco": {
            "type": "object",
            "description": "The supeco value returned by GSTN.",
            "properties": {
              "clttx": {
                "type": "array",
                "description": "The clttx value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "etin": {
                      "type": "string",
                      "description": "Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "suppval": {
                      "type": "number",
                      "description": "Ecom supply value",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "igst": {
                      "type": "number",
                      "description": "IGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cgst": {
                      "type": "number",
                      "description": "CGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "sgst": {
                      "type": "number",
                      "description": "SGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cess": {
                      "type": "number",
                      "description": "Cess amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "flag": {
                      "type": "string",
                      "description": "Taxpayer action",
                      "enum": [
                        "N",
                        "E",
                        "D"
                      ]
                    }
                  }
                }
              },
              "paytx": {
                "type": "array",
                "description": "The paytx value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "etin": {
                      "type": "string",
                      "description": "Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "suppval": {
                      "type": "number",
                      "description": "Ecom supply value",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "igst": {
                      "type": "number",
                      "description": "IGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cgst": {
                      "type": "number",
                      "description": "CGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "sgst": {
                      "type": "number",
                      "description": "SGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cess": {
                      "type": "number",
                      "description": "Cess amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "flag": {
                      "type": "string",
                      "description": "Taxpayer action",
                      "enum": [
                        "N",
                        "E",
                        "D"
                      ]
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstrsGstr1SupecoYearMonthSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstrsGstr1SupecoYearMonthSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstrsGstr1SupecoYearMonthResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstrsGstr1SupecoYearMonthSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstrsGstr1SupecoaYearMonthSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstrs Gstr1 Supecoa Year Month.",
        "properties": {
          "supecoa": {
            "type": "object",
            "description": "The supecoa value returned by GSTN.",
            "properties": {
              "clttxa": {
                "type": "array",
                "description": "The clttxa value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "oetin": {
                      "type": "string",
                      "description": "Original Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "etin": {
                      "type": "string",
                      "description": "Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "suppval": {
                      "type": "number",
                      "description": "Ecom supply value",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "igst": {
                      "type": "number",
                      "description": "IGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cgst": {
                      "type": "number",
                      "description": "CGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "sgst": {
                      "type": "number",
                      "description": "SGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cess": {
                      "type": "number",
                      "description": "Cess amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "flag": {
                      "type": "string",
                      "description": "Taxpayer action",
                      "enum": [
                        "N",
                        "E",
                        "D"
                      ]
                    },
                    "omon": {
                      "type": "string",
                      "description": "Original Month",
                      "minLength": 1
                    }
                  }
                }
              },
              "paytxa": {
                "type": "array",
                "description": "The paytxa value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "oetin": {
                      "type": "string",
                      "description": "Original Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "etin": {
                      "type": "string",
                      "description": "Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "suppval": {
                      "type": "number",
                      "description": "Ecom supply value",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "igst": {
                      "type": "number",
                      "description": "IGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cgst": {
                      "type": "number",
                      "description": "CGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "sgst": {
                      "type": "number",
                      "description": "SGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cess": {
                      "type": "number",
                      "description": "Cess amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "flag": {
                      "type": "string",
                      "description": "Taxpayer action",
                      "enum": [
                        "N",
                        "E",
                        "D"
                      ]
                    },
                    "omon": {
                      "type": "string",
                      "description": "Original Month",
                      "minLength": 1
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstrsGstr1SupecoaYearMonthSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstrsGstr1SupecoaYearMonthSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstrsGstr1SupecoaYearMonthResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstrsGstr1SupecoaYearMonthSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstrsGstr1TxpYearMonthSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstrs Gstr1 Txp Year Month.",
        "properties": {
          "txpd": {
            "type": "array",
            "description": "The txpd value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ad_amt": {
                        "type": "number",
                        "description": "Advance to be adjusted"
                      },
                      "rt": {
                        "type": "number",
                        "description": "rate as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Nature of Supply",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                }
              }
            }
          }
        }
      },
      "GetGstrsGstr1TxpYearMonthSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstrsGstr1TxpYearMonthSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstrsGstr1TxpYearMonthResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstrsGstr1TxpYearMonthSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstrsGstr1TxpaYearMonthSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstrs Gstr1 Txpa Year Month.",
        "properties": {
          "txpda": {
            "type": "array",
            "description": "The txpda value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "omon": {
                  "type": "string",
                  "description": "Original month",
                  "minLength": 6,
                  "maxLength": 6
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ad_amt": {
                        "type": "number",
                        "description": "Advance to be adjusted"
                      },
                      "rt": {
                        "type": "number",
                        "description": "rate as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Original Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Original Nature of Supply",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                }
              }
            }
          }
        }
      },
      "GetGstrsGstr1TxpaYearMonthSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstrsGstr1TxpaYearMonthSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstrsGstr1TxpaYearMonthResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstrsGstr1TxpaYearMonthSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1SummarySuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1 Summary.",
        "properties": {
          "chksum": {
            "type": "string",
            "description": "The chksum value returned by GSTN.",
            "example": "dacc6e65dd4342f36377e25d6408a6c59cdd518e9512bb84b1f4103bfa42a26c"
          },
          "gstin": {
            "type": "string",
            "description": "The gstin value returned by GSTN.",
            "example": "29AAACQ3770E000"
          },
          "newSumFlag": {
            "type": "boolean",
            "description": "The new Sum Flag value returned by GSTN.",
            "example": true
          },
          "ret_period": {
            "type": "string",
            "description": "The ret period value returned by GSTN.",
            "example": "122023"
          },
          "sec_sum": {
            "type": "array",
            "description": "The sec sum value returned by GSTN.",
            "example": [
              {
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "AT",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "ATA",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "f6b1125afa380198fe78e5f741bd4df63b398aec472967e5522b0f161febf1c0",
                "sec_nm": "B2B",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 2222.3,
                "ttl_rec": 4,
                "ttl_sgst": 0,
                "ttl_tax": 12346.1,
                "ttl_val": 14568.4
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                "sec_nm": "B2BA",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2BA_4A",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2BA_4B",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2BA_6C",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2BA_SEZWOP",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2BA_SEZWP",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "740822e0837d6181a9174db0189955f9989411432abc5bb9d079e70d21064caa",
                "sec_nm": "B2B_4A",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 2222.3,
                "ttl_rec": 4,
                "ttl_sgst": 0,
                "ttl_tax": 12346.1,
                "ttl_val": 14568.4
              },
              {
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2B_4B",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2B_6C",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2B_SEZWOP",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2B_SEZWP",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2CL",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2CLA",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "61bfe658d7e4a48f4e3d96c390961095747975e63c9d31a164b5da878d47842a",
                "sec_nm": "B2CS",
                "ttl_cess": 0,
                "ttl_cgst": 2284.92,
                "ttl_igst": 235524.11,
                "ttl_rec": 25,
                "ttl_sgst": 2284.92,
                "ttl_tax": 1333854.58,
                "ttl_val": 1573948.53
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "B2CSA",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "e085d73dee2753101a57f3a21ea28a6de1d5a148662b326d9626864fd2a1df40",
                "sec_nm": "HSN",
                "ttl_cess": 0,
                "ttl_cgst": 2285,
                "ttl_igst": 237746,
                "ttl_rec": 1,
                "ttl_sgst": 2285,
                "ttl_tax": 1346201,
                "ttl_val": 0
              },
              {
                "chksum": "d3bdc0c5ea608c90b800d6c1d3a64a2437a9843d391ca36c1f463e7c44bf45ce",
                "sec_nm": "NIL",
                "ttl_expt_amt": 0,
                "ttl_ngsup_amt": 0,
                "ttl_nilsup_amt": 0,
                "ttl_rec": 1
              },
              {
                "chksum": "dacc6e65dd4342f36377e25d6408a6c59cdd518e9512bb84b1f4103bfa42a26c",
                "sec_nm": "TTL_LIAB",
                "ttl_cess": 0,
                "ttl_cgst": 2284.92,
                "ttl_igst": 237746.41,
                "ttl_rec": 32,
                "ttl_sgst": 2284.92,
                "ttl_tax": 1346200.68,
                "ttl_val": 1588516.93
              },
              {
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "TXPD",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sec_nm": "TXPDA",
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "021eb7b414ffe7c5ede410deeb7cc0f23a6b9e2e2f0b784e1ff968d2981b4351",
                "net_doc_issued": 853,
                "sec_nm": "DOC_ISSUE",
                "ttl_doc_cancelled": 0,
                "ttl_doc_issued": 853,
                "ttl_rec": 2
              },
              {
                "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                "sec_nm": "CDNR",
                "sub_sections": [
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNR_4A",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  },
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNR_4B",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  },
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNR_6C",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  },
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNR_SEZWOP",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  },
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNR_SEZWP",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  }
                ],
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "063a5b1a3bbc23d11761b156c446a285d7703be484a276a0a32e29bda10d4f8a",
                "sec_nm": "CDNRA",
                "sub_sections": [
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNRA_4A",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  },
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNRA_4B",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  },
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNRA_6C",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  },
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNRA_SEZWOP",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  },
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "sec_nm": "CDNRA_SEZWP",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0
                  }
                ],
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                "sec_nm": "CDNUR",
                "sub_sections": [
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "B2CL"
                  },
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "EXPWOP"
                  },
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "EXPWP"
                  }
                ],
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "74313561d1897af3dc03f4fae174960d28968f92b49230523faca462b848db60",
                "sec_nm": "CDNURA",
                "sub_sections": [
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "B2CL"
                  },
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "EXPWOP"
                  },
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "EXPWP"
                  }
                ],
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                "sec_nm": "EXP",
                "sub_sections": [
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "EXPWOP"
                  },
                  {
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "EXPWP"
                  }
                ],
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              },
              {
                "act_cess": 0,
                "act_cgst": 0,
                "act_igst": 0,
                "act_sgst": 0,
                "act_tax": 0,
                "act_val": 0,
                "chksum": "3b7546ed79e3e5a7907381b093c5a182cbf364c5dd0443dfa956c8cca271cc33",
                "sec_nm": "EXPA",
                "sub_sections": [
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "EXPWOP"
                  },
                  {
                    "act_cess": 0,
                    "act_cgst": 0,
                    "act_igst": 0,
                    "act_sgst": 0,
                    "act_tax": 0,
                    "act_val": 0,
                    "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                    "ttl_cess": 0,
                    "ttl_cgst": 0,
                    "ttl_igst": 0,
                    "ttl_rec": 0,
                    "ttl_sgst": 0,
                    "ttl_tax": 0,
                    "ttl_val": 0,
                    "typ": "EXPWP"
                  }
                ],
                "ttl_cess": 0,
                "ttl_cgst": 0,
                "ttl_igst": 0,
                "ttl_rec": 0,
                "ttl_sgst": 0,
                "ttl_tax": 0,
                "ttl_val": 0
              }
            ],
            "items": {
              "type": "object",
              "properties": {
                "act_cess": {
                  "type": "number",
                  "description": "The act cess value returned by GSTN.",
                  "example": 0
                },
                "act_cgst": {
                  "type": "number",
                  "description": "The act cgst value returned by GSTN.",
                  "example": 0
                },
                "act_igst": {
                  "type": "number",
                  "description": "The act igst value returned by GSTN.",
                  "example": 0
                },
                "act_sgst": {
                  "type": "number",
                  "description": "The act sgst value returned by GSTN.",
                  "example": 0
                },
                "act_tax": {
                  "type": "number",
                  "description": "The act tax value returned by GSTN.",
                  "example": 0
                },
                "act_val": {
                  "type": "number",
                  "description": "The act val value returned by GSTN.",
                  "example": 0
                },
                "chksum": {
                  "type": "string",
                  "description": "The chksum value returned by GSTN.",
                  "example": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
                },
                "net_doc_issued": {
                  "type": "number",
                  "description": "The net doc issued value returned by GSTN.",
                  "example": 853
                },
                "sec_nm": {
                  "type": "string",
                  "description": "The sec nm value returned by GSTN.",
                  "example": "AT"
                },
                "sub_sections": {
                  "type": "array",
                  "description": "The sub sections value returned by GSTN.",
                  "example": [
                    {
                      "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                      "sec_nm": "CDNR_4A",
                      "ttl_cess": 0,
                      "ttl_cgst": 0,
                      "ttl_igst": 0,
                      "ttl_rec": 0,
                      "ttl_sgst": 0,
                      "ttl_tax": 0,
                      "ttl_val": 0
                    },
                    {
                      "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                      "sec_nm": "CDNR_4B",
                      "ttl_cess": 0,
                      "ttl_cgst": 0,
                      "ttl_igst": 0,
                      "ttl_rec": 0,
                      "ttl_sgst": 0,
                      "ttl_tax": 0,
                      "ttl_val": 0
                    },
                    {
                      "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                      "sec_nm": "CDNR_6C",
                      "ttl_cess": 0,
                      "ttl_cgst": 0,
                      "ttl_igst": 0,
                      "ttl_rec": 0,
                      "ttl_sgst": 0,
                      "ttl_tax": 0,
                      "ttl_val": 0
                    },
                    {
                      "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                      "sec_nm": "CDNR_SEZWOP",
                      "ttl_cess": 0,
                      "ttl_cgst": 0,
                      "ttl_igst": 0,
                      "ttl_rec": 0,
                      "ttl_sgst": 0,
                      "ttl_tax": 0,
                      "ttl_val": 0
                    },
                    {
                      "chksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                      "sec_nm": "CDNR_SEZWP",
                      "ttl_cess": 0,
                      "ttl_cgst": 0,
                      "ttl_igst": 0,
                      "ttl_rec": 0,
                      "ttl_sgst": 0,
                      "ttl_tax": 0,
                      "ttl_val": 0
                    }
                  ],
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "The chksum value returned by GSTN.",
                        "example": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
                      },
                      "sec_nm": {
                        "type": "string",
                        "description": "The sec nm value returned by GSTN.",
                        "example": "CDNR_4A"
                      },
                      "ttl_cess": {
                        "type": "number",
                        "description": "The ttl cess value returned by GSTN.",
                        "example": 0
                      },
                      "ttl_cgst": {
                        "type": "number",
                        "description": "The ttl cgst value returned by GSTN.",
                        "example": 0
                      },
                      "ttl_igst": {
                        "type": "number",
                        "description": "The ttl igst value returned by GSTN.",
                        "example": 0
                      },
                      "ttl_rec": {
                        "type": "number",
                        "description": "The ttl rec value returned by GSTN.",
                        "example": 0
                      },
                      "ttl_sgst": {
                        "type": "number",
                        "description": "The ttl sgst value returned by GSTN.",
                        "example": 0
                      },
                      "ttl_tax": {
                        "type": "number",
                        "description": "The ttl tax value returned by GSTN.",
                        "example": 0
                      },
                      "ttl_val": {
                        "type": "number",
                        "description": "The ttl val value returned by GSTN.",
                        "example": 0
                      },
                      "act_cess": {
                        "type": "integer",
                        "description": "The act cess value returned by GSTN."
                      },
                      "act_cgst": {
                        "type": "integer",
                        "description": "The act cgst value returned by GSTN."
                      },
                      "act_igst": {
                        "type": "integer",
                        "description": "The act igst value returned by GSTN."
                      },
                      "act_sgst": {
                        "type": "integer",
                        "description": "The act sgst value returned by GSTN."
                      },
                      "act_tax": {
                        "type": "integer",
                        "description": "The act tax value returned by GSTN."
                      },
                      "act_val": {
                        "type": "integer",
                        "description": "The act val value returned by GSTN."
                      },
                      "typ": {
                        "type": "string",
                        "description": "The typ value returned by GSTN."
                      },
                      "cpty_sum": {
                        "type": "array",
                        "description": "A list that can be empty; record fields depend on the return section.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "maxLength": 15,
                                  "minLength": 15,
                                  "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                },
                                {
                                  "type": "string",
                                  "maxLength": 15,
                                  "minLength": 15,
                                  "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                },
                                {
                                  "type": "string",
                                  "maxLength": 15,
                                  "minLength": 15,
                                  "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                },
                                {
                                  "type": "string",
                                  "maxLength": 15,
                                  "minLength": 15,
                                  "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                }
                              ],
                              "description": "CTIN of the taxpayer"
                            },
                            "chksum": {
                              "description": "Invoice Check sum value",
                              "type": "string"
                            },
                            "ttl_rec": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "total number of records"
                            },
                            "ttl_val": {
                              "type": "number",
                              "description": "total record value"
                            },
                            "ttl_igst": {
                              "type": "number",
                              "description": "total IGST amount"
                            },
                            "ttl_sgst": {
                              "type": "number",
                              "description": "total SGST amount"
                            },
                            "ttl_cgst": {
                              "type": "number",
                              "description": "total CGST amount"
                            },
                            "ttl_cess": {
                              "type": "number",
                              "description": "total cess amount"
                            },
                            "ttl_tax": {
                              "type": "number",
                              "description": " total taxable value of records"
                            },
                            "state_cd": {
                              "type": "string"
                            },
                            "act_tax": {
                              "type": "number",
                              "description": "actual taxable value of records"
                            },
                            "act_igst": {
                              "type": "number",
                              "description": "actual IGST amount"
                            },
                            "act_sgst": {
                              "type": "number",
                              "description": "actual SGST amount"
                            },
                            "act_cgst": {
                              "type": "number",
                              "description": "actual CGST amount"
                            },
                            "act_val": {
                              "type": "number",
                              "description": "actual records value"
                            },
                            "act_cess": {
                              "type": "number",
                              "description": "actual cess amount"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "ttl_cess": {
                  "type": "number",
                  "description": "The ttl cess value returned by GSTN.",
                  "example": 0
                },
                "ttl_cgst": {
                  "type": "number",
                  "description": "The ttl cgst value returned by GSTN.",
                  "example": 0
                },
                "ttl_doc_cancelled": {
                  "type": "number",
                  "description": "The ttl doc cancelled value returned by GSTN.",
                  "example": 0
                },
                "ttl_doc_issued": {
                  "type": "number",
                  "description": "The ttl doc issued value returned by GSTN.",
                  "example": 853
                },
                "ttl_expt_amt": {
                  "type": "number",
                  "description": "The ttl expt amt value returned by GSTN.",
                  "example": 0
                },
                "ttl_igst": {
                  "type": "number",
                  "description": "The ttl igst value returned by GSTN.",
                  "example": 0
                },
                "ttl_ngsup_amt": {
                  "type": "number",
                  "description": "The ttl ngsup amt value returned by GSTN.",
                  "example": 0
                },
                "ttl_nilsup_amt": {
                  "type": "number",
                  "description": "The ttl nilsup amt value returned by GSTN.",
                  "example": 0
                },
                "ttl_rec": {
                  "type": "number",
                  "description": "The ttl rec value returned by GSTN.",
                  "example": 0
                },
                "ttl_sgst": {
                  "type": "number",
                  "description": "The ttl sgst value returned by GSTN.",
                  "example": 0
                },
                "ttl_tax": {
                  "type": "number",
                  "description": "The ttl tax value returned by GSTN.",
                  "example": 0
                },
                "ttl_val": {
                  "type": "number",
                  "description": "The ttl val value returned by GSTN.",
                  "example": 0
                },
                "cpty_sum": {
                  "type": "array",
                  "description": "The cpty sum value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "description": "A GSTN record whose fields vary by return section.",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "The chksum value returned by GSTN."
                      },
                      "ctin": {
                        "type": "string",
                        "description": "The ctin value returned by GSTN."
                      },
                      "ttl_cess": {
                        "type": "integer",
                        "description": "The ttl cess value returned by GSTN."
                      },
                      "ttl_cgst": {
                        "type": "number",
                        "description": "The ttl cgst value returned by GSTN."
                      },
                      "ttl_igst": {
                        "type": "number",
                        "description": "The ttl igst value returned by GSTN."
                      },
                      "ttl_rec": {
                        "type": "integer",
                        "description": "The ttl rec value returned by GSTN."
                      },
                      "ttl_sgst": {
                        "type": "number",
                        "description": "The ttl sgst value returned by GSTN."
                      },
                      "ttl_tax": {
                        "type": "number",
                        "description": "The ttl tax value returned by GSTN."
                      },
                      "ttl_val": {
                        "type": "number",
                        "description": "The ttl val value returned by GSTN."
                      },
                      "state_cd": {
                        "type": "string",
                        "description": "The state cd value returned by GSTN."
                      }
                    }
                  }
                }
              }
            }
          },
          "smryTyp": {
            "type": "string",
            "description": "The smry Typ value returned by GSTN.",
            "example": "L"
          }
        }
      },
      "GetGstr1SummarySuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1SummarySuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1SummaryResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1SummarySuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "SaveGstr1SuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Save Gstr1.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "dfb8f5a1-04c3-4f95-bb60-e13ce9b7221c"
          }
        }
      },
      "SaveGstr1SuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/SaveGstr1SuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "SaveGstr1Response": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/SaveGstr1SuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "SaveGstr1Request": {
        "type": "object",
        "description": "Sample Payload. Clear to manually input values",
        "properties": {
          "fp": {
            "type": "string",
            "description": "The fp value provided in the request."
          },
          "gt": {
            "type": "number",
            "description": "The gt value provided in the request."
          },
          "cur_gt": {
            "type": "number",
            "description": "The cur gt value provided in the request."
          },
          "b2b": {
            "type": "array",
            "description": "The b2b value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "The ctin value provided in the request."
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "inum": {
                        "type": "string",
                        "description": "The inum value provided in the request."
                      },
                      "idt": {
                        "type": "string",
                        "description": "The idt value provided in the request."
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value provided in the request."
                      },
                      "pos": {
                        "type": "string",
                        "description": "The pos value provided in the request."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "The rchrg value provided in the request."
                      },
                      "etin": {
                        "type": "string",
                        "description": "The etin value provided in the request."
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "The inv typ value provided in the request."
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "The diff percent value provided in the request."
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value provided in the request.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "The num value provided in the request."
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value provided in the request.",
                              "properties": {
                                "rt": {
                                  "type": "integer",
                                  "description": "The rt value provided in the request."
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "The txval value provided in the request."
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "The iamt value provided in the request."
                                },
                                "csamt": {
                                  "type": "integer",
                                  "description": "The csamt value provided in the request."
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "The samt value provided in the request."
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "The camt value provided in the request."
                                }
                              }
                            }
                          }
                        }
                      },
                      "flag": {
                        "type": "string",
                        "description": "The flag value provided in the request."
                      },
                      "irn": {
                        "type": "string",
                        "description": "The irn value provided in the request."
                      },
                      "updby": {
                        "type": "string",
                        "description": "The updby value provided in the request."
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "The irngendate value provided in the request."
                      },
                      "cflag": {
                        "type": "string",
                        "description": "The cflag value provided in the request."
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "The srctyp value provided in the request."
                      },
                      "chksum": {
                        "type": "string",
                        "description": "The chksum value provided in the request."
                      }
                    }
                  }
                },
                "cfs": {
                  "type": "string",
                  "description": "The cfs value provided in the request."
                }
              }
            }
          },
          "b2ba": {
            "type": "array",
            "description": "The b2ba value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "The ctin value provided in the request."
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "oinum": {
                        "type": "string",
                        "description": "The oinum value provided in the request."
                      },
                      "oidt": {
                        "type": "string",
                        "description": "The oidt value provided in the request."
                      },
                      "inum": {
                        "type": "string",
                        "description": "The inum value provided in the request."
                      },
                      "idt": {
                        "type": "string",
                        "description": "The idt value provided in the request."
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value provided in the request."
                      },
                      "pos": {
                        "type": "string",
                        "description": "The pos value provided in the request."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "The rchrg value provided in the request."
                      },
                      "etin": {
                        "type": "string",
                        "description": "The etin value provided in the request."
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "The inv typ value provided in the request."
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "The diff percent value provided in the request."
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value provided in the request.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "The num value provided in the request."
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value provided in the request.",
                              "properties": {
                                "rt": {
                                  "type": "integer",
                                  "description": "The rt value provided in the request."
                                },
                                "txval": {
                                  "type": "integer",
                                  "description": "The txval value provided in the request."
                                },
                                "iamt": {
                                  "type": "integer",
                                  "description": "The iamt value provided in the request."
                                },
                                "camt": {
                                  "type": "integer",
                                  "description": "The camt value provided in the request."
                                },
                                "samt": {
                                  "type": "integer",
                                  "description": "The samt value provided in the request."
                                },
                                "csamt": {
                                  "type": "integer",
                                  "description": "The csamt value provided in the request."
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "b2cl": {
            "type": "array",
            "description": "The b2cl value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "inum": {
                        "type": "string",
                        "description": "The inum value provided in the request."
                      },
                      "idt": {
                        "type": "string",
                        "description": "The idt value provided in the request."
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value provided in the request."
                      },
                      "etin": {
                        "type": "string",
                        "description": "The etin value provided in the request."
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "The diff percent value provided in the request."
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value provided in the request.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "The num value provided in the request."
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value provided in the request.",
                              "properties": {
                                "rt": {
                                  "type": "integer",
                                  "description": "The rt value provided in the request."
                                },
                                "txval": {
                                  "type": "integer",
                                  "description": "The txval value provided in the request."
                                },
                                "iamt": {
                                  "type": "integer",
                                  "description": "The iamt value provided in the request."
                                },
                                "csamt": {
                                  "type": "integer",
                                  "description": "The csamt value provided in the request."
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "b2cla": {
            "type": "array",
            "description": "The b2cla value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "oinum": {
                        "type": "string",
                        "description": "The oinum value provided in the request."
                      },
                      "oidt": {
                        "type": "string",
                        "description": "The oidt value provided in the request."
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "The diff percent value provided in the request."
                      },
                      "inum": {
                        "type": "string",
                        "description": "The inum value provided in the request."
                      },
                      "idt": {
                        "type": "string",
                        "description": "The idt value provided in the request."
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value provided in the request."
                      },
                      "etin": {
                        "type": "string",
                        "description": "The etin value provided in the request."
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value provided in the request.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "The num value provided in the request."
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value provided in the request.",
                              "properties": {
                                "rt": {
                                  "type": "integer",
                                  "description": "The rt value provided in the request."
                                },
                                "txval": {
                                  "type": "integer",
                                  "description": "The txval value provided in the request."
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "The iamt value provided in the request."
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "cdnr": {
            "type": "array",
            "description": "The cdnr value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "The ctin value provided in the request."
                },
                "nt": {
                  "type": "array",
                  "description": "The nt value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ntty": {
                        "type": "string",
                        "description": "The ntty value provided in the request."
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "The nt num value provided in the request."
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "The nt dt value provided in the request."
                      },
                      "pos": {
                        "type": "string",
                        "description": "The pos value provided in the request."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "The rchrg value provided in the request."
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "The inv typ value provided in the request."
                      },
                      "val": {
                        "type": "integer",
                        "description": "The val value provided in the request."
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "The diff percent value provided in the request."
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value provided in the request.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "The num value provided in the request."
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value provided in the request.",
                              "properties": {
                                "rt": {
                                  "type": "integer",
                                  "description": "The rt value provided in the request."
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "The txval value provided in the request."
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "The iamt value provided in the request."
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "The csamt value provided in the request."
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "cdnra": {
            "type": "array",
            "description": "The cdnra value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "The ctin value provided in the request."
                },
                "nt": {
                  "type": "array",
                  "description": "The nt value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ntty": {
                        "type": "string",
                        "description": "The ntty value provided in the request."
                      },
                      "ont_num": {
                        "type": "string",
                        "description": "The ont num value provided in the request."
                      },
                      "ont_dt": {
                        "type": "string",
                        "description": "The ont dt value provided in the request."
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "The nt num value provided in the request."
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "The nt dt value provided in the request."
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "The diff percent value provided in the request."
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "The inv typ value provided in the request."
                      },
                      "pos": {
                        "type": "string",
                        "description": "The pos value provided in the request."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "The rchrg value provided in the request."
                      },
                      "val": {
                        "type": "integer",
                        "description": "The val value provided in the request."
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value provided in the request.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "The num value provided in the request."
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value provided in the request.",
                              "properties": {
                                "rt": {
                                  "type": "integer",
                                  "description": "The rt value provided in the request."
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "The txval value provided in the request."
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "The iamt value provided in the request."
                                },
                                "camt": {
                                  "type": "integer",
                                  "description": "The camt value provided in the request."
                                },
                                "samt": {
                                  "type": "integer",
                                  "description": "The samt value provided in the request."
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "The csamt value provided in the request."
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "b2cs": {
            "type": "array",
            "description": "The b2cs value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "sply_ty": {
                  "type": "string",
                  "description": "The sply ty value provided in the request."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "The diff percent value provided in the request."
                },
                "rt": {
                  "type": "integer",
                  "description": "The rt value provided in the request."
                },
                "typ": {
                  "type": "string",
                  "description": "The typ value provided in the request."
                },
                "etin": {
                  "type": "string",
                  "description": "The etin value provided in the request."
                },
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "txval": {
                  "type": "integer",
                  "description": "The txval value provided in the request."
                },
                "iamt": {
                  "type": "integer",
                  "description": "The iamt value provided in the request."
                },
                "csamt": {
                  "type": "integer",
                  "description": "The csamt value provided in the request."
                }
              }
            }
          },
          "b2csa": {
            "type": "array",
            "description": "The b2csa value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "omon": {
                  "type": "string",
                  "description": "The omon value provided in the request."
                },
                "sply_ty": {
                  "type": "string",
                  "description": "The sply ty value provided in the request."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "The diff percent value provided in the request."
                },
                "typ": {
                  "type": "string",
                  "description": "The typ value provided in the request."
                },
                "etin": {
                  "type": "string",
                  "description": "The etin value provided in the request."
                },
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rt": {
                        "type": "integer",
                        "description": "The rt value provided in the request."
                      },
                      "txval": {
                        "type": "integer",
                        "description": "The txval value provided in the request."
                      },
                      "iamt": {
                        "type": "integer",
                        "description": "The iamt value provided in the request."
                      },
                      "camt": {
                        "type": "integer",
                        "description": "The camt value provided in the request."
                      },
                      "samt": {
                        "type": "integer",
                        "description": "The samt value provided in the request."
                      },
                      "csamt": {
                        "type": "integer",
                        "description": "The csamt value provided in the request."
                      }
                    }
                  }
                }
              }
            }
          },
          "exp": {
            "type": "array",
            "description": "The exp value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "exp_typ": {
                  "type": "string",
                  "description": "The exp typ value provided in the request."
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "inum": {
                        "type": "string",
                        "description": "The inum value provided in the request."
                      },
                      "idt": {
                        "type": "string",
                        "description": "The idt value provided in the request."
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value provided in the request."
                      },
                      "sbpcode": {
                        "type": "string",
                        "description": "The sbpcode value provided in the request."
                      },
                      "sbnum": {
                        "type": "string",
                        "description": "The sbnum value provided in the request."
                      },
                      "sbdt": {
                        "type": "string",
                        "description": "The sbdt value provided in the request."
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value provided in the request.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "txval": {
                              "type": "integer",
                              "description": "The txval value provided in the request."
                            },
                            "rt": {
                              "type": "integer",
                              "description": "The rt value provided in the request."
                            },
                            "iamt": {
                              "type": "number",
                              "description": "The iamt value provided in the request."
                            },
                            "csamt": {
                              "type": "integer",
                              "description": "The csamt value provided in the request."
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "expa": {
            "type": "array",
            "description": "The expa value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "exp_typ": {
                  "type": "string",
                  "description": "The exp typ value provided in the request."
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "oinum": {
                        "type": "string",
                        "description": "The oinum value provided in the request."
                      },
                      "oidt": {
                        "type": "string",
                        "description": "The oidt value provided in the request."
                      },
                      "inum": {
                        "type": "string",
                        "description": "The inum value provided in the request."
                      },
                      "idt": {
                        "type": "string",
                        "description": "The idt value provided in the request."
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value provided in the request."
                      },
                      "sbpcode": {
                        "type": "string",
                        "description": "The sbpcode value provided in the request."
                      },
                      "sbnum": {
                        "type": "string",
                        "description": "The sbnum value provided in the request."
                      },
                      "sbdt": {
                        "type": "string",
                        "description": "The sbdt value provided in the request."
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value provided in the request.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "txval": {
                              "type": "integer",
                              "description": "The txval value provided in the request."
                            },
                            "rt": {
                              "type": "integer",
                              "description": "The rt value provided in the request."
                            },
                            "iamt": {
                              "type": "number",
                              "description": "The iamt value provided in the request."
                            },
                            "csamt": {
                              "type": "integer",
                              "description": "The csamt value provided in the request."
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "hsn": {
            "type": "object",
            "description": "The hsn value provided in the request.",
            "properties": {
              "data": {
                "type": "array",
                "description": "The data value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "num": {
                      "type": "integer",
                      "description": "The num value provided in the request."
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "The hsn sc value provided in the request."
                    },
                    "desc": {
                      "type": "string",
                      "description": "The desc value provided in the request."
                    },
                    "uqc": {
                      "type": "string",
                      "description": "The uqc value provided in the request."
                    },
                    "qty": {
                      "type": "number",
                      "description": "The qty value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "number",
                      "description": "The iamt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    },
                    "rt": {
                      "type": "number",
                      "description": "The rt value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "nil": {
            "type": "object",
            "description": "The nil value provided in the request.",
            "properties": {
              "inv": {
                "type": "array",
                "description": "The inv value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "sply_ty": {
                      "type": "string",
                      "description": "The sply ty value provided in the request."
                    },
                    "expt_amt": {
                      "type": "number",
                      "description": "The expt amt value provided in the request."
                    },
                    "nil_amt": {
                      "type": "number",
                      "description": "The nil amt value provided in the request."
                    },
                    "ngsup_amt": {
                      "type": "number",
                      "description": "The ngsup amt value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "txpd": {
            "type": "array",
            "description": "The txpd value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "sply_ty": {
                  "type": "string",
                  "description": "The sply ty value provided in the request."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "The diff percent value provided in the request."
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rt": {
                        "type": "integer",
                        "description": "The rt value provided in the request."
                      },
                      "ad_amt": {
                        "type": "integer",
                        "description": "The ad amt value provided in the request."
                      },
                      "iamt": {
                        "type": "integer",
                        "description": "The iamt value provided in the request."
                      },
                      "csamt": {
                        "type": "integer",
                        "description": "The csamt value provided in the request."
                      }
                    }
                  }
                }
              }
            }
          },
          "txpda": {
            "type": "array",
            "description": "The txpda value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "omon": {
                  "type": "string",
                  "description": "The omon value provided in the request."
                },
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "sply_ty": {
                  "type": "string",
                  "description": "The sply ty value provided in the request."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "The diff percent value provided in the request."
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rt": {
                        "type": "integer",
                        "description": "The rt value provided in the request."
                      },
                      "ad_amt": {
                        "type": "integer",
                        "description": "The ad amt value provided in the request."
                      },
                      "iamt": {
                        "type": "integer",
                        "description": "The iamt value provided in the request."
                      },
                      "csamt": {
                        "type": "integer",
                        "description": "The csamt value provided in the request."
                      }
                    }
                  }
                }
              }
            }
          },
          "at": {
            "type": "array",
            "description": "The at value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "sply_ty": {
                  "type": "string",
                  "description": "The sply ty value provided in the request."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "The diff percent value provided in the request."
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rt": {
                        "type": "integer",
                        "description": "The rt value provided in the request."
                      },
                      "ad_amt": {
                        "type": "integer",
                        "description": "The ad amt value provided in the request."
                      },
                      "iamt": {
                        "type": "integer",
                        "description": "The iamt value provided in the request."
                      },
                      "csamt": {
                        "type": "integer",
                        "description": "The csamt value provided in the request."
                      }
                    }
                  }
                }
              }
            }
          },
          "ata": {
            "type": "array",
            "description": "The ata value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "omon": {
                  "type": "string",
                  "description": "The omon value provided in the request."
                },
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "sply_ty": {
                  "type": "string",
                  "description": "The sply ty value provided in the request."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "The diff percent value provided in the request."
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rt": {
                        "type": "integer",
                        "description": "The rt value provided in the request."
                      },
                      "ad_amt": {
                        "type": "integer",
                        "description": "The ad amt value provided in the request."
                      },
                      "iamt": {
                        "type": "integer",
                        "description": "The iamt value provided in the request."
                      },
                      "csamt": {
                        "type": "integer",
                        "description": "The csamt value provided in the request."
                      }
                    }
                  }
                }
              }
            }
          },
          "doc_issue": {
            "type": "object",
            "description": "The doc issue value provided in the request.",
            "properties": {
              "doc_det": {
                "type": "array",
                "description": "The doc det value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "doc_num": {
                      "type": "integer",
                      "description": "The doc num value provided in the request."
                    },
                    "docs": {
                      "type": "array",
                      "description": "The docs value provided in the request.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "num": {
                            "type": "integer",
                            "description": "The num value provided in the request."
                          },
                          "from": {
                            "type": "string",
                            "description": "The from value provided in the request."
                          },
                          "to": {
                            "type": "string",
                            "description": "The to value provided in the request."
                          },
                          "totnum": {
                            "type": "integer",
                            "description": "The totnum value provided in the request."
                          },
                          "cancel": {
                            "type": "integer",
                            "description": "The cancel value provided in the request."
                          },
                          "net_issue": {
                            "type": "integer",
                            "description": "The net issue value provided in the request."
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "cdnur": {
            "type": "array",
            "description": "The cdnur value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "typ": {
                  "type": "string",
                  "description": "The typ value provided in the request."
                },
                "ntty": {
                  "type": "string",
                  "description": "The ntty value provided in the request."
                },
                "nt_num": {
                  "type": "string",
                  "description": "The nt num value provided in the request."
                },
                "nt_dt": {
                  "type": "string",
                  "description": "The nt dt value provided in the request."
                },
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "val": {
                  "type": "integer",
                  "description": "The val value provided in the request."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "The diff percent value provided in the request."
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "num": {
                        "type": "integer",
                        "description": "The num value provided in the request."
                      },
                      "itm_det": {
                        "type": "object",
                        "description": "The itm det value provided in the request.",
                        "properties": {
                          "rt": {
                            "type": "integer",
                            "description": "The rt value provided in the request."
                          },
                          "txval": {
                            "type": "number",
                            "description": "The txval value provided in the request."
                          },
                          "iamt": {
                            "type": "number",
                            "description": "The iamt value provided in the request."
                          },
                          "csamt": {
                            "type": "number",
                            "description": "The csamt value provided in the request."
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "cdnura": {
            "type": "array",
            "description": "The cdnura value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "ont_num": {
                  "type": "string",
                  "description": "The ont num value provided in the request."
                },
                "ont_dt": {
                  "type": "string",
                  "description": "The ont dt value provided in the request."
                },
                "nt_num": {
                  "type": "string",
                  "description": "The nt num value provided in the request."
                },
                "nt_dt": {
                  "type": "string",
                  "description": "The nt dt value provided in the request."
                },
                "ntty": {
                  "type": "string",
                  "description": "The ntty value provided in the request."
                },
                "typ": {
                  "type": "string",
                  "description": "The typ value provided in the request."
                },
                "pos": {
                  "type": "string",
                  "description": "The pos value provided in the request."
                },
                "val": {
                  "type": "integer",
                  "description": "The val value provided in the request."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "The diff percent value provided in the request."
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "num": {
                        "type": "integer",
                        "description": "The num value provided in the request."
                      },
                      "itm_det": {
                        "type": "object",
                        "description": "The itm det value provided in the request.",
                        "properties": {
                          "rt": {
                            "type": "integer",
                            "description": "The rt value provided in the request."
                          },
                          "txval": {
                            "type": "number",
                            "description": "The txval value provided in the request."
                          },
                          "iamt": {
                            "type": "number",
                            "description": "The iamt value provided in the request."
                          },
                          "csamt": {
                            "type": "number",
                            "description": "The csamt value provided in the request."
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "FileGstr1SuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for File Gstr1.",
        "properties": {
          "ack_num": {
            "type": "string",
            "description": "The ack num value returned by GSTN.",
            "example": "ASDFSDF1241343"
          }
        }
      },
      "FileGstr1SuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/FileGstr1SuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "FileGstr1Response": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/FileGstr1SuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "FileGstr1Request": {
        "type": "object",
        "description": "File GSTR-1",
        "properties": {
          "newSumFlag": {
            "type": "boolean",
            "description": "The new Sum Flag value provided in the request."
          },
          "sec_sum": {
            "type": "array",
            "description": "The sec sum value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "ttl_igst": {
                  "type": "number",
                  "description": "The ttl igst value provided in the request."
                },
                "sec_nm": {
                  "type": "string",
                  "description": "The sec nm value provided in the request."
                },
                "ttl_cgst": {
                  "type": "number",
                  "description": "The ttl cgst value provided in the request."
                },
                "ttl_cess": {
                  "type": "number",
                  "description": "The ttl cess value provided in the request."
                },
                "ttl_tax": {
                  "type": "number",
                  "description": "The ttl tax value provided in the request."
                },
                "ttl_val": {
                  "type": "number",
                  "description": "The ttl val value provided in the request."
                },
                "chksum": {
                  "type": "string",
                  "description": "The chksum value provided in the request."
                },
                "ttl_rec": {
                  "type": "integer",
                  "description": "The ttl rec value provided in the request."
                },
                "ttl_sgst": {
                  "type": "number",
                  "description": "The ttl sgst value provided in the request."
                },
                "act_cgst": {
                  "type": "number",
                  "description": "The act cgst value provided in the request."
                },
                "act_tax": {
                  "type": "integer",
                  "description": "The act tax value provided in the request."
                },
                "act_val": {
                  "type": "number",
                  "description": "The act val value provided in the request."
                },
                "act_igst": {
                  "type": "number",
                  "description": "The act igst value provided in the request."
                },
                "act_cess": {
                  "type": "integer",
                  "description": "The act cess value provided in the request."
                },
                "act_sgst": {
                  "type": "number",
                  "description": "The act sgst value provided in the request."
                },
                "ttl_nilsup_amt": {
                  "type": "number",
                  "description": "The ttl nilsup amt value provided in the request."
                },
                "ttl_expt_amt": {
                  "type": "number",
                  "description": "The ttl expt amt value provided in the request."
                },
                "ttl_ngsup_amt": {
                  "type": "number",
                  "description": "The ttl ngsup amt value provided in the request."
                },
                "ttl_doc_issued": {
                  "type": "integer",
                  "description": "The ttl doc issued value provided in the request."
                },
                "net_doc_issued": {
                  "type": "integer",
                  "description": "The net doc issued value provided in the request."
                },
                "ttl_doc_cancelled": {
                  "type": "integer",
                  "description": "The ttl doc cancelled value provided in the request."
                },
                "sub_sections": {
                  "type": "array",
                  "description": "The sub sections value provided in the request.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ttl_igst": {
                        "type": "number",
                        "description": "The ttl igst value provided in the request."
                      },
                      "sec_nm": {
                        "type": "string",
                        "description": "The sec nm value provided in the request."
                      },
                      "ttl_cgst": {
                        "type": "number",
                        "description": "The ttl cgst value provided in the request."
                      },
                      "ttl_cess": {
                        "type": "number",
                        "description": "The ttl cess value provided in the request."
                      },
                      "ttl_tax": {
                        "type": "number",
                        "description": "The ttl tax value provided in the request."
                      },
                      "ttl_val": {
                        "type": "number",
                        "description": "The ttl val value provided in the request."
                      },
                      "chksum": {
                        "type": "string",
                        "description": "The chksum value provided in the request."
                      },
                      "ttl_rec": {
                        "type": "integer",
                        "description": "The ttl rec value provided in the request."
                      },
                      "ttl_sgst": {
                        "type": "number",
                        "description": "The ttl sgst value provided in the request."
                      },
                      "act_cgst": {
                        "type": "integer",
                        "description": "The act cgst value provided in the request."
                      },
                      "act_tax": {
                        "type": "integer",
                        "description": "The act tax value provided in the request."
                      },
                      "act_val": {
                        "type": "integer",
                        "description": "The act val value provided in the request."
                      },
                      "act_igst": {
                        "type": "integer",
                        "description": "The act igst value provided in the request."
                      },
                      "act_cess": {
                        "type": "integer",
                        "description": "The act cess value provided in the request."
                      },
                      "act_sgst": {
                        "type": "integer",
                        "description": "The act sgst value provided in the request."
                      },
                      "typ": {
                        "type": "string",
                        "description": "The typ value provided in the request."
                      }
                    }
                  }
                }
              }
            }
          },
          "chksum": {
            "type": "string",
            "description": "The chksum value provided in the request."
          }
        }
      },
      "ResetGstr1SuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Reset Gstr1.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "456a8aa4-10f0-4af5-9819-d82a9c9bd771"
          }
        }
      },
      "ResetGstr1SuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/ResetGstr1SuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "ResetGstr1Response": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/ResetGstr1SuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aAtSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a At.",
        "properties": {
          "at": {
            "type": "array",
            "description": "The at value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Checksum Value",
                  "maxLength": 64
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "Item Details",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ad_amt": {
                        "type": "number",
                        "description": "Amount of Advance received"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "rt": {
                        "type": "number",
                        "description": "Rate as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Supply Type of invoice",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                }
              }
            }
          }
        }
      },
      "GetGstr1aAtSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aAtSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aAtResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aAtSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aAtaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Ata.",
        "properties": {
          "ata": {
            "type": "array",
            "description": "The ata value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Checksum Value",
                  "maxLength": 64
                },
                "omon": {
                  "type": "string",
                  "description": "Original Month",
                  "minLength": 6,
                  "maxLength": 6
                },
                "pos": {
                  "type": "string",
                  "description": "Original Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Original Supply Type of invoice",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "Item Details",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ad_amt": {
                        "type": "number",
                        "description": "Amount of Advance received"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "rt": {
                        "type": "number",
                        "description": "Rate as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aAtaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aAtaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aAtaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aAtaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aB2bSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a B2b.",
        "properties": {
          "b2b": {
            "type": "array",
            "description": "The b2b value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "cfs": {
                  "type": "string",
                  "description": "GSTR2 filing status of counter party"
                },
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cflag": {
                        "type": "string",
                        "description": "Status of counter party"
                      },
                      "etin": {
                        "type": "string",
                        "description": "Ecom Tin",
                        "minLength": 15,
                        "maxLength": 15
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "Invoice Type"
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "opd": {
                        "type": "string",
                        "description": "Original Period"
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "Source Type of Invoice"
                      },
                      "irn": {
                        "type": "string",
                        "description": "Invoice Referrence Number",
                        "minLength": 64,
                        "maxLength": 64
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "IRN Generated Date",
                        "minLength": 1
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "pos": {
                        "type": "string",
                        "description": "Actual Place of Supply",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "updby": {
                        "type": "string",
                        "description": "Uploaded by"
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aB2bSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aB2bSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aB2bResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aB2bSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aB2baSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a B2ba.",
        "properties": {
          "b2ba": {
            "type": "array",
            "description": "The b2ba value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cflag": {
                        "type": "string",
                        "description": "Status of counter party"
                      },
                      "etin": {
                        "type": "string",
                        "description": "Ecom Tin",
                        "minLength": 15,
                        "maxLength": 15
                      },
                      "oinum": {
                        "type": "string",
                        "description": "Original Invoice Number",
                        "maxLength": 16
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "Invoice Type"
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "opd": {
                        "type": "string",
                        "description": "Original Period"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                },
                                "csamt": {
                                  "type": "integer",
                                  "description": "The csamt value returned by GSTN."
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "pos": {
                        "type": "string",
                        "description": "Actual Place of Supply",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "updby": {
                        "type": "string",
                        "description": "Uploaded by"
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      }
                    }
                  }
                },
                "cfs": {
                  "type": "string",
                  "description": "The cfs value returned by GSTN."
                }
              }
            }
          }
        }
      },
      "GetGstr1aB2baSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aB2baSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aB2baResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aB2baSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aB2clSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a B2cl.",
        "properties": {
          "b2cl": {
            "type": "array",
            "description": "The b2cl value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "etin": {
                        "type": "string",
                        "description": "Ecom Gstin",
                        "minLength": 15,
                        "maxLength": 15
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "CBW"
                        ]
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value returned by GSTN."
                      },
                      "flag": {
                        "type": "string",
                        "description": "The flag value returned by GSTN."
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                }
              }
            }
          }
        }
      },
      "GetGstr1aB2clSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aB2clSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aB2clResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aB2clSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aB2claSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a B2cla.",
        "properties": {
          "b2cla": {
            "type": "array",
            "description": "The b2cla value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "etin": {
                        "type": "string",
                        "description": "Ecom Tin",
                        "minLength": 15,
                        "maxLength": 15
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Invoice Date"
                      },
                      "oinum": {
                        "type": "string",
                        "description": "Original Invoice Number",
                        "maxLength": 16
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "CBW"
                        ]
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "val": {
                        "type": "number",
                        "description": "The val value returned by GSTN."
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                }
              }
            }
          }
        }
      },
      "GetGstr1aB2claSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aB2claSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aB2claResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aB2claSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aB2csSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a B2cs.",
        "properties": {
          "b2cs": {
            "type": "array",
            "description": "The b2cs value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "etin": {
                  "type": "string",
                  "description": "Ecom Gstin",
                  "minLength": 15,
                  "maxLength": 15
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Supply Type of invoice",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "rt": {
                  "type": "number",
                  "description": "Rate as per invoice"
                },
                "iamt": {
                  "type": "number",
                  "description": "IGST Amount as per invoice"
                },
                "camt": {
                  "type": "number",
                  "description": "CGST Amount as per invoice"
                },
                "samt": {
                  "type": "number",
                  "description": "SGST Amount as per invoice"
                },
                "csamt": {
                  "type": "number",
                  "description": "Cess Amount as per invoice"
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value of Goods or Service as per invoice"
                },
                "typ": {
                  "type": "string",
                  "description": "Type of Ecom/ non-Ecom",
                  "enum": [
                    "E",
                    "OE"
                  ]
                }
              }
            }
          }
        }
      },
      "GetGstr1aB2csSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aB2csSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aB2csResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aB2csSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aB2csaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a B2csa.",
        "properties": {
          "b2csa": {
            "type": "array",
            "description": "The b2csa value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum",
                  "minLength": 1,
                  "maxLength": 64
                },
                "omon": {
                  "type": "string",
                  "description": "Original month",
                  "minLength": 6,
                  "maxLength": 6
                },
                "etin": {
                  "type": "string",
                  "description": "Ecom Tin",
                  "minLength": 15,
                  "maxLength": 15
                },
                "flag": {
                  "description": "tax payer action",
                  "type": "string"
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Supply Type of invoice",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "typ": {
                  "type": "string",
                  "description": "The typ value returned by GSTN."
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rt": {
                        "type": "number",
                        "description": "Rate as per invoice"
                      },
                      "txval": {
                        "type": "number",
                        "description": "Taxable value of Goods or Service as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aB2csaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aB2csaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aB2csaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aB2csaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aCdnrSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Cdnr.",
        "properties": {
          "cdnr": {
            "type": "array",
            "description": "The cdnr value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "nt": {
                  "type": "array",
                  "description": "The nt value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cflag": {
                        "type": "string",
                        "description": "Status of counter party"
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "p_gst": {
                        "type": "string",
                        "description": "Pre GST Regime Dr./ Cr. Notes",
                        "enum": [
                          "Y",
                          "N"
                        ],
                        "maxLength": 1
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "d_flag": {
                        "type": "string",
                        "description": "delink flag",
                        "enum": [
                          "Y"
                        ]
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "opd": {
                        "type": "string",
                        "description": "Original Period"
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "Source Type of Invoice"
                      },
                      "irn": {
                        "type": "string",
                        "description": "Invoice Referrence Number",
                        "minLength": 64,
                        "maxLength": 64
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "IRN Generated Date",
                        "minLength": 1
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "Credit Note/Debit Note/  Refund Voucher date"
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "Credit note/debit note / Refund Voucher Number",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "ntty": {
                        "type": "string",
                        "description": "Credit/debit note type/ Refund Voucher",
                        "enum": [
                          "C",
                          "R",
                          "D"
                        ]
                      },
                      "updby": {
                        "type": "string",
                        "description": "Uploaded by"
                      },
                      "val": {
                        "type": "number",
                        "description": "Total Note Value"
                      }
                    }
                  }
                },
                "cfs": {
                  "type": "string",
                  "description": "The cfs value returned by GSTN."
                }
              }
            }
          }
        }
      },
      "GetGstr1aCdnrSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aCdnrSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aCdnrResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aCdnrSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aCdnraSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Cdnra.",
        "properties": {
          "cdnra": {
            "type": "array",
            "description": "The cdnra value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "nt": {
                  "type": "array",
                  "description": "The nt value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cflag": {
                        "type": "string",
                        "description": "Status of counter party"
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "p_gst": {
                        "type": "string",
                        "description": "Pre GST Regime Dr./ Cr. Notes",
                        "enum": [
                          "Y",
                          "N"
                        ],
                        "maxLength": 1
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "d_flag": {
                        "type": "string",
                        "description": "delink flag",
                        "enum": [
                          "Y"
                        ]
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "opd": {
                        "type": "string",
                        "description": "Original Period"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "rt": {
                                  "type": "number",
                                  "description": "rate as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST Amount as per invoice"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "CGST Amount as per invoice"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST Amount as per invoice"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "Cess Amount as per invoice"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                }
                              }
                            },
                            "num": {
                              "type": "number",
                              "description": "Serial no"
                            }
                          }
                        }
                      },
                      "ont_dt": {
                        "type": "string",
                        "description": "Original Credit Note/Debit Note/  Refund Voucher date"
                      },
                      "ont_num": {
                        "type": "string",
                        "description": "Original Credit note/debit note / Refund Voucher Number",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "Credit Note/Debit Note/  Refund Voucher date"
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "Credit note/debit note / Refund Voucher Number",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "ntty": {
                        "type": "string",
                        "description": "Credit/debit note type/ Refund Voucher",
                        "enum": [
                          "C",
                          "R",
                          "D"
                        ]
                      },
                      "updby": {
                        "type": "string",
                        "description": "Uploaded by"
                      },
                      "val": {
                        "type": "number",
                        "description": "Total Note Value"
                      }
                    }
                  }
                },
                "cfs": {
                  "type": "string",
                  "description": "The cfs value returned by GSTN."
                }
              }
            }
          }
        }
      },
      "GetGstr1aCdnraSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aCdnraSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aCdnraResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aCdnraSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aCdnurSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Cdnur.",
        "properties": {
          "cdnur": {
            "type": "array",
            "description": "The cdnur value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "idt": {
                  "type": "string",
                  "description": "Supplier Invoice Date"
                },
                "inum": {
                  "type": "string",
                  "description": "Supplier Invoice Number",
                  "maxLength": 16
                },
                "p_gst": {
                  "type": "string",
                  "description": "Pre GST Regime Dr./ Cr. Notes",
                  "enum": [
                    "Y",
                    "N"
                  ],
                  "maxLength": 1
                },
                "pos": {
                  "type": "string",
                  "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                  "minLength": 2,
                  "maxLength": 2
                },
                "d_flag": {
                  "type": "string",
                  "description": "delink flag",
                  "enum": [
                    "Y"
                  ]
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "srctyp": {
                  "type": "string",
                  "description": "Source Type of Invoice"
                },
                "irn": {
                  "type": "string",
                  "description": "Invoice Referrence Number",
                  "minLength": 64,
                  "maxLength": 64
                },
                "irngendate": {
                  "type": "string",
                  "description": "IRN Generated Date",
                  "minLength": 1
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "itm_det": {
                        "type": "object",
                        "description": "The itm det value returned by GSTN.",
                        "properties": {
                          "rt": {
                            "type": "number",
                            "description": "rate as per invoice"
                          },
                          "iamt": {
                            "type": "number",
                            "description": "IGST Amount as per invoice"
                          },
                          "csamt": {
                            "type": "number",
                            "description": "Cess Amount as per invoice"
                          },
                          "txval": {
                            "type": "number",
                            "description": "Taxable value of Goods or Service as per invoice"
                          }
                        }
                      },
                      "num": {
                        "type": "number",
                        "description": "Serial no"
                      }
                    }
                  }
                },
                "nt_dt": {
                  "type": "string",
                  "description": "Credit Note/Debit Note/  Refund Voucher date"
                },
                "nt_num": {
                  "type": "string",
                  "description": "Credit note/debit note / Refund Voucher Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "ntty": {
                  "type": "string",
                  "description": "Credit/debit note type/ Refund Voucher",
                  "enum": [
                    "C",
                    "R",
                    "D"
                  ]
                },
                "typ": {
                  "type": "string",
                  "description": "Supplier Invoice type EXPWP/ EXPWOP/ B2CL",
                  "enum": [
                    "EXPWP",
                    "EXPWOP",
                    "B2CL"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Total Note Value"
                }
              }
            }
          }
        }
      },
      "GetGstr1aCdnurSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aCdnurSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aCdnurResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aCdnurSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aCdnuraSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Cdnura.",
        "properties": {
          "cdnura": {
            "type": "array",
            "description": "The cdnura value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "idt": {
                  "type": "string",
                  "description": "Supplier Invoice Date"
                },
                "inum": {
                  "type": "string",
                  "description": "Supplier Invoice Number",
                  "maxLength": 16
                },
                "p_gst": {
                  "type": "string",
                  "description": "Pre GST Regime Dr./ Cr. Notes",
                  "enum": [
                    "Y",
                    "N"
                  ],
                  "maxLength": 1
                },
                "pos": {
                  "type": "string",
                  "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                  "minLength": 2,
                  "maxLength": 2
                },
                "d_flag": {
                  "type": "string",
                  "description": "delink flag",
                  "enum": [
                    "Y"
                  ]
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "itm_det": {
                        "type": "object",
                        "description": "The itm det value returned by GSTN.",
                        "properties": {
                          "rt": {
                            "type": "number",
                            "description": "rate as per invoice"
                          },
                          "iamt": {
                            "type": "number",
                            "description": "IGST Amount as per invoice"
                          },
                          "csamt": {
                            "type": "number",
                            "description": "Cess Amount as per invoice"
                          },
                          "txval": {
                            "type": "number",
                            "description": "Taxable value of Goods or Service as per invoice"
                          }
                        }
                      },
                      "num": {
                        "type": "number",
                        "description": "Serial no"
                      }
                    }
                  }
                },
                "ont_dt": {
                  "type": "string",
                  "description": "Original Credit Note/Debit Note/  Refund Voucher date"
                },
                "ont_num": {
                  "type": "string",
                  "description": "Original Credit note/debit note / Refund Voucher Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "nt_dt": {
                  "type": "string",
                  "description": "Credit Note/Debit Note/  Refund Voucher date"
                },
                "nt_num": {
                  "type": "string",
                  "description": "Credit note/debit note / Refund Voucher Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "ntty": {
                  "type": "string",
                  "description": "Credit/debit note type/ Refund Voucher",
                  "enum": [
                    "C",
                    "R",
                    "D"
                  ]
                },
                "typ": {
                  "type": "string",
                  "description": "Supplier Invoice type EXPWP/ EXPWOP/ B2CL",
                  "enum": [
                    "EXPWP",
                    "EXPWOP",
                    "B2CL"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Total Note Value"
                }
              }
            }
          }
        }
      },
      "GetGstr1aCdnuraSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aCdnuraSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aCdnuraResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aCdnuraSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aDeclarationDetailsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Declaration Details.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "The gstin value returned by GSTN.",
            "minLength": 15,
            "maxLength": 15
          },
          "ret_period": {
            "type": "string",
            "description": "Return Period",
            "minLength": 1
          },
          "r2bStaleStatus": {
            "type": "string",
            "description": "GSTR2B Stale Status",
            "enum": [
              "S",
              "N"
            ]
          },
          "declared_tmstmp": {
            "type": "string",
            "description": "Declaration Time Stamp"
          },
          "chksum": {
            "type": "string",
            "description": "CheckSum of the payload",
            "maxLength": 64
          },
          "liab": {
            "type": "object",
            "description": "The liab value returned by GSTN.",
            "properties": {
              "gstr1Liab": {
                "type": "object",
                "description": "The gstr1 Liab value returned by GSTN.",
                "properties": {
                  "sec_nm": {
                    "type": "string",
                    "description": "GSTR1 Liability Section Name",
                    "enum": [
                      "TTL_LIAB_GSTR1",
                      "TTL_LIAB_GSTR1Q"
                    ]
                  },
                  "chksum": {
                    "type": "string",
                    "description": "GSTR1 Liablity Check sum value"
                  },
                  "ttl_tax": {
                    "type": "number",
                    "description": "Total taxable value of records"
                  },
                  "ttl_igst": {
                    "type": "number",
                    "description": "Total IGST"
                  },
                  "ttl_sgst": {
                    "type": "number",
                    "description": "Total SGST"
                  },
                  "ttl_cgst": {
                    "type": "number",
                    "description": "Total CGST"
                  },
                  "ttl_cess": {
                    "type": "number",
                    "description": "Total CESS"
                  },
                  "ttl_val": {
                    "type": "number",
                    "description": "Total Value"
                  }
                }
              },
              "iffLiab": {
                "type": "array",
                "description": "The iff Liab value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "iff_ret_period": {
                      "type": "string",
                      "description": "IFF Return Period",
                      "minLength": 1
                    },
                    "sec_nm": {
                      "type": "string",
                      "description": "IFF Liability Section Name",
                      "enum": [
                        "TTL_LIAB_IFF"
                      ]
                    },
                    "chksum": {
                      "type": "string",
                      "description": "IFF Liablity Check sum value"
                    },
                    "ttl_tax": {
                      "type": "number",
                      "description": "Total taxable value of records"
                    },
                    "ttl_igst": {
                      "type": "number",
                      "description": "Total IGST"
                    },
                    "ttl_sgst": {
                      "type": "number",
                      "description": "Total SGST"
                    },
                    "ttl_cgst": {
                      "type": "number",
                      "description": "Total CGST"
                    },
                    "ttl_cess": {
                      "type": "number",
                      "description": "Total CESS"
                    },
                    "ttl_val": {
                      "type": "number",
                      "description": "Total Value"
                    }
                  }
                }
              },
              "gstr1aLiab": {
                "type": "object",
                "description": "The gstr1a Liab value returned by GSTN.",
                "properties": {
                  "sec_nm": {
                    "type": "string",
                    "description": "GSTR1A Liability Section Name",
                    "enum": [
                      "TTL_LIAB_GSTR1A",
                      "TTL_LIAB_GSTR1AQ"
                    ]
                  },
                  "chksum": {
                    "type": "string",
                    "description": "GSTR1 Liablity Check sum value"
                  },
                  "ttl_tax": {
                    "type": "number",
                    "description": "Total taxable value of records"
                  },
                  "ttl_igst": {
                    "type": "number",
                    "description": "Total IGST"
                  },
                  "ttl_sgst": {
                    "type": "number",
                    "description": "Total SGST"
                  },
                  "ttl_cgst": {
                    "type": "number",
                    "description": "Total CGST"
                  },
                  "ttl_cess": {
                    "type": "number",
                    "description": "Total CESS"
                  },
                  "ttl_val": {
                    "type": "number",
                    "description": "Total Value"
                  }
                }
              }
            }
          },
          "bal": {
            "type": "object",
            "description": "The bal value returned by GSTN.",
            "properties": {
              "cash_bal": {
                "type": "object",
                "description": "Cash Balance details",
                "properties": {
                  "chksum": {
                    "type": "string",
                    "description": "Checksum of the object",
                    "maxLength": 64
                  },
                  "igst_bal": {
                    "type": "number",
                    "description": "Total IGST Available"
                  },
                  "cgst_bal": {
                    "type": "number",
                    "description": "Total CGST Available"
                  },
                  "sgst_bal": {
                    "type": "number",
                    "description": "Total SGST Available"
                  },
                  "cess_bal": {
                    "type": "number",
                    "description": "Total CESS Available"
                  },
                  "ttl_bal": {
                    "type": "number",
                    "description": "Total Balance Available"
                  }
                }
              },
              "itc_bal": {
                "type": "object",
                "description": "ITC Available details",
                "properties": {
                  "chksum": {
                    "type": "string",
                    "description": "Checksum of the object",
                    "maxLength": 64
                  },
                  "igst_bal": {
                    "type": "number",
                    "description": "Total IGST Available"
                  },
                  "cgst_bal": {
                    "type": "number",
                    "description": "Total CGST Available"
                  },
                  "sgst_bal": {
                    "type": "number",
                    "description": "Total SGST Available"
                  },
                  "cess_bal": {
                    "type": "number",
                    "description": "Total CESS Available"
                  },
                  "ttl_bal": {
                    "type": "number",
                    "description": "Total Balance Available"
                  }
                }
              },
              "gstr2b_itc_bal": {
                "type": "object",
                "description": "ITC Available as per GSTR2B details",
                "properties": {
                  "chksum": {
                    "type": "string",
                    "description": "Checksum of the object",
                    "maxLength": 64
                  },
                  "igst_bal": {
                    "type": "number",
                    "description": "Total IGST Available"
                  },
                  "cgst_bal": {
                    "type": "number",
                    "description": "Total CGST Available"
                  },
                  "sgst_bal": {
                    "type": "number",
                    "description": "Total SGST Available"
                  },
                  "cess_bal": {
                    "type": "number",
                    "description": "Total CESS Available"
                  },
                  "ttl_bal": {
                    "type": "number",
                    "description": "Total Balance Available"
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aDeclarationDetailsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aDeclarationDetailsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aDeclarationDetailsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aDeclarationDetailsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aDocumentIssuedSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Document Issued.",
        "properties": {
          "doc_issue": {
            "type": "object",
            "description": "The doc issue value returned by GSTN.",
            "properties": {
              "flag": {
                "type": "string",
                "description": "Status of Invoice"
              },
              "chksum": {
                "type": "string",
                "description": "Invoice checksum value",
                "minLength": 1,
                "maxLength": 64
              },
              "doc_det": {
                "type": "array",
                "description": "The doc det value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "doc_num": {
                      "type": "integer",
                      "description": "Document Number",
                      "minimum": 1,
                      "maximum": 12
                    },
                    "docs": {
                      "type": "array",
                      "description": "The docs value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cancel": {
                            "type": "number",
                            "description": "No. of Cancelled document"
                          },
                          "from": {
                            "type": "string",
                            "description": "From serial number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "net_issue": {
                            "type": "number",
                            "description": "net Issue of Document"
                          },
                          "num": {
                            "type": "number",
                            "description": "Serial no"
                          },
                          "to": {
                            "type": "string",
                            "description": "To serial number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "totnum": {
                            "type": "number",
                            "description": "Total number of Documents"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aDocumentIssuedSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aDocumentIssuedSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aDocumentIssuedResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aDocumentIssuedSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aEcomSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Ecom.",
        "properties": {
          "ecom": {
            "$ref": "#/components/schemas/Gstr1aEcomData"
          }
        }
      },
      "GetGstr1aEcomSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aEcomSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aEcomResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aEcomSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aEcomaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Ecoma.",
        "properties": {
          "ecoma": {
            "$ref": "#/components/schemas/Gstr1aEcomaData"
          }
        }
      },
      "GetGstr1aEcomaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aEcomaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aEcomaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aEcomaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aExpSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Exp.",
        "properties": {
          "exp": {
            "type": "array",
            "description": "The exp value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "exp_typ": {
                  "type": "string",
                  "description": "Export Type : With / Without payment of GST",
                  "enum": [
                    "WPAY",
                    "WOPAY"
                  ]
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "Source Type of Invoice"
                      },
                      "irn": {
                        "type": "string",
                        "description": "Invoice Referrence Number",
                        "minLength": 64,
                        "maxLength": 64
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "IRN Generated Date",
                        "minLength": 1
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "rt": {
                              "type": "number",
                              "description": "rate as per invoice"
                            },
                            "iamt": {
                              "type": "number",
                              "description": "IGST Amount as per invoice"
                            },
                            "csamt": {
                              "type": "number",
                              "description": "Cess Amount as per invoice"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Taxable value of Goods or Service as per invoice"
                            }
                          }
                        }
                      },
                      "sbdt": {
                        "type": "string",
                        "description": "Shipping Bill Date. or Bill of Export Date"
                      },
                      "sbpcode": {
                        "type": "string",
                        "description": "Shipping Port Code",
                        "maxLength": 6
                      },
                      "sbnum": {
                        "type": "string",
                        "description": "Shipping Bill No. or Bill of Export No.",
                        "minLength": 3,
                        "maxLength": 7
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aExpSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aExpSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aExpResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aExpSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aExpaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Expa.",
        "properties": {
          "expa": {
            "type": "array",
            "description": "The expa value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "exp_typ": {
                  "type": "string",
                  "description": "Export Type : With / Without payment of GST",
                  "enum": [
                    "WPAY",
                    "WOPAY"
                  ]
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Invoice checksum value",
                        "minLength": 1,
                        "maxLength": 64
                      },
                      "flag": {
                        "type": "string",
                        "description": "Status of Invoice"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number",
                        "maxLength": 16
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Invoice Date"
                      },
                      "oinum": {
                        "type": "string",
                        "description": "Original Invoice Number",
                        "maxLength": 16
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "rt": {
                              "type": "number",
                              "description": "rate as per invoice"
                            },
                            "iamt": {
                              "type": "number",
                              "description": "IGST Amount as per invoice"
                            },
                            "csamt": {
                              "type": "number",
                              "description": "Cess Amount as per invoice"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Taxable value of Goods or Service as per invoice"
                            }
                          }
                        }
                      },
                      "sbdt": {
                        "type": "string",
                        "description": "Shipping Bill Date. or Bill of Export Date"
                      },
                      "sbpcode": {
                        "type": "string",
                        "description": "Shipping Port Code",
                        "maxLength": 6
                      },
                      "sbnum": {
                        "type": "string",
                        "description": "Shipping Bill No. or Bill of Export No.",
                        "minLength": 3,
                        "maxLength": 7
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aExpaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aExpaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aExpaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aExpaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aHsnSummarySuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Hsn Summary.",
        "properties": {
          "hsn": {
            "type": "object",
            "description": "The hsn value returned by GSTN.",
            "properties": {
              "flag": {
                "type": "string",
                "description": "Status of Invoice"
              },
              "chksum": {
                "type": "string",
                "description": "Invoice checksum value",
                "minLength": 1,
                "maxLength": 64
              },
              "hsn_b2b": {
                "type": "array",
                "description": "The hsn b2b value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount as per invoice"
                    },
                    "camt": {
                      "type": "number",
                      "description": "CGST Amount as per invoice"
                    },
                    "samt": {
                      "type": "number",
                      "description": "SGST Amount as per invoice"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess Amount as per invoice"
                    },
                    "desc": {
                      "type": "string",
                      "description": "Description of goods sold"
                    },
                    "user_desc": {
                      "type": "string",
                      "description": "Description given by Taxpayer"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "HSN of Goods or Services as per Invoice line items",
                      "minLength": 2,
                      "maxLength": 8
                    },
                    "num": {
                      "type": "integer",
                      "description": "Serial no"
                    },
                    "qty": {
                      "type": "number",
                      "description": "Quantity of goods sold"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable value of Goods or Service as per invoice"
                    },
                    "uqc": {
                      "type": "string",
                      "description": "UQC (Unit of Measure) of goods sold"
                    },
                    "val": {
                      "type": "number",
                      "description": "Supplier Invoice Value"
                    },
                    "rt": {
                      "type": "number",
                      "description": "Tax Rate"
                    }
                  }
                }
              },
              "hsn_b2c": {
                "type": "array",
                "description": "The hsn b2c value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount as per invoice"
                    },
                    "camt": {
                      "type": "number",
                      "description": "CGST Amount as per invoice"
                    },
                    "samt": {
                      "type": "number",
                      "description": "SGST Amount as per invoice"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess Amount as per invoice"
                    },
                    "desc": {
                      "type": "string",
                      "description": "Description of goods sold"
                    },
                    "user_desc": {
                      "type": "string",
                      "description": "Description given by Taxpayer"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "HSN of Goods or Services as per Invoice line items",
                      "minLength": 2,
                      "maxLength": 8
                    },
                    "num": {
                      "type": "integer",
                      "description": "Serial no"
                    },
                    "qty": {
                      "type": "number",
                      "description": "Quantity of goods sold"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable value of Goods or Service as per invoice"
                    },
                    "uqc": {
                      "type": "string",
                      "description": "UQC (Unit of Measure) of goods sold"
                    },
                    "val": {
                      "type": "number",
                      "description": "Supplier Invoice Value"
                    },
                    "rt": {
                      "type": "number",
                      "description": "Tax Rate"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aHsnSummarySuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aHsnSummarySuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aHsnSummaryResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aHsnSummarySuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aNilSuppliesSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Nil Supplies.",
        "properties": {
          "nil": {
            "type": "object",
            "description": "The nil value returned by GSTN.",
            "properties": {
              "flag": {
                "type": "string",
                "description": "Status of Invoice"
              },
              "chksum": {
                "type": "string",
                "description": "Invoice checksum value",
                "minLength": 1,
                "maxLength": 64
              },
              "inv": {
                "type": "array",
                "description": "The inv value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "expt_amt": {
                      "type": "number",
                      "description": "Total Exempted outward supplies"
                    },
                    "ngsup_amt": {
                      "type": "number",
                      "description": "Total Non GST outward supplies"
                    },
                    "nil_amt": {
                      "type": "number",
                      "description": "Total Nil rated outward supplies"
                    },
                    "sply_ty": {
                      "type": "string",
                      "description": "Supply Type",
                      "enum": [
                        "INTRB2B",
                        "INTRB2C",
                        "INTRAB2B",
                        "INTRAB2C"
                      ]
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aNilSuppliesSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aNilSuppliesSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aNilSuppliesResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aNilSuppliesSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aSupecoSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Supeco.",
        "properties": {
          "supeco": {
            "type": "object",
            "description": "The supeco value returned by GSTN.",
            "properties": {
              "clttx": {
                "type": "array",
                "description": "The clttx value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "etin": {
                      "type": "string",
                      "description": "Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "suppval": {
                      "type": "number",
                      "description": "Ecom supply value",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "igst": {
                      "type": "number",
                      "description": "IGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cgst": {
                      "type": "number",
                      "description": "CGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "sgst": {
                      "type": "number",
                      "description": "SGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cess": {
                      "type": "number",
                      "description": "Cess amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "flag": {
                      "type": "string",
                      "description": "Taxpayer action",
                      "enum": [
                        "N",
                        "E",
                        "D"
                      ]
                    }
                  }
                }
              },
              "paytx": {
                "type": "array",
                "description": "The paytx value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "etin": {
                      "type": "string",
                      "description": "Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "suppval": {
                      "type": "number",
                      "description": "Ecom supply value",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "igst": {
                      "type": "number",
                      "description": "IGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cgst": {
                      "type": "number",
                      "description": "CGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "sgst": {
                      "type": "number",
                      "description": "SGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cess": {
                      "type": "number",
                      "description": "Cess amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "flag": {
                      "type": "string",
                      "description": "Taxpayer action",
                      "enum": [
                        "N",
                        "E",
                        "D"
                      ]
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aSupecoSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aSupecoSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aSupecoResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aSupecoSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aSupecoaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Supecoa.",
        "properties": {
          "supecoa": {
            "type": "object",
            "description": "The supecoa value returned by GSTN.",
            "properties": {
              "clttxa": {
                "type": "array",
                "description": "The clttxa value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "oetin": {
                      "type": "string",
                      "description": "Original Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "etin": {
                      "type": "string",
                      "description": "Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "suppval": {
                      "type": "number",
                      "description": "Ecom supply value",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "igst": {
                      "type": "number",
                      "description": "IGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cgst": {
                      "type": "number",
                      "description": "CGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "sgst": {
                      "type": "number",
                      "description": "SGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cess": {
                      "type": "number",
                      "description": "Cess amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "flag": {
                      "type": "string",
                      "description": "Taxpayer action",
                      "enum": [
                        "N",
                        "E",
                        "D"
                      ]
                    },
                    "omon": {
                      "type": "string",
                      "description": "Original Month",
                      "minLength": 1
                    }
                  }
                }
              },
              "paytxa": {
                "type": "array",
                "description": "The paytxa value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "oetin": {
                      "type": "string",
                      "description": "Original Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "etin": {
                      "type": "string",
                      "description": "Ecom Tin",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "suppval": {
                      "type": "number",
                      "description": "Ecom supply value",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "igst": {
                      "type": "number",
                      "description": "IGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cgst": {
                      "type": "number",
                      "description": "CGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "sgst": {
                      "type": "number",
                      "description": "SGST amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "cess": {
                      "type": "number",
                      "description": "Cess amount",
                      "minimum": -99999999999.99,
                      "maximum": 99999999999.99
                    },
                    "flag": {
                      "type": "string",
                      "description": "Taxpayer action",
                      "enum": [
                        "N",
                        "E",
                        "D"
                      ]
                    },
                    "omon": {
                      "type": "string",
                      "description": "Original Month",
                      "minLength": 1
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aSupecoaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aSupecoaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aSupecoaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aSupecoaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aTxpSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Txp.",
        "properties": {
          "txpd": {
            "type": "array",
            "description": "The txpd value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ad_amt": {
                        "type": "number",
                        "description": "Advance to be adjusted"
                      },
                      "rt": {
                        "type": "number",
                        "description": "rate as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Actual Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Nature of Supply",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                }
              }
            }
          }
        }
      },
      "GetGstr1aTxpSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aTxpSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aTxpResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aTxpSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aTxpaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Txpa.",
        "properties": {
          "txpda": {
            "type": "array",
            "description": "The txpda value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "description": "Status of Invoice"
                },
                "chksum": {
                  "type": "string",
                  "description": "Invoice checksum value",
                  "minLength": 1,
                  "maxLength": 64
                },
                "omon": {
                  "type": "string",
                  "description": "Original month",
                  "minLength": 6,
                  "maxLength": 6
                },
                "diff_percent": {
                  "type": "number",
                  "description": "Differential percentage"
                },
                "itms": {
                  "type": "array",
                  "description": "The itms value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ad_amt": {
                        "type": "number",
                        "description": "Advance to be adjusted"
                      },
                      "rt": {
                        "type": "number",
                        "description": "rate as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice"
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice"
                      }
                    }
                  }
                },
                "pos": {
                  "type": "string",
                  "description": "Original Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "sply_ty": {
                  "type": "string",
                  "description": "Original Nature of Supply",
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                }
              }
            }
          }
        }
      },
      "GetGstr1aTxpaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aTxpaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aTxpaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aTxpaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr1aSummarySuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr1a Summary.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "The gstin value returned by GSTN."
          },
          "ret_period": {
            "type": "string",
            "description": "The ret period value returned by GSTN."
          },
          "chksum": {
            "type": "string",
            "description": "The chksum value returned by GSTN."
          },
          "smryTyp": {
            "type": "string",
            "description": "The smry Typ value returned by GSTN."
          },
          "newSumFlag": {
            "type": "boolean",
            "description": "The new Sum Flag value returned by GSTN."
          },
          "sec_sum": {
            "type": "array",
            "description": "The sec sum value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "sec_nm": {
                  "type": "string",
                  "description": "The sec nm value returned by GSTN."
                },
                "chksum": {
                  "type": "string",
                  "description": "The chksum value returned by GSTN."
                },
                "ttl_rec": {
                  "type": "integer",
                  "description": "The ttl rec value returned by GSTN."
                },
                "ttl_tax": {
                  "type": "number",
                  "description": "The ttl tax value returned by GSTN."
                },
                "ttl_igst": {
                  "type": "number",
                  "description": "The ttl igst value returned by GSTN."
                },
                "ttl_sgst": {
                  "type": "number",
                  "description": "The ttl sgst value returned by GSTN."
                },
                "ttl_cgst": {
                  "type": "number",
                  "description": "The ttl cgst value returned by GSTN."
                },
                "ttl_val": {
                  "type": "number",
                  "description": "The ttl val value returned by GSTN."
                },
                "ttl_cess": {
                  "type": "number",
                  "description": "The ttl cess value returned by GSTN."
                },
                "act_tax": {
                  "type": "integer",
                  "description": "The act tax value returned by GSTN."
                },
                "act_igst": {
                  "type": "number",
                  "description": "The act igst value returned by GSTN."
                },
                "act_sgst": {
                  "type": "number",
                  "description": "The act sgst value returned by GSTN."
                },
                "act_cgst": {
                  "type": "number",
                  "description": "The act cgst value returned by GSTN."
                },
                "act_val": {
                  "type": "number",
                  "description": "The act val value returned by GSTN."
                },
                "act_cess": {
                  "type": "integer",
                  "description": "The act cess value returned by GSTN."
                },
                "cpty_sum": {
                  "type": "array",
                  "description": "The cpty sum value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ctin": {
                        "type": "string",
                        "description": "The ctin value returned by GSTN."
                      },
                      "chksum": {
                        "type": "string",
                        "description": "The chksum value returned by GSTN."
                      },
                      "ttl_rec": {
                        "type": "integer",
                        "description": "The ttl rec value returned by GSTN."
                      },
                      "ttl_tax": {
                        "type": "number",
                        "description": "The ttl tax value returned by GSTN."
                      },
                      "ttl_igst": {
                        "type": "number",
                        "description": "The ttl igst value returned by GSTN."
                      },
                      "ttl_sgst": {
                        "type": "integer",
                        "description": "The ttl sgst value returned by GSTN."
                      },
                      "ttl_cgst": {
                        "type": "integer",
                        "description": "The ttl cgst value returned by GSTN."
                      },
                      "ttl_val": {
                        "type": "number",
                        "description": "The ttl val value returned by GSTN."
                      },
                      "ttl_cess": {
                        "type": "number",
                        "description": "The ttl cess value returned by GSTN."
                      },
                      "trade_name": {
                        "type": "string",
                        "description": "The trade name value returned by GSTN."
                      }
                    }
                  }
                },
                "ttl_expt_amt": {
                  "type": "number",
                  "description": "The ttl expt amt value returned by GSTN."
                },
                "ttl_ngsup_amt": {
                  "type": "number",
                  "description": "The ttl ngsup amt value returned by GSTN."
                },
                "ttl_nilsup_amt": {
                  "type": "number",
                  "description": "The ttl nilsup amt value returned by GSTN."
                },
                "ttl_doc_issued": {
                  "type": "integer",
                  "description": "The ttl doc issued value returned by GSTN."
                },
                "ttl_doc_cancelled": {
                  "type": "integer",
                  "description": "The ttl doc cancelled value returned by GSTN."
                },
                "net_doc_issued": {
                  "type": "integer",
                  "description": "The net doc issued value returned by GSTN."
                },
                "sub_sections": {
                  "type": "array",
                  "description": "The sub sections value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "sec_nm": {
                        "type": "string",
                        "description": "The sec nm value returned by GSTN."
                      },
                      "chksum": {
                        "type": "string",
                        "description": "The chksum value returned by GSTN."
                      },
                      "ttl_rec": {
                        "type": "integer",
                        "description": "The ttl rec value returned by GSTN."
                      },
                      "ttl_tax": {
                        "type": "number",
                        "description": "The ttl tax value returned by GSTN."
                      },
                      "ttl_igst": {
                        "type": "number",
                        "description": "The ttl igst value returned by GSTN."
                      },
                      "ttl_sgst": {
                        "type": "number",
                        "description": "The ttl sgst value returned by GSTN."
                      },
                      "ttl_cgst": {
                        "type": "number",
                        "description": "The ttl cgst value returned by GSTN."
                      },
                      "ttl_val": {
                        "type": "number",
                        "description": "The ttl val value returned by GSTN."
                      },
                      "ttl_cess": {
                        "type": "number",
                        "description": "The ttl cess value returned by GSTN."
                      },
                      "cpty_sum": {
                        "type": "array",
                        "description": "The cpty sum value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "type": "string",
                              "description": "The ctin value returned by GSTN."
                            },
                            "chksum": {
                              "type": "string",
                              "description": "The chksum value returned by GSTN."
                            },
                            "ttl_rec": {
                              "type": "integer",
                              "description": "The ttl rec value returned by GSTN."
                            },
                            "ttl_tax": {
                              "type": "number",
                              "description": "The ttl tax value returned by GSTN."
                            },
                            "ttl_igst": {
                              "type": "number",
                              "description": "The ttl igst value returned by GSTN."
                            },
                            "ttl_sgst": {
                              "type": "integer",
                              "description": "The ttl sgst value returned by GSTN."
                            },
                            "ttl_cgst": {
                              "type": "integer",
                              "description": "The ttl cgst value returned by GSTN."
                            },
                            "ttl_val": {
                              "type": "number",
                              "description": "The ttl val value returned by GSTN."
                            },
                            "ttl_cess": {
                              "type": "number",
                              "description": "The ttl cess value returned by GSTN."
                            }
                          }
                        }
                      },
                      "act_tax": {
                        "type": "integer",
                        "description": "The act tax value returned by GSTN."
                      },
                      "act_igst": {
                        "type": "integer",
                        "description": "The act igst value returned by GSTN."
                      },
                      "act_sgst": {
                        "type": "integer",
                        "description": "The act sgst value returned by GSTN."
                      },
                      "act_cgst": {
                        "type": "integer",
                        "description": "The act cgst value returned by GSTN."
                      },
                      "act_val": {
                        "type": "integer",
                        "description": "The act val value returned by GSTN."
                      },
                      "act_cess": {
                        "type": "integer",
                        "description": "The act cess value returned by GSTN."
                      },
                      "typ": {
                        "type": "string",
                        "description": "The typ value returned by GSTN."
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr1aSummarySuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr1aSummarySuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr1aSummaryResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr1aSummarySuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "Getgstr2aAmdhistSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Getgstr2a Amdhist.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "GSTIN/UID of the taxpayer",
            "minLength": 15,
            "maxLength": 15
          },
          "portcd": {
            "type": "string",
            "description": "Port Code",
            "minLength": 6,
            "maxLength": 6
          },
          "benum": {
            "type": "number",
            "description": "Bill of Entry number",
            "minimum": 1000,
            "maximum": 9999999
          },
          "bedt": {
            "type": "string",
            "description": "Bill of Entry Date"
          },
          "amddtl": {
            "type": "array",
            "description": "The amddtl value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "refdt": {
                  "type": "string",
                  "description": "Reference Date"
                },
                "sgstin": {
                  "type": "string",
                  "description": "GSTIN/UID of the SEZ supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "tdname": {
                  "type": "string",
                  "description": "Trade name of the Supplier"
                },
                "txval": {
                  "type": "number",
                  "description": "The taxable value of the imported goods",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "The IGST amount for imported goods",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "csamt": {
                  "type": "number",
                  "description": "The cess amount for the imported goods",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          }
        }
      },
      "Getgstr2aAmdhistSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/Getgstr2aAmdhistSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "Getgstr2aAmdhistResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/Getgstr2aAmdhistSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aB2bSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a B2b.",
        "properties": {
          "b2b": {
            "type": "array",
            "description": "The b2b value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "cfs": {
                  "type": "string",
                  "description": "R1_Fil_Status"
                },
                "cfs3b": {
                  "type": "string",
                  "description": "R3B_Fil_Status"
                },
                "dtcancel": {
                  "type": "string",
                  "description": "Date of cancellation of supplier"
                },
                "fldtr1": {
                  "type": "string",
                  "description": "Date of filing GSTR1/5 of supplier"
                },
                "flprdr1": {
                  "type": "string",
                  "description": "Filing period of GSTR1/5 of supplier"
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "checksum value"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "flag to determine if it is sez or deemed"
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "aspd": {
                        "type": "string",
                        "description": "Return period in which invoice is amended"
                      },
                      "atyp": {
                        "type": "string",
                        "description": "flag to determine type of amendment"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "row numer"
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "details of the items of invoice",
                              "properties": {
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "tax amount for igst"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "tax amount for cgst"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "tax amount for sgst"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "tax amount for cess"
                                },
                                "rt": {
                                  "type": "number",
                                  "description": "Tax Rate"
                                }
                              }
                            }
                          }
                        }
                      },
                      "irn": {
                        "type": "string",
                        "description": "The irn value returned by GSTN."
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "The irngendate value returned by GSTN."
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "The srctyp value returned by GSTN."
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr2aB2bSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aB2bSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aB2bResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aB2bSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aB2baSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a B2ba.",
        "properties": {
          "b2ba": {
            "type": "array",
            "description": "The b2ba value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                  "minLength": 15,
                  "maxLength": 15
                },
                "cfs": {
                  "type": "string",
                  "description": "R1_Fil_Status"
                },
                "cfs3b": {
                  "type": "string",
                  "description": "R3B_Fil_Status"
                },
                "dtcancel": {
                  "type": "string",
                  "description": "Date of cancellation of supplier"
                },
                "fldtr1": {
                  "type": "string",
                  "description": "Date of filing GSTR1/5 of supplier"
                },
                "flprdr1": {
                  "type": "string",
                  "description": "Filing period of GSTR1/5 of supplier"
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "checksum value"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "oinum": {
                        "type": "string",
                        "description": "Original Supplier Invoice Number"
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Supplier Invoice Date"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "flag to determine if it is sez or deemed"
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "aspd": {
                        "type": "string",
                        "description": "Original period in which invoice was added"
                      },
                      "atyp": {
                        "type": "string",
                        "description": "flag to determine type of amendment"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "item number"
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "details of the items of invoice",
                              "properties": {
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "tax amount for igst"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "tax amount for cgst"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "tax amount for sgst"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "tax amount for cess"
                                },
                                "rt": {
                                  "type": "number",
                                  "description": "Tax Rate"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr2aB2baSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aB2baSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aB2baResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aB2baSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aCdnSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a Cdn.",
        "properties": {
          "cdn": {
            "type": "array",
            "description": "The cdn value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "cfs": {
                  "type": "string",
                  "description": "R1_Fil_Status"
                },
                "cfs3b": {
                  "type": "string",
                  "description": "R3B_Fil_Status"
                },
                "dtcancel": {
                  "type": "string",
                  "description": "Date of cancellation of supplier"
                },
                "ctin": {
                  "type": "string",
                  "description": "Counter party gstin"
                },
                "fldtr1": {
                  "type": "string",
                  "description": "Date of filing GSTR1/5 of supplier"
                },
                "flprdr1": {
                  "type": "string",
                  "description": "Filing period of GSTR1/5 of supplier"
                },
                "nt": {
                  "type": "array",
                  "description": "The nt value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Checksum"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Involice date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Involice number"
                      },
                      "val": {
                        "type": "number",
                        "description": "Note Value"
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "aspd": {
                        "type": "string",
                        "description": "Return period in which note is amended"
                      },
                      "atyp": {
                        "type": "string",
                        "description": "flag to determine type of amendment"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "d_flag": {
                        "type": "string",
                        "description": "delink flag"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "camt": {
                                  "type": "number",
                                  "description": "CGST amount"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "CESS amount"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST amount"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST amount"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxval amount"
                                },
                                "rt": {
                                  "type": "number",
                                  "description": "Tax rate"
                                }
                              }
                            },
                            "num": {
                              "type": "integer",
                              "description": "Item number"
                            }
                          }
                        }
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "note date"
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "note number"
                      },
                      "p_gst": {
                        "type": "string",
                        "description": "Pre GST Regime Dr./ Cr. Notes"
                      },
                      "ntty": {
                        "type": "string",
                        "description": "note type"
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      },
                      "updby": {
                        "type": "string",
                        "description": "uploaded by"
                      },
                      "cflag": {
                        "type": "string",
                        "description": "counter party flag"
                      },
                      "irn": {
                        "type": "string",
                        "description": "The irn value returned by GSTN.",
                        "example": "x4dftn9my4a2fc97799229784bd7e98f57109db58f5cb674f534618c9e2fde51"
                      },
                      "irngendate": {
                        "type": "string",
                        "description": "The irngendate value returned by GSTN.",
                        "example": "13-12-2023"
                      },
                      "srctyp": {
                        "type": "string",
                        "description": "The srctyp value returned by GSTN.",
                        "example": "E-Invoice"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr2aCdnSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aCdnSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aCdnResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aCdnSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aCdnaSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a Cdna.",
        "properties": {
          "cdna": {
            "type": "array",
            "description": "The cdna value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "cfs": {
                  "type": "string",
                  "description": "R1_Fil_Status"
                },
                "cfs3b": {
                  "type": "string",
                  "description": "R3B_Fil_Status"
                },
                "dtcancel": {
                  "type": "string",
                  "description": "Date of cancellation of supplier"
                },
                "fldtr1": {
                  "type": "string",
                  "description": "Date of filing GSTR1/5 of supplier"
                },
                "flprdr1": {
                  "type": "string",
                  "description": "Filing period of GSTR1/5 of supplier"
                },
                "ctin": {
                  "type": "string",
                  "description": "Counter party gstin"
                },
                "nt": {
                  "type": "array",
                  "description": "The nt value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "Checksum"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Involice date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Involice number"
                      },
                      "val": {
                        "type": "number",
                        "description": "Note Value"
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision  of service."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "tax payer action",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "d_flag": {
                        "type": "string",
                        "description": "delink flag"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "itm_det": {
                              "type": "object",
                              "description": "The itm det value returned by GSTN.",
                              "properties": {
                                "camt": {
                                  "type": "number",
                                  "description": "CGST amount"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "CESS amount"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "IGST amount"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "SGST amount"
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Taxval amount"
                                },
                                "rt": {
                                  "type": "number",
                                  "description": "Tax rate"
                                }
                              }
                            },
                            "num": {
                              "type": "integer",
                              "description": "Item number"
                            }
                          }
                        }
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "note date"
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "note number"
                      },
                      "ont_dt": {
                        "type": "string",
                        "description": "original note date"
                      },
                      "ont_num": {
                        "type": "string",
                        "description": "original note number"
                      },
                      "aspd": {
                        "type": "string",
                        "description": "Original period in which invoice was added"
                      },
                      "atyp": {
                        "type": "string",
                        "description": "flag to determine type of amendment"
                      },
                      "p_gst": {
                        "type": "string",
                        "description": "Pre GST Regime Dr./ Cr. Notes"
                      },
                      "ntty": {
                        "type": "string",
                        "description": "note type"
                      },
                      "diff_percent": {
                        "type": "number",
                        "description": "Differential percentage"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr2aCdnaSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aCdnaSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aCdnaResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aCdnaSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstrsGstr2aEcomYearMonthSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstrs Gstr2a Ecom Year Month.",
        "properties": {
          "ecom": {
            "type": "array",
            "description": "The ecom value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "Counter party GSTIN [ECOM]",
                  "minLength": 15,
                  "maxLength": 15
                },
                "cfs": {
                  "type": "string",
                  "description": "R1_Fil_Status"
                },
                "cfs3b": {
                  "type": "string",
                  "description": "R3B_Fil_Status"
                },
                "dtcancel": {
                  "type": "string",
                  "description": "Date of cancellation of supplier"
                },
                "fldtr1": {
                  "type": "string",
                  "description": "Date of filing GSTR1/5 of supplier"
                },
                "flprdr1": {
                  "type": "string",
                  "description": "Filing period of GSTR1/5 of supplier"
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "checksum value"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service."
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "aspd": {
                        "type": "string",
                        "description": "Return period in which invoice is amended"
                      },
                      "atyp": {
                        "type": "string",
                        "description": "flag to determine type of amendment"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "flag to determine if it is sez or deemed in case of B2B else in case of C2B it would simply have (-)"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "row numer"
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "details of the items of invoice",
                              "properties": {
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "tax amount for igst"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "tax amount for cgst"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "tax amount for sgst"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "tax amount for cess"
                                },
                                "rt": {
                                  "type": "number",
                                  "description": "Tax Rate"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstrsGstr2aEcomYearMonthSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstrsGstr2aEcomYearMonthSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstrsGstr2aEcomYearMonthResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstrsGstr2aEcomYearMonthSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstrsGstr2aEcomaYearMonthSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstrs Gstr2a Ecoma Year Month.",
        "properties": {
          "ecoma": {
            "type": "array",
            "description": "The ecoma value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ctin": {
                  "type": "string",
                  "description": "Counter party GSTIN [ECOM]",
                  "minLength": 15,
                  "maxLength": 15
                },
                "cfs": {
                  "type": "string",
                  "description": "R1_Fil_Status"
                },
                "cfs3b": {
                  "type": "string",
                  "description": "R3B_Fil_Status"
                },
                "dtcancel": {
                  "type": "string",
                  "description": "Date of cancellation of supplier"
                },
                "fldtr1": {
                  "type": "string",
                  "description": "Date of filing GSTR1/5 of supplier"
                },
                "flprdr1": {
                  "type": "string",
                  "description": "Filing period of GSTR1/5 of supplier"
                },
                "inv": {
                  "type": "array",
                  "description": "The inv value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "checksum value"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Supplier Invoice Number"
                      },
                      "idt": {
                        "type": "string",
                        "description": "Supplier Invoice Date"
                      },
                      "val": {
                        "type": "number",
                        "description": "Supplier Invoice Value"
                      },
                      "pos": {
                        "type": "string",
                        "description": "Maintained in GST System common database POS as provided in law / actual provision of service."
                      },
                      "oinum": {
                        "type": "string",
                        "description": "Original Supplier Invoice Number"
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Supplier Invoice Date"
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "Reverse Charge"
                      },
                      "aspd": {
                        "type": "string",
                        "description": "Return period in which invoice is amended"
                      },
                      "atyp": {
                        "type": "string",
                        "description": "flag to determine type of amendment"
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "flag to determine if it is sez or deemed in case of B2B else in case of C2B it would simply have (-)"
                      },
                      "itms": {
                        "type": "array",
                        "description": "The itms value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "num": {
                              "type": "integer",
                              "description": "item number"
                            },
                            "itm_det": {
                              "type": "object",
                              "description": "details of the items of invoice",
                              "properties": {
                                "txval": {
                                  "type": "number",
                                  "description": "Taxable value of Goods or Service as per invoice"
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "tax amount for igst"
                                },
                                "camt": {
                                  "type": "number",
                                  "description": "tax amount for cgst"
                                },
                                "samt": {
                                  "type": "number",
                                  "description": "tax amount for sgst"
                                },
                                "csamt": {
                                  "type": "number",
                                  "description": "tax amount for cess"
                                },
                                "rt": {
                                  "type": "number",
                                  "description": "Tax Rate"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstrsGstr2aEcomaYearMonthSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstrsGstr2aEcomaYearMonthSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstrsGstr2aEcomaYearMonthResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstrsGstr2aEcomaYearMonthSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aImpgSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a Impg.",
        "properties": {
          "impg": {
            "type": "array",
            "description": "The impg value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "refdt": {
                  "type": "string",
                  "description": "Reference Date"
                },
                "portcd": {
                  "type": "string",
                  "description": "Port Code",
                  "minLength": 6,
                  "maxLength": 6
                },
                "benum": {
                  "type": "number",
                  "description": "Bill of Entry number",
                  "minimum": 1000,
                  "maximum": 9999999
                },
                "bedt": {
                  "type": "string",
                  "description": "Bill of Entry Date"
                },
                "txval": {
                  "type": "number",
                  "description": "The taxable value of the imported goods",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "The IGST amount for imported goods",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "csamt": {
                  "type": "number",
                  "description": "The cess amount for the imported goods",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "amd": {
                  "type": "string",
                  "description": "Flag to check if the Bill of Entry is amended",
                  "minLength": 1,
                  "maxLength": 1
                }
              }
            }
          }
        }
      },
      "GetGstr2aImpgSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aImpgSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aImpgResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aImpgSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aImpgsezSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a Impgsez.",
        "properties": {
          "impgsez": {
            "type": "array",
            "description": "The impgsez value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "refdt": {
                  "type": "string",
                  "description": "Reference Date"
                },
                "portcd": {
                  "type": "string",
                  "description": "Port Code",
                  "minLength": 6,
                  "maxLength": 6
                },
                "benum": {
                  "type": "number",
                  "description": "Bill of Entry number",
                  "minimum": 1000,
                  "maximum": 9999999
                },
                "bedt": {
                  "type": "string",
                  "description": "Bill of Entry Date"
                },
                "sgstin": {
                  "type": "string",
                  "description": "GSTIN/UID of the SEZ supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "tdname": {
                  "type": "string",
                  "description": "Trade name of the Supplier"
                },
                "txval": {
                  "type": "number",
                  "description": "The taxable value of the imported goods",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "The IGST amount for imported goods",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "csamt": {
                  "type": "number",
                  "description": "The cess amount for the imported goods",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "amd": {
                  "type": "string",
                  "description": "Flag to check if the Bill of Entry is amended",
                  "minLength": 1,
                  "maxLength": 1
                }
              }
            }
          }
        }
      },
      "GetGstr2aImpgsezSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aImpgsezSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aImpgsezResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aImpgsezSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aIsdSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a Isd.",
        "properties": {
          "isd": {
            "type": "array",
            "description": "The isd value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "cfs": {
                  "type": "string",
                  "description": "counter party GSTR6 filing status"
                },
                "ctin": {
                  "type": "string",
                  "description": "ISD gstin"
                },
                "doclist": {
                  "type": "array",
                  "description": "The doclist value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "camt": {
                        "type": "number",
                        "description": "ISD received as CGST"
                      },
                      "chksum": {
                        "type": "string",
                        "description": "checksum"
                      },
                      "cess": {
                        "type": "number",
                        "description": "ISD received as CESS"
                      },
                      "docdt": {
                        "type": "string",
                        "description": "Document Date"
                      },
                      "docnum": {
                        "type": "string",
                        "description": "Document number"
                      },
                      "aspd": {
                        "type": "string",
                        "description": "Return period in which amended or Original period in which reported"
                      },
                      "atyp": {
                        "type": "string",
                        "description": "flag to determine type of amendment"
                      },
                      "iamt": {
                        "type": "number",
                        "description": "ISD received as IGST"
                      },
                      "isd_docty": {
                        "type": "string",
                        "description": "document type"
                      },
                      "itc_elg": {
                        "type": "string",
                        "description": "Eligible for ITC"
                      },
                      "samt": {
                        "type": "number",
                        "description": "ISD received as SGST"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr2aIsdSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aIsdSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aIsdResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aIsdSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aTcsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a Tcs.",
        "properties": {
          "tcs": {
            "type": "array",
            "description": "The tcs value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "chksum": {
                  "type": "string",
                  "description": "Checksum"
                },
                "etin": {
                  "type": "string",
                  "description": "GSTIN of E-commerce Portal"
                },
                "m_id": {
                  "type": "string",
                  "description": "Merchant ID allocated by e-commerce portal"
                },
                "sup_val": {
                  "type": "number",
                  "description": "Gross Value of Supplies"
                },
                "tx_val": {
                  "type": "number",
                  "description": "Taxable Value on which TCS has been deducted"
                },
                "irt": {
                  "type": "number",
                  "description": "TCS_IGST rate"
                },
                "iamt": {
                  "type": "number",
                  "description": "TCS_IGST amount"
                },
                "crt": {
                  "type": "number",
                  "description": "TCS_CGST rate"
                },
                "camt": {
                  "type": "number",
                  "description": "TCS_CGST amount"
                },
                "srt": {
                  "type": "number",
                  "description": "TCS_SGST rate"
                },
                "samt": {
                  "type": "number",
                  "description": "TCS_SGST amount"
                },
                "csrt": {
                  "type": "number",
                  "description": "TCS_Cess rate"
                },
                "csamt": {
                  "type": "number",
                  "description": "TCS_Cess amount"
                }
              }
            }
          }
        }
      },
      "GetGstr2aTcsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aTcsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aTcsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aTcsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2aTdsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2a Tds.",
        "properties": {
          "tds": {
            "type": "array",
            "description": "The tds value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "gstin_ded": {
                  "type": "string",
                  "description": "GSTIN of the deductee",
                  "minLength": 15,
                  "maxLength": 15
                },
                "amt_ded": {
                  "type": "number",
                  "description": "Amount paid to deductee on which tax is deducted",
                  "maximum": 9999999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "IGST TDS amount",
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "CGST TDS amount",
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "SGST TDS amount",
                  "maximum": 99999999999.99
                }
              }
            }
          }
        }
      },
      "GetGstr2aTdsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2aTdsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2aTdsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2aTdsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "FetchGstr2bRegenerationStatusSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Fetch Gstr2b Regeneration Status.",
        "properties": {
          "status_cd": {
            "type": "string",
            "description": "Status of the request"
          },
          "err_cd": {
            "type": "string",
            "description": "Error code"
          },
          "err_msg": {
            "type": "string",
            "description": "Error message"
          }
        }
      },
      "FetchGstr2bRegenerationStatusSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/FetchGstr2bRegenerationStatusSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "FetchGstr2bRegenerationStatusResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/FetchGstr2bRegenerationStatusSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr2bDocumentSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr2b Document.",
        "properties": {
          "chksum": {
            "type": "string",
            "description": "Checksum of the payload",
            "minLength": 1,
            "maxLength": 64
          },
          "data": {
            "type": "object",
            "description": "The data value returned by GSTN.",
            "properties": {
              "gstin": {
                "type": "string",
                "description": "GSTIN of the Receiver",
                "minLength": 15,
                "maxLength": 15
              },
              "rtnprd": {
                "type": "string",
                "description": "Receiver return period",
                "minLength": 1
              },
              "version": {
                "type": "string",
                "description": "version number"
              },
              "gendt": {
                "type": "string",
                "description": "Generation date of GSTR2B",
                "minLength": 1
              },
              "itcsumm": {
                "type": "object",
                "description": "The itcsumm value returned by GSTN.",
                "properties": {
                  "itcavl": {
                    "type": "object",
                    "description": "The itcavl value returned by GSTN.",
                    "properties": {
                      "nonrevsup": {
                        "type": "object",
                        "description": "The nonrevsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "b2b": {
                            "type": "object",
                            "description": "The b2b value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              },
                              "txval": {
                                "type": "number",
                                "description": "The txval value returned by GSTN.",
                                "example": 1483843.96
                              }
                            }
                          },
                          "b2ba": {
                            "type": "object",
                            "description": "The b2ba value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              },
                              "txval": {
                                "type": "number",
                                "description": "The txval value returned by GSTN.",
                                "example": 45293.06
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "ecom": {
                            "type": "object",
                            "description": "The ecom value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "ecoma": {
                            "type": "object",
                            "description": "The ecoma value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "isdsup": {
                        "type": "object",
                        "description": "The isdsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "isd": {
                            "type": "object",
                            "description": "The isd value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isda": {
                            "type": "object",
                            "description": "The isda value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "revsup": {
                        "type": "object",
                        "description": "The revsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "b2b": {
                            "type": "object",
                            "description": "The b2b value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              },
                              "txval": {
                                "type": "number",
                                "description": "The txval value returned by GSTN.",
                                "example": 1346436
                              }
                            }
                          },
                          "b2ba": {
                            "type": "object",
                            "description": "The b2ba value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "imports": {
                        "type": "object",
                        "description": "The imports value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "impg": {
                            "type": "object",
                            "description": "The impg value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impgsez": {
                            "type": "object",
                            "description": "The impgsez value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impga": {
                            "type": "object",
                            "description": "The impga value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impgasez": {
                            "type": "object",
                            "description": "The impgasez value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "othersup": {
                        "type": "object",
                        "description": "The othersup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              },
                              "txval": {
                                "type": "number",
                                "description": "The txval value returned by GSTN.",
                                "example": 8753420.94
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnrrev": {
                            "type": "object",
                            "description": "The cdnrrev value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              },
                              "txval": {
                                "type": "number",
                                "description": "The txval value returned by GSTN.",
                                "example": 446500
                              }
                            }
                          },
                          "cdnrarev": {
                            "type": "object",
                            "description": "The cdnrarev value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isd": {
                            "type": "object",
                            "description": "The isd value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isda": {
                            "type": "object",
                            "description": "The isda value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "itcunavl": {
                    "type": "object",
                    "description": "The itcunavl value returned by GSTN.",
                    "properties": {
                      "nonrevsup": {
                        "type": "object",
                        "description": "The nonrevsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "b2b": {
                            "type": "object",
                            "description": "The b2b value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              },
                              "txval": {
                                "type": "number",
                                "description": "The txval value returned by GSTN.",
                                "example": 89923.45
                              }
                            }
                          },
                          "b2ba": {
                            "type": "object",
                            "description": "The b2ba value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "ecom": {
                            "type": "object",
                            "description": "The ecom value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "ecoma": {
                            "type": "object",
                            "description": "The ecoma value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "isdsup": {
                        "type": "object",
                        "description": "The isdsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "isd": {
                            "type": "object",
                            "description": "The isd value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isda": {
                            "type": "object",
                            "description": "The isda value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "revsup": {
                        "type": "object",
                        "description": "The revsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "b2b": {
                            "type": "object",
                            "description": "The b2b value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "b2ba": {
                            "type": "object",
                            "description": "The b2ba value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "imports": {
                        "type": "object",
                        "description": "The imports value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "impg": {
                            "type": "object",
                            "description": "The impg value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impgsez": {
                            "type": "object",
                            "description": "The impgsez value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impga": {
                            "type": "object",
                            "description": "The impga value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impgasez": {
                            "type": "object",
                            "description": "The impgasez value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "othersup": {
                        "type": "object",
                        "description": "The othersup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnrrev": {
                            "type": "object",
                            "description": "The cdnrrev value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnrarev": {
                            "type": "object",
                            "description": "The cdnrarev value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isd": {
                            "type": "object",
                            "description": "The isd value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isda": {
                            "type": "object",
                            "description": "The isda value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "itcrev": {
                    "type": "object",
                    "description": "The itcrev value returned by GSTN.",
                    "properties": {
                      "nonrevsup": {
                        "type": "object",
                        "description": "The nonrevsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "b2b": {
                            "type": "object",
                            "description": "The b2b value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "b2ba": {
                            "type": "object",
                            "description": "The b2ba value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "isdsup": {
                        "type": "object",
                        "description": "The isdsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "isd": {
                            "type": "object",
                            "description": "The isd value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isda": {
                            "type": "object",
                            "description": "The isda value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "revsup": {
                        "type": "object",
                        "description": "The revsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "b2b": {
                            "type": "object",
                            "description": "The b2b value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "b2ba": {
                            "type": "object",
                            "description": "The b2ba value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "imports": {
                        "type": "object",
                        "description": "The imports value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "impg": {
                            "type": "object",
                            "description": "The impg value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impgsez": {
                            "type": "object",
                            "description": "The impgsez value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impga": {
                            "type": "object",
                            "description": "The impga value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impgasez": {
                            "type": "object",
                            "description": "The impgasez value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "othersup": {
                        "type": "object",
                        "description": "The othersup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnrrev": {
                            "type": "object",
                            "description": "The cdnrrev value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnrarev": {
                            "type": "object",
                            "description": "The cdnrarev value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isd": {
                            "type": "object",
                            "description": "The isd value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isda": {
                            "type": "object",
                            "description": "The isda value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "itcRejected": {
                    "type": "object",
                    "description": "The itc Rejected value returned by GSTN.",
                    "properties": {
                      "nonrevsup": {
                        "type": "object",
                        "description": "The nonrevsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "b2b": {
                            "type": "object",
                            "description": "The b2b value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "b2ba": {
                            "type": "object",
                            "description": "The b2ba value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "ecom": {
                            "type": "object",
                            "description": "The ecom value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "ecoma": {
                            "type": "object",
                            "description": "The ecoma value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "isdsup": {
                        "type": "object",
                        "description": "The isdsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "isd": {
                            "type": "object",
                            "description": "The isd value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isda": {
                            "type": "object",
                            "description": "The isda value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "revsup": {
                        "type": "object",
                        "description": "The revsup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "b2b": {
                            "type": "object",
                            "description": "The b2b value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "b2ba": {
                            "type": "object",
                            "description": "The b2ba value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "imports": {
                        "type": "object",
                        "description": "The imports value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "impg": {
                            "type": "object",
                            "description": "The impg value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impgsez": {
                            "type": "object",
                            "description": "The impgsez value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impga": {
                            "type": "object",
                            "description": "The impga value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "impgasez": {
                            "type": "object",
                            "description": "The impgasez value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      },
                      "othersup": {
                        "type": "object",
                        "description": "The othersup value returned by GSTN.",
                        "properties": {
                          "igst": {
                            "type": "number",
                            "description": "Total IGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cgst": {
                            "type": "number",
                            "description": "Total CGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "sgst": {
                            "type": "number",
                            "description": "Total SGST value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cess": {
                            "type": "number",
                            "description": "Total CESS value of the supply",
                            "maximum": 9999999999999.99
                          },
                          "cdnr": {
                            "type": "object",
                            "description": "The cdnr value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnra": {
                            "type": "object",
                            "description": "The cdnra value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnrrev": {
                            "type": "object",
                            "description": "The cdnrrev value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "cdnrarev": {
                            "type": "object",
                            "description": "The cdnrarev value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isd": {
                            "type": "object",
                            "description": "The isd value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "isda": {
                            "type": "object",
                            "description": "The isda value returned by GSTN.",
                            "properties": {
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value of the section",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value of the section",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "cpsumm": {
                "type": "object",
                "description": "The cpsumm value returned by GSTN.",
                "properties": {
                  "b2b": {
                    "type": "array",
                    "description": "The b2b value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "b2ba": {
                    "type": "array",
                    "description": "The b2ba value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "cdnr": {
                    "type": "array",
                    "description": "The cdnr value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "nttyp": {
                          "type": "string",
                          "description": "Credit or Debit note",
                          "enum": [
                            "C",
                            "D"
                          ]
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "cdnra": {
                    "type": "array",
                    "description": "The cdnra value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "nttyp": {
                          "type": "string",
                          "description": "Credit or Debit note",
                          "enum": [
                            "C",
                            "D"
                          ]
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "isd": {
                    "type": "array",
                    "description": "The isd value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR6 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR6 of supplier",
                          "minLength": 1
                        },
                        "doctyp": {
                          "type": "string",
                          "description": "ISD Document type",
                          "enum": [
                            "ISDI",
                            "ISDC"
                          ]
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "isda": {
                    "type": "array",
                    "description": "The isda value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR6 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR6 of supplier",
                          "minLength": 1
                        },
                        "doctyp": {
                          "type": "string",
                          "description": "ISD Document type",
                          "enum": [
                            "ISDI",
                            "ISDC"
                          ]
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "impgsez": {
                    "type": "array",
                    "description": "The impgsez value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "portcode": {
                          "type": "string",
                          "description": "Port Code",
                          "minLength": 1,
                          "maxLength": 6
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "ecom": {
                    "type": "array",
                    "description": "The ecom value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "ecoma": {
                    "type": "array",
                    "description": "The ecoma value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "itcrev": {
                    "type": "object",
                    "description": "ITC-reversal counterparty summaries by document section.",
                    "properties": {
                      "b2b": {
                        "type": "array",
                        "description": "The b2b value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "ttldocs": {
                              "type": "number",
                              "description": "Total Documents"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Total Taxable value",
                              "maximum": 9999999999999.99
                            },
                            "igst": {
                              "type": "number",
                              "description": "Total IGST value",
                              "maximum": 9999999999999.99
                            },
                            "cgst": {
                              "type": "number",
                              "description": "Total CGST value",
                              "maximum": 9999999999999.99
                            },
                            "sgst": {
                              "type": "number",
                              "description": "Total SGST value",
                              "maximum": 9999999999999.99
                            },
                            "cess": {
                              "type": "number",
                              "description": "Total CESS value",
                              "maximum": 9999999999999.99
                            }
                          }
                        }
                      },
                      "b2ba": {
                        "type": "array",
                        "description": "The b2ba value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "ttldocs": {
                              "type": "number",
                              "description": "Total Documents"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Total Taxable value",
                              "maximum": 9999999999999.99
                            },
                            "igst": {
                              "type": "number",
                              "description": "Total IGST value",
                              "maximum": 9999999999999.99
                            },
                            "cgst": {
                              "type": "number",
                              "description": "Total CGST value",
                              "maximum": 9999999999999.99
                            },
                            "sgst": {
                              "type": "number",
                              "description": "Total SGST value",
                              "maximum": 9999999999999.99
                            },
                            "cess": {
                              "type": "number",
                              "description": "Total CESS value",
                              "maximum": 9999999999999.99
                            }
                          }
                        }
                      },
                      "cdnr": {
                        "type": "array",
                        "description": "The cdnr value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "nttyp": {
                              "type": "string",
                              "description": "Credit or Debit note",
                              "enum": [
                                "C",
                                "D"
                              ]
                            },
                            "ttldocs": {
                              "type": "number",
                              "description": "Total Documents"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Total Taxable value",
                              "maximum": 9999999999999.99
                            },
                            "igst": {
                              "type": "number",
                              "description": "Total IGST value",
                              "maximum": 9999999999999.99
                            },
                            "cgst": {
                              "type": "number",
                              "description": "Total CGST value",
                              "maximum": 9999999999999.99
                            },
                            "sgst": {
                              "type": "number",
                              "description": "Total SGST value",
                              "maximum": 9999999999999.99
                            },
                            "cess": {
                              "type": "number",
                              "description": "Total CESS value",
                              "maximum": 9999999999999.99
                            }
                          }
                        }
                      },
                      "cdnra": {
                        "type": "array",
                        "description": "The cdnra value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "nttyp": {
                              "type": "string",
                              "description": "Credit or Debit note",
                              "enum": [
                                "C",
                                "D"
                              ]
                            },
                            "ttldocs": {
                              "type": "number",
                              "description": "Total Documents"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Total Taxable value",
                              "maximum": 9999999999999.99
                            },
                            "igst": {
                              "type": "number",
                              "description": "Total IGST value",
                              "maximum": 9999999999999.99
                            },
                            "cgst": {
                              "type": "number",
                              "description": "Total CGST value",
                              "maximum": 9999999999999.99
                            },
                            "sgst": {
                              "type": "number",
                              "description": "Total SGST value",
                              "maximum": 9999999999999.99
                            },
                            "cess": {
                              "type": "number",
                              "description": "Total CESS value",
                              "maximum": 9999999999999.99
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "cpSummRej": {
                "type": "object",
                "description": "The cp Summ Rej value returned by GSTN.",
                "properties": {
                  "b2b": {
                    "type": "array",
                    "description": "The b2b value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "b2ba": {
                    "type": "array",
                    "description": "The b2ba value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "cdnr": {
                    "type": "array",
                    "description": "The cdnr value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "nttyp": {
                          "type": "string",
                          "description": "Credit or Debit note",
                          "enum": [
                            "C",
                            "D"
                          ]
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "cdnra": {
                    "type": "array",
                    "description": "The cdnra value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "nttyp": {
                          "type": "string",
                          "description": "Credit or Debit note",
                          "enum": [
                            "C",
                            "D"
                          ]
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "isd": {
                    "type": "array",
                    "description": "The isd value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR6 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR6 of supplier",
                          "minLength": 1
                        },
                        "doctyp": {
                          "type": "string",
                          "description": "ISD Document type",
                          "enum": [
                            "ISDI",
                            "ISDC"
                          ]
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "isda": {
                    "type": "array",
                    "description": "The isda value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR6 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR6 of supplier",
                          "minLength": 1
                        },
                        "doctyp": {
                          "type": "string",
                          "description": "ISD Document type",
                          "enum": [
                            "ISDI",
                            "ISDC"
                          ]
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "impgsez": {
                    "type": "array",
                    "description": "The impgsez value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "portcode": {
                          "type": "string",
                          "description": "Port Code",
                          "minLength": 1,
                          "maxLength": 6
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "ecom": {
                    "type": "array",
                    "description": "The ecom value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "ecoma": {
                    "type": "array",
                    "description": "The ecoma value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "ttldocs": {
                          "type": "number",
                          "description": "Total Documents"
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        },
                        "cgst": {
                          "type": "number",
                          "description": "Total CGST value",
                          "maximum": 9999999999999.99
                        },
                        "sgst": {
                          "type": "number",
                          "description": "Total SGST value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "itcrev": {
                    "type": "object",
                    "description": "ITC-reversal counterparty summaries by document section.",
                    "properties": {
                      "b2b": {
                        "type": "array",
                        "description": "The b2b value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "ttldocs": {
                              "type": "number",
                              "description": "Total Documents"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Total Taxable value",
                              "maximum": 9999999999999.99
                            },
                            "igst": {
                              "type": "number",
                              "description": "Total IGST value",
                              "maximum": 9999999999999.99
                            },
                            "cgst": {
                              "type": "number",
                              "description": "Total CGST value",
                              "maximum": 9999999999999.99
                            },
                            "sgst": {
                              "type": "number",
                              "description": "Total SGST value",
                              "maximum": 9999999999999.99
                            },
                            "cess": {
                              "type": "number",
                              "description": "Total CESS value",
                              "maximum": 9999999999999.99
                            }
                          }
                        }
                      },
                      "b2ba": {
                        "type": "array",
                        "description": "The b2ba value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "ttldocs": {
                              "type": "number",
                              "description": "Total Documents"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Total Taxable value",
                              "maximum": 9999999999999.99
                            },
                            "igst": {
                              "type": "number",
                              "description": "Total IGST value",
                              "maximum": 9999999999999.99
                            },
                            "cgst": {
                              "type": "number",
                              "description": "Total CGST value",
                              "maximum": 9999999999999.99
                            },
                            "sgst": {
                              "type": "number",
                              "description": "Total SGST value",
                              "maximum": 9999999999999.99
                            },
                            "cess": {
                              "type": "number",
                              "description": "Total CESS value",
                              "maximum": 9999999999999.99
                            }
                          }
                        }
                      },
                      "cdnr": {
                        "type": "array",
                        "description": "The cdnr value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "nttyp": {
                              "type": "string",
                              "description": "Credit or Debit note",
                              "enum": [
                                "C",
                                "D"
                              ]
                            },
                            "ttldocs": {
                              "type": "number",
                              "description": "Total Documents"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Total Taxable value",
                              "maximum": 9999999999999.99
                            },
                            "igst": {
                              "type": "number",
                              "description": "Total IGST value",
                              "maximum": 9999999999999.99
                            },
                            "cgst": {
                              "type": "number",
                              "description": "Total CGST value",
                              "maximum": 9999999999999.99
                            },
                            "sgst": {
                              "type": "number",
                              "description": "Total SGST value",
                              "maximum": 9999999999999.99
                            },
                            "cess": {
                              "type": "number",
                              "description": "Total CESS value",
                              "maximum": 9999999999999.99
                            }
                          }
                        }
                      },
                      "cdnra": {
                        "type": "array",
                        "description": "The cdnra value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "nttyp": {
                              "type": "string",
                              "description": "Credit or Debit note",
                              "enum": [
                                "C",
                                "D"
                              ]
                            },
                            "ttldocs": {
                              "type": "number",
                              "description": "Total Documents"
                            },
                            "txval": {
                              "type": "number",
                              "description": "Total Taxable value",
                              "maximum": 9999999999999.99
                            },
                            "igst": {
                              "type": "number",
                              "description": "Total IGST value",
                              "maximum": 9999999999999.99
                            },
                            "cgst": {
                              "type": "number",
                              "description": "Total CGST value",
                              "maximum": 9999999999999.99
                            },
                            "sgst": {
                              "type": "number",
                              "description": "Total SGST value",
                              "maximum": 9999999999999.99
                            },
                            "cess": {
                              "type": "number",
                              "description": "Total CESS value",
                              "maximum": 9999999999999.99
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "docdata": {
                "type": "object",
                "description": "The docdata value returned by GSTN.",
                "properties": {
                  "b2b": {
                    "type": "array",
                    "description": "The b2b value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "inv": {
                          "type": "array",
                          "description": "The inv value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "inum": {
                                "type": "string",
                                "description": "Invoice Number",
                                "minLength": 1
                              },
                              "typ": {
                                "type": "string",
                                "description": "Invoice Type",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ]
                              },
                              "dt": {
                                "type": "string",
                                "description": "Invoice Date",
                                "minLength": 1
                              },
                              "val": {
                                "type": "number",
                                "description": "Invoice Value",
                                "maximum": 9999999999999.99
                              },
                              "pos": {
                                "type": "string",
                                "description": "Place of Supply",
                                "minLength": 2,
                                "maxLength": 2
                              },
                              "rev": {
                                "type": "string",
                                "description": "Supply attracts reverse charge or not",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "itcavl": {
                                "type": "string",
                                "description": "ITC Availability",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ]
                              },
                              "rsn": {
                                "type": "string",
                                "description": "Reason for ITC Unavailability"
                              },
                              "diffprcnt": {
                                "type": "number",
                                "description": "Applicable % of tax rate",
                                "enum": [
                                  0.65,
                                  1
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "imsStatus": {
                                "type": "string",
                                "description": "IMS Status",
                                "enum": [
                                  "A",
                                  "R",
                                  "N"
                                ]
                              },
                              "items": {
                                "type": "array",
                                "description": "The items value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "num": {
                                      "type": "number",
                                      "description": "Item Number"
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "Tax Rate",
                                      "minimum": 0,
                                      "maximum": 999.9
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Total Taxable value",
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Total IGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Total CGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "Total SGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Total CESS value",
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "irn": {
                                "type": "string",
                                "description": "The irn value returned by GSTN."
                              },
                              "irngendate": {
                                "type": "string",
                                "description": "The irngendate value returned by GSTN."
                              },
                              "srctyp": {
                                "type": "string",
                                "description": "The srctyp value returned by GSTN."
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "b2ba": {
                    "type": "array",
                    "description": "The b2ba value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "inv": {
                          "type": "array",
                          "description": "The inv value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "oinum": {
                                "type": "string",
                                "description": "Original Invoice Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "oidt": {
                                "type": "string",
                                "description": "Original Invoice Date",
                                "minLength": 1
                              },
                              "inum": {
                                "type": "string",
                                "description": "Invoice Number",
                                "minLength": 1
                              },
                              "typ": {
                                "type": "string",
                                "description": "Invoice Type",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ]
                              },
                              "dt": {
                                "type": "string",
                                "description": "Invoice Date",
                                "minLength": 1
                              },
                              "val": {
                                "type": "number",
                                "description": "Invoice Value",
                                "maximum": 9999999999999.99
                              },
                              "pos": {
                                "type": "string",
                                "description": "Place of Supply",
                                "minLength": 2,
                                "maxLength": 2
                              },
                              "rev": {
                                "type": "string",
                                "description": "Supply attracts Supply attracts reverse charge or not or not",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "itcavl": {
                                "type": "string",
                                "description": "ITC Availability",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ]
                              },
                              "rsn": {
                                "type": "string",
                                "description": "Reason for ITC unavailability"
                              },
                              "diffprcnt": {
                                "type": "number",
                                "description": "Applicable % of tax rate",
                                "enum": [
                                  0.65,
                                  1
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "imsStatus": {
                                "type": "string",
                                "description": "IMS Status",
                                "enum": [
                                  "A",
                                  "R",
                                  "N"
                                ]
                              },
                              "items": {
                                "type": "array",
                                "description": "The items value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "num": {
                                      "type": "number",
                                      "description": "Item Number"
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "Tax Rate",
                                      "minimum": 0,
                                      "maximum": 999.9
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Total Taxable value",
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Total IGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Total CGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "Total SGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Total CESS value",
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "cdnr": {
                    "type": "array",
                    "description": "The cdnr value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "nt": {
                          "type": "array",
                          "description": "The nt value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "ntnum": {
                                "type": "string",
                                "description": "Note number",
                                "minLength": 1
                              },
                              "typ": {
                                "type": "string",
                                "description": "Note Type",
                                "enum": [
                                  "C",
                                  "D"
                                ]
                              },
                              "suptyp": {
                                "type": "string",
                                "description": "Note Supply Type",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ]
                              },
                              "dt": {
                                "type": "string",
                                "description": "Note date",
                                "minLength": 1
                              },
                              "val": {
                                "type": "number",
                                "description": "Note Value",
                                "maximum": 9999999999999.99
                              },
                              "pos": {
                                "type": "string",
                                "description": "Place of supply",
                                "minLength": 2,
                                "maxLength": 2
                              },
                              "rev": {
                                "type": "string",
                                "description": "Supply attracts reverse charge",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "itcavl": {
                                "type": "string",
                                "description": "ITC Availability",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ]
                              },
                              "rsn": {
                                "type": "string",
                                "description": "Reason for ITC unavailablility"
                              },
                              "diffprcnt": {
                                "type": "number",
                                "description": "Applicable % of tax rate",
                                "enum": [
                                  0.65,
                                  1
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "imsStatus": {
                                "type": "string",
                                "description": "IMS Status",
                                "enum": [
                                  "A",
                                  "R",
                                  "N"
                                ]
                              },
                              "items": {
                                "type": "array",
                                "description": "The items value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "num": {
                                      "type": "number",
                                      "description": "Item Number"
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "Tax Rate",
                                      "minimum": 0,
                                      "maximum": 999.9
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Total Taxable value",
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Total IGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Total CGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "Total SGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Total CESS value",
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "irn": {
                                "type": "string",
                                "description": "The irn value returned by GSTN."
                              },
                              "irngendate": {
                                "type": "string",
                                "description": "The irngendate value returned by GSTN."
                              },
                              "srctyp": {
                                "type": "string",
                                "description": "The srctyp value returned by GSTN."
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "cdnra": {
                    "type": "array",
                    "description": "The cdnra value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "nt": {
                          "type": "array",
                          "description": "The nt value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "onttyp": {
                                "type": "string",
                                "description": "Original Note Type",
                                "enum": [
                                  "C",
                                  "D"
                                ]
                              },
                              "ontnum": {
                                "type": "string",
                                "description": "Original Note Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "ontdt": {
                                "type": "string",
                                "description": "Original Note Date",
                                "minLength": 1
                              },
                              "ntnum": {
                                "type": "string",
                                "description": "Note number",
                                "minLength": 1
                              },
                              "typ": {
                                "type": "string",
                                "description": "Note Type",
                                "enum": [
                                  "C",
                                  "D"
                                ]
                              },
                              "suptyp": {
                                "type": "string",
                                "description": "Note Supply Type",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ]
                              },
                              "dt": {
                                "type": "string",
                                "description": "Note date",
                                "minLength": 1
                              },
                              "val": {
                                "type": "number",
                                "description": "Note value",
                                "maximum": 9999999999999.99
                              },
                              "pos": {
                                "type": "string",
                                "description": "Place of supply",
                                "minLength": 2,
                                "maxLength": 2
                              },
                              "rev": {
                                "type": "string",
                                "description": "Supply attracts reverse charge or not",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "itcavl": {
                                "type": "string",
                                "description": "ITC Availability",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ]
                              },
                              "rsn": {
                                "type": "string",
                                "description": "Reason for ITC unavailability"
                              },
                              "diffprcnt": {
                                "type": "number",
                                "description": "Applicable % of tax rate",
                                "enum": [
                                  0.65,
                                  1
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "imsStatus": {
                                "type": "string",
                                "description": "IMS Status",
                                "enum": [
                                  "A",
                                  "R",
                                  "N"
                                ]
                              },
                              "items": {
                                "type": "array",
                                "description": "The items value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "num": {
                                      "type": "number",
                                      "description": "Item Number"
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "Tax Rate",
                                      "minimum": 0,
                                      "maximum": 999.9
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Total Taxable value",
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Total IGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Total CGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "Total SGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Total CESS value",
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "isd": {
                    "type": "array",
                    "description": "The isd value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "GSTR6 filed period of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR6 of supplier",
                          "minLength": 1
                        },
                        "doclist": {
                          "type": "array",
                          "description": "The doclist value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "doctyp": {
                                "type": "string",
                                "description": "ISD Document type",
                                "enum": [
                                  "ISDI",
                                  "ISDC"
                                ]
                              },
                              "docnum": {
                                "type": "string",
                                "description": "ISD Document number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "docdt": {
                                "type": "string",
                                "description": "ISD Document date",
                                "minLength": 1
                              },
                              "oinvnum": {
                                "type": "string",
                                "description": "Original Invoice Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "oinvdt": {
                                "type": "string",
                                "description": "Original Invoice date",
                                "minLength": 1
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "itcelg": {
                                "type": "string",
                                "description": "Eligible for ITC",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "isda": {
                    "type": "array",
                    "description": "The isda value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "GSTR6 filed period of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR6 of supplier",
                          "minLength": 1
                        },
                        "doclist": {
                          "type": "array",
                          "description": "The doclist value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "odoctyp": {
                                "type": "string",
                                "description": "Original ISD Document type",
                                "enum": [
                                  "ISDI",
                                  "ISDC"
                                ]
                              },
                              "odocnum": {
                                "type": "string",
                                "description": "Original Document number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "odocdt": {
                                "type": "string",
                                "description": "Original Document Date",
                                "minLength": 1
                              },
                              "doctyp": {
                                "type": "string",
                                "description": "ISD Document type",
                                "enum": [
                                  "ISDI",
                                  "ISDC"
                                ]
                              },
                              "docnum": {
                                "type": "string",
                                "description": "ISD Document number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "docdt": {
                                "type": "string",
                                "description": "ISD Document date",
                                "minLength": 1
                              },
                              "oinvnum": {
                                "type": "string",
                                "description": "Original Invoice Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "oinvdt": {
                                "type": "string",
                                "description": "Original Invoice date",
                                "minLength": 1
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "itcelg": {
                                "type": "string",
                                "description": "Eligible for ITC",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "impg": {
                    "type": "array",
                    "description": "The impg value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "refdt": {
                          "type": "string",
                          "description": "ICEGATE Reference Date",
                          "minLength": 1
                        },
                        "recdt": {
                          "type": "string",
                          "description": "Received Date in the GST system",
                          "minLength": 1
                        },
                        "portcode": {
                          "type": "string",
                          "description": "Port code",
                          "minLength": 1,
                          "maxLength": 6
                        },
                        "boenum": {
                          "type": "string",
                          "description": "Bill of entry number",
                          "minLength": 1,
                          "maxLength": 16
                        },
                        "boedt": {
                          "type": "string",
                          "description": "Bill of entry date",
                          "minLength": 1
                        },
                        "isamd": {
                          "type": "string",
                          "description": "Is Amended (Yes)",
                          "enum": [
                            "Y",
                            "N"
                          ]
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "impgsez": {
                    "type": "array",
                    "description": "The impgsez value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "boe": {
                          "type": "array",
                          "description": "The boe value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "refdt": {
                                "type": "string",
                                "description": "ICEGATE Reference Date",
                                "minLength": 1
                              },
                              "recdt": {
                                "type": "string",
                                "description": "Received Date in the GST system",
                                "minLength": 1
                              },
                              "portcode": {
                                "type": "string",
                                "description": "Port Code",
                                "minLength": 1,
                                "maxLength": 6
                              },
                              "boenum": {
                                "type": "string",
                                "description": "Bill of entry Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "boedt": {
                                "type": "string",
                                "description": "Bill of entry Date",
                                "minLength": 1
                              },
                              "isamd": {
                                "type": "string",
                                "description": "Is Amended (Yes)",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "ecom": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "inv": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "dt": {
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                                "description": "Invoice Date"
                              },
                              "val": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Invoice Value"
                              },
                              "rev": {
                                "type": "string",
                                "enum": [
                                  "Y",
                                  "N"
                                ],
                                "description": "Supply attracts reverse charge or not"
                              },
                              "itcavl": {
                                "type": "string",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ],
                                "description": "ITC Availability"
                              },
                              "pos": {
                                "type": "string",
                                "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|9[67])$",
                                "maxLength": 2,
                                "minLength": 2,
                                "description": "Place of Supply"
                              },
                              "typ": {
                                "type": "string",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ],
                                "description": "Invoice Type"
                              },
                              "inum": {
                                "type": "string",
                                "maxLength": 16,
                                "minLength": 1,
                                "pattern": "^(?!0*$)[a-zA-Z0-9-/]+$",
                                "description": "Invoice Number"
                              },
                              "rsn": {
                                "description": "Reason for ITC unavailability",
                                "type": "string"
                              },
                              "txval": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total Taxable value"
                              },
                              "igst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total IGST value"
                              },
                              "cgst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total CGST value"
                              },
                              "sgst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total SGST value"
                              },
                              "cess": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total CESS value"
                              },
                              "imsStatus": {
                                "type": "string",
                                "enum": [
                                  "A",
                                  "R",
                                  "N"
                                ],
                                "description": "IMS Status"
                              },
                              "items": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "description": "E-commerce invoice line. The production artifact does not define stable line properties.",
                                  "additionalProperties": true
                                }
                              }
                            },
                            "required": [
                              "dt",
                              "val",
                              "rev",
                              "itcavl",
                              "pos",
                              "typ",
                              "inum",
                              "rsn"
                            ]
                          }
                        },
                        "ctin": {
                          "anyOf": [
                            {
                              "type": "string",
                              "maxLength": 15,
                              "minLength": 15,
                              "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                            },
                            {
                              "type": "string",
                              "maxLength": 15,
                              "minLength": 15,
                              "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                            }
                          ],
                          "description": "Gstin of the supplier"
                        },
                        "trdnm": {
                          "description": "Trade/Legal name of the supplier",
                          "type": "string"
                        },
                        "supfildt": {
                          "type": "string",
                          "minLength": 1,
                          "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                          "description": "Date of filing GSTR1/5 of supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "minLength": 1,
                          "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$",
                          "description": "Filing period of GSTR1/5 of supplier"
                        }
                      },
                      "required": [
                        "inv",
                        "trdnm",
                        "supfildt",
                        "supprd",
                        "ctin"
                      ]
                    }
                  },
                  "ecoma": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "inv": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "oinum": {
                                "type": "string",
                                "maxLength": 16,
                                "minLength": 1,
                                "pattern": "^(?!0*$)[a-zA-Z0-9-/]+$",
                                "description": "Original Invoice Number"
                              },
                              "oidt": {
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                                "description": "Original Invoice Date"
                              },
                              "dt": {
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                                "description": "Invoice Date"
                              },
                              "val": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Invoice Value"
                              },
                              "rev": {
                                "type": "string",
                                "enum": [
                                  "Y",
                                  "N"
                                ],
                                "description": "Supply attracts reverse charge or not"
                              },
                              "itcavl": {
                                "type": "string",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ],
                                "description": "ITC Availability"
                              },
                              "pos": {
                                "type": "string",
                                "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|9[67])$",
                                "maxLength": 2,
                                "minLength": 2,
                                "description": "Place of Supply"
                              },
                              "typ": {
                                "type": "string",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ],
                                "description": "Invoice Type"
                              },
                              "inum": {
                                "type": "string",
                                "maxLength": 16,
                                "minLength": 1,
                                "pattern": "^(?!0*$)[a-zA-Z0-9-/]+$",
                                "description": "Invoice Number"
                              },
                              "rsn": {
                                "description": "Reason for ITC unavailability",
                                "type": "string"
                              },
                              "txval": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total Taxable value"
                              },
                              "igst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total IGST value"
                              },
                              "cgst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total CGST value"
                              },
                              "sgst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total SGST value"
                              },
                              "cess": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total CESS value"
                              },
                              "imsStatus": {
                                "type": "string",
                                "enum": [
                                  "A",
                                  "R",
                                  "N"
                                ],
                                "description": "IMS Status"
                              },
                              "items": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "description": "E-commerce invoice line. The production artifact does not define stable line properties.",
                                  "additionalProperties": true
                                }
                              }
                            },
                            "required": [
                              "oinum",
                              "oidt",
                              "dt",
                              "val",
                              "rev",
                              "itcavl",
                              "pos",
                              "typ",
                              "inum",
                              "rsn"
                            ]
                          }
                        },
                        "ctin": {
                          "anyOf": [
                            {
                              "type": "string",
                              "maxLength": 15,
                              "minLength": 15,
                              "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                            },
                            {
                              "type": "string",
                              "maxLength": 15,
                              "minLength": 15,
                              "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                            }
                          ],
                          "description": "Gstin of the supplier"
                        },
                        "trdnm": {
                          "description": "Trade/Legal name of the supplier",
                          "type": "string"
                        },
                        "supfildt": {
                          "type": "string",
                          "minLength": 1,
                          "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                          "description": "Date of filing GSTR1/5 of supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "minLength": 1,
                          "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$",
                          "description": "Filing period of GSTR1/5 of supplier"
                        }
                      },
                      "required": [
                        "inv",
                        "trdnm",
                        "supfildt",
                        "supprd",
                        "ctin"
                      ]
                    }
                  },
                  "itcrev": {
                    "type": "object",
                    "description": "ITC-reversal documents by section.",
                    "properties": {
                      "b2b": {
                        "type": "array",
                        "description": "The b2b value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "inv": {
                              "type": "array",
                              "description": "The inv value returned by GSTN.",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "inum": {
                                    "type": "string",
                                    "description": "Invoice Number",
                                    "minLength": 1
                                  },
                                  "typ": {
                                    "type": "string",
                                    "description": "Invoice Type",
                                    "enum": [
                                      "R",
                                      "DE",
                                      "SEWP",
                                      "SEWOP",
                                      "CBW"
                                    ]
                                  },
                                  "dt": {
                                    "type": "string",
                                    "description": "Invoice Date",
                                    "minLength": 1
                                  },
                                  "val": {
                                    "type": "number",
                                    "description": "Invoice Value",
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of Supply",
                                    "minLength": 2,
                                    "maxLength": 2
                                  },
                                  "rev": {
                                    "type": "string",
                                    "description": "Supply attracts reverse charge or not",
                                    "enum": [
                                      "Y",
                                      "N"
                                    ]
                                  },
                                  "itcavl": {
                                    "type": "string",
                                    "description": "ITC Availability",
                                    "enum": [
                                      "Y",
                                      "N",
                                      "T"
                                    ]
                                  },
                                  "rsn": {
                                    "type": "string",
                                    "description": "Reason for ITC Unavailability"
                                  },
                                  "diffprcnt": {
                                    "type": "number",
                                    "description": "Applicable % of tax rate",
                                    "enum": [
                                      0.65,
                                      1
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Total Taxable value",
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Total IGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Total CGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "Total SGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Total CESS value",
                                    "maximum": 9999999999999.99
                                  },
                                  "imsStatus": {
                                    "type": "string",
                                    "description": "IMS Status",
                                    "enum": [
                                      "A",
                                      "R",
                                      "N"
                                    ]
                                  },
                                  "items": {
                                    "type": "array",
                                    "description": "The items value returned by GSTN.",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "num": {
                                          "type": "number",
                                          "description": "Item Number"
                                        },
                                        "rt": {
                                          "type": "number",
                                          "description": "Tax Rate",
                                          "minimum": 0,
                                          "maximum": 999.9
                                        },
                                        "txval": {
                                          "type": "number",
                                          "description": "Total Taxable value",
                                          "maximum": 9999999999999.99
                                        },
                                        "igst": {
                                          "type": "number",
                                          "description": "Total IGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cgst": {
                                          "type": "number",
                                          "description": "Total CGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "sgst": {
                                          "type": "number",
                                          "description": "Total SGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cess": {
                                          "type": "number",
                                          "description": "Total CESS value",
                                          "maximum": 9999999999999.99
                                        }
                                      }
                                    }
                                  },
                                  "irn": {
                                    "type": "string",
                                    "description": "The irn value returned by GSTN."
                                  },
                                  "irngendate": {
                                    "type": "string",
                                    "description": "The irngendate value returned by GSTN."
                                  },
                                  "srctyp": {
                                    "type": "string",
                                    "description": "The srctyp value returned by GSTN."
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "b2ba": {
                        "type": "array",
                        "description": "The b2ba value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "inv": {
                              "type": "array",
                              "description": "The inv value returned by GSTN.",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "oinum": {
                                    "type": "string",
                                    "description": "Original Invoice Number",
                                    "minLength": 1,
                                    "maxLength": 16
                                  },
                                  "oidt": {
                                    "type": "string",
                                    "description": "Original Invoice Date",
                                    "minLength": 1
                                  },
                                  "inum": {
                                    "type": "string",
                                    "description": "Invoice Number",
                                    "minLength": 1
                                  },
                                  "typ": {
                                    "type": "string",
                                    "description": "Invoice Type",
                                    "enum": [
                                      "R",
                                      "DE",
                                      "SEWP",
                                      "SEWOP",
                                      "CBW"
                                    ]
                                  },
                                  "dt": {
                                    "type": "string",
                                    "description": "Invoice Date",
                                    "minLength": 1
                                  },
                                  "val": {
                                    "type": "number",
                                    "description": "Invoice Value",
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of Supply",
                                    "minLength": 2,
                                    "maxLength": 2
                                  },
                                  "rev": {
                                    "type": "string",
                                    "description": "Supply attracts Supply attracts reverse charge or not or not",
                                    "enum": [
                                      "Y",
                                      "N"
                                    ]
                                  },
                                  "itcavl": {
                                    "type": "string",
                                    "description": "ITC Availability",
                                    "enum": [
                                      "Y",
                                      "N",
                                      "T"
                                    ]
                                  },
                                  "rsn": {
                                    "type": "string",
                                    "description": "Reason for ITC unavailability"
                                  },
                                  "diffprcnt": {
                                    "type": "number",
                                    "description": "Applicable % of tax rate",
                                    "enum": [
                                      0.65,
                                      1
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Total Taxable value",
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Total IGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Total CGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "Total SGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Total CESS value",
                                    "maximum": 9999999999999.99
                                  },
                                  "imsStatus": {
                                    "type": "string",
                                    "description": "IMS Status",
                                    "enum": [
                                      "A",
                                      "R",
                                      "N"
                                    ]
                                  },
                                  "items": {
                                    "type": "array",
                                    "description": "The items value returned by GSTN.",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "num": {
                                          "type": "number",
                                          "description": "Item Number"
                                        },
                                        "rt": {
                                          "type": "number",
                                          "description": "Tax Rate",
                                          "minimum": 0,
                                          "maximum": 999.9
                                        },
                                        "txval": {
                                          "type": "number",
                                          "description": "Total Taxable value",
                                          "maximum": 9999999999999.99
                                        },
                                        "igst": {
                                          "type": "number",
                                          "description": "Total IGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cgst": {
                                          "type": "number",
                                          "description": "Total CGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "sgst": {
                                          "type": "number",
                                          "description": "Total SGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cess": {
                                          "type": "number",
                                          "description": "Total CESS value",
                                          "maximum": 9999999999999.99
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "cdnr": {
                        "type": "array",
                        "description": "The cdnr value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "nt": {
                              "type": "array",
                              "description": "The nt value returned by GSTN.",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "ntnum": {
                                    "type": "string",
                                    "description": "Note number",
                                    "minLength": 1
                                  },
                                  "typ": {
                                    "type": "string",
                                    "description": "Note Type",
                                    "enum": [
                                      "C",
                                      "D"
                                    ]
                                  },
                                  "suptyp": {
                                    "type": "string",
                                    "description": "Note Supply Type",
                                    "enum": [
                                      "R",
                                      "DE",
                                      "SEWP",
                                      "SEWOP",
                                      "CBW"
                                    ]
                                  },
                                  "dt": {
                                    "type": "string",
                                    "description": "Note date",
                                    "minLength": 1
                                  },
                                  "val": {
                                    "type": "number",
                                    "description": "Note Value",
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply",
                                    "minLength": 2,
                                    "maxLength": 2
                                  },
                                  "rev": {
                                    "type": "string",
                                    "description": "Supply attracts reverse charge",
                                    "enum": [
                                      "Y",
                                      "N"
                                    ]
                                  },
                                  "itcavl": {
                                    "type": "string",
                                    "description": "ITC Availability",
                                    "enum": [
                                      "Y",
                                      "N",
                                      "T"
                                    ]
                                  },
                                  "rsn": {
                                    "type": "string",
                                    "description": "Reason for ITC unavailablility"
                                  },
                                  "diffprcnt": {
                                    "type": "number",
                                    "description": "Applicable % of tax rate",
                                    "enum": [
                                      0.65,
                                      1
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Total Taxable value",
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Total IGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Total CGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "Total SGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Total CESS value",
                                    "maximum": 9999999999999.99
                                  },
                                  "imsStatus": {
                                    "type": "string",
                                    "description": "IMS Status",
                                    "enum": [
                                      "A",
                                      "R",
                                      "N"
                                    ]
                                  },
                                  "items": {
                                    "type": "array",
                                    "description": "The items value returned by GSTN.",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "num": {
                                          "type": "number",
                                          "description": "Item Number"
                                        },
                                        "rt": {
                                          "type": "number",
                                          "description": "Tax Rate",
                                          "minimum": 0,
                                          "maximum": 999.9
                                        },
                                        "txval": {
                                          "type": "number",
                                          "description": "Total Taxable value",
                                          "maximum": 9999999999999.99
                                        },
                                        "igst": {
                                          "type": "number",
                                          "description": "Total IGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cgst": {
                                          "type": "number",
                                          "description": "Total CGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "sgst": {
                                          "type": "number",
                                          "description": "Total SGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cess": {
                                          "type": "number",
                                          "description": "Total CESS value",
                                          "maximum": 9999999999999.99
                                        }
                                      }
                                    }
                                  },
                                  "irn": {
                                    "type": "string",
                                    "description": "The irn value returned by GSTN."
                                  },
                                  "irngendate": {
                                    "type": "string",
                                    "description": "The irngendate value returned by GSTN."
                                  },
                                  "srctyp": {
                                    "type": "string",
                                    "description": "The srctyp value returned by GSTN."
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "cdnra": {
                        "type": "array",
                        "description": "The cdnra value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "nt": {
                              "type": "array",
                              "description": "The nt value returned by GSTN.",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "onttyp": {
                                    "type": "string",
                                    "description": "Original Note Type",
                                    "enum": [
                                      "C",
                                      "D"
                                    ]
                                  },
                                  "ontnum": {
                                    "type": "string",
                                    "description": "Original Note Number",
                                    "minLength": 1,
                                    "maxLength": 16
                                  },
                                  "ontdt": {
                                    "type": "string",
                                    "description": "Original Note Date",
                                    "minLength": 1
                                  },
                                  "ntnum": {
                                    "type": "string",
                                    "description": "Note number",
                                    "minLength": 1
                                  },
                                  "typ": {
                                    "type": "string",
                                    "description": "Note Type",
                                    "enum": [
                                      "C",
                                      "D"
                                    ]
                                  },
                                  "suptyp": {
                                    "type": "string",
                                    "description": "Note Supply Type",
                                    "enum": [
                                      "R",
                                      "DE",
                                      "SEWP",
                                      "SEWOP",
                                      "CBW"
                                    ]
                                  },
                                  "dt": {
                                    "type": "string",
                                    "description": "Note date",
                                    "minLength": 1
                                  },
                                  "val": {
                                    "type": "number",
                                    "description": "Note value",
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply",
                                    "minLength": 2,
                                    "maxLength": 2
                                  },
                                  "rev": {
                                    "type": "string",
                                    "description": "Supply attracts reverse charge or not",
                                    "enum": [
                                      "Y",
                                      "N"
                                    ]
                                  },
                                  "itcavl": {
                                    "type": "string",
                                    "description": "ITC Availability",
                                    "enum": [
                                      "Y",
                                      "N",
                                      "T"
                                    ]
                                  },
                                  "rsn": {
                                    "type": "string",
                                    "description": "Reason for ITC unavailability"
                                  },
                                  "diffprcnt": {
                                    "type": "number",
                                    "description": "Applicable % of tax rate",
                                    "enum": [
                                      0.65,
                                      1
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Total Taxable value",
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Total IGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Total CGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "Total SGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Total CESS value",
                                    "maximum": 9999999999999.99
                                  },
                                  "imsStatus": {
                                    "type": "string",
                                    "description": "IMS Status",
                                    "enum": [
                                      "A",
                                      "R",
                                      "N"
                                    ]
                                  },
                                  "items": {
                                    "type": "array",
                                    "description": "The items value returned by GSTN.",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "num": {
                                          "type": "number",
                                          "description": "Item Number"
                                        },
                                        "rt": {
                                          "type": "number",
                                          "description": "Tax Rate",
                                          "minimum": 0,
                                          "maximum": 999.9
                                        },
                                        "txval": {
                                          "type": "number",
                                          "description": "Total Taxable value",
                                          "maximum": 9999999999999.99
                                        },
                                        "igst": {
                                          "type": "number",
                                          "description": "Total IGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cgst": {
                                          "type": "number",
                                          "description": "Total CGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "sgst": {
                                          "type": "number",
                                          "description": "Total SGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cess": {
                                          "type": "number",
                                          "description": "Total CESS value",
                                          "maximum": 9999999999999.99
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "docRejdata": {
                "type": "object",
                "description": "The doc Rejdata value returned by GSTN.",
                "properties": {
                  "b2b": {
                    "type": "array",
                    "description": "The b2b value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "inv": {
                          "type": "array",
                          "description": "The inv value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "inum": {
                                "type": "string",
                                "description": "Invoice Number",
                                "minLength": 1
                              },
                              "typ": {
                                "type": "string",
                                "description": "Invoice Type",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ]
                              },
                              "dt": {
                                "type": "string",
                                "description": "Invoice Date",
                                "minLength": 1
                              },
                              "val": {
                                "type": "number",
                                "description": "Invoice Value",
                                "maximum": 9999999999999.99
                              },
                              "pos": {
                                "type": "string",
                                "description": "Place of Supply",
                                "minLength": 2,
                                "maxLength": 2
                              },
                              "rev": {
                                "type": "string",
                                "description": "Supply attracts reverse charge or not",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "itcavl": {
                                "type": "string",
                                "description": "ITC Availability",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ]
                              },
                              "rsn": {
                                "type": "string",
                                "description": "Reason for ITC Unavailability"
                              },
                              "diffprcnt": {
                                "type": "number",
                                "description": "Applicable % of tax rate",
                                "enum": [
                                  0.65,
                                  1
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "items": {
                                "type": "array",
                                "description": "The items value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "num": {
                                      "type": "number",
                                      "description": "Item Number"
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "Tax Rate",
                                      "minimum": 0,
                                      "maximum": 999.9
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Total Taxable value",
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Total IGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Total CGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "Total SGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Total CESS value",
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "b2ba": {
                    "type": "array",
                    "description": "The b2ba value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "inv": {
                          "type": "array",
                          "description": "The inv value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "oinum": {
                                "type": "string",
                                "description": "Original Invoice Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "oidt": {
                                "type": "string",
                                "description": "Original Invoice Date",
                                "minLength": 1
                              },
                              "inum": {
                                "type": "string",
                                "description": "Invoice Number",
                                "minLength": 1
                              },
                              "typ": {
                                "type": "string",
                                "description": "Invoice Type",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ]
                              },
                              "dt": {
                                "type": "string",
                                "description": "Invoice Date",
                                "minLength": 1
                              },
                              "val": {
                                "type": "number",
                                "description": "Invoice Value",
                                "maximum": 9999999999999.99
                              },
                              "pos": {
                                "type": "string",
                                "description": "Place of Supply",
                                "minLength": 2,
                                "maxLength": 2
                              },
                              "rev": {
                                "type": "string",
                                "description": "Supply attracts Supply attracts reverse charge or not or not",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "itcavl": {
                                "type": "string",
                                "description": "ITC Availability",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ]
                              },
                              "rsn": {
                                "type": "string",
                                "description": "Reason for ITC unavailability"
                              },
                              "diffprcnt": {
                                "type": "number",
                                "description": "Applicable % of tax rate",
                                "enum": [
                                  0.65,
                                  1
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "items": {
                                "type": "array",
                                "description": "The items value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "num": {
                                      "type": "number",
                                      "description": "Item Number"
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "Tax Rate",
                                      "minimum": 0,
                                      "maximum": 999.9
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Total Taxable value",
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Total IGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Total CGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "Total SGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Total CESS value",
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "cdnr": {
                    "type": "array",
                    "description": "The cdnr value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "nt": {
                          "type": "array",
                          "description": "The nt value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "ntnum": {
                                "type": "string",
                                "description": "Note number",
                                "minLength": 1
                              },
                              "typ": {
                                "type": "string",
                                "description": "Note Type",
                                "enum": [
                                  "C",
                                  "D"
                                ]
                              },
                              "suptyp": {
                                "type": "string",
                                "description": "Note Supply Type",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ]
                              },
                              "dt": {
                                "type": "string",
                                "description": "Note date",
                                "minLength": 1
                              },
                              "val": {
                                "type": "number",
                                "description": "Note Value",
                                "maximum": 9999999999999.99
                              },
                              "pos": {
                                "type": "string",
                                "description": "Place of supply",
                                "minLength": 2,
                                "maxLength": 2
                              },
                              "rev": {
                                "type": "string",
                                "description": "Supply attracts reverse charge",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "itcavl": {
                                "type": "string",
                                "description": "ITC Availability",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ]
                              },
                              "rsn": {
                                "type": "string",
                                "description": "Reason for ITC unavailablility"
                              },
                              "diffprcnt": {
                                "type": "number",
                                "description": "Applicable % of tax rate",
                                "enum": [
                                  0.65,
                                  1
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "items": {
                                "type": "array",
                                "description": "The items value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "num": {
                                      "type": "number",
                                      "description": "Item Number"
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "Tax Rate",
                                      "minimum": 0,
                                      "maximum": 999.9
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Total Taxable value",
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Total IGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Total CGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "Total SGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Total CESS value",
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "cdnra": {
                    "type": "array",
                    "description": "The cdnra value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "supprd": {
                          "type": "string",
                          "description": "Filing period of GSTR1/5 of supplier",
                          "minLength": 1
                        },
                        "nt": {
                          "type": "array",
                          "description": "The nt value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "onttyp": {
                                "type": "string",
                                "description": "Original Note Type",
                                "enum": [
                                  "C",
                                  "D"
                                ]
                              },
                              "ontnum": {
                                "type": "string",
                                "description": "Original Note Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "ontdt": {
                                "type": "string",
                                "description": "Original Note Date",
                                "minLength": 1
                              },
                              "ntnum": {
                                "type": "string",
                                "description": "Note number",
                                "minLength": 1
                              },
                              "typ": {
                                "type": "string",
                                "description": "Note Type",
                                "enum": [
                                  "C",
                                  "D"
                                ]
                              },
                              "suptyp": {
                                "type": "string",
                                "description": "Note Supply Type",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ]
                              },
                              "dt": {
                                "type": "string",
                                "description": "Note date",
                                "minLength": 1
                              },
                              "val": {
                                "type": "number",
                                "description": "Note value",
                                "maximum": 9999999999999.99
                              },
                              "pos": {
                                "type": "string",
                                "description": "Place of supply",
                                "minLength": 2,
                                "maxLength": 2
                              },
                              "rev": {
                                "type": "string",
                                "description": "Supply attracts reverse charge or not",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "itcavl": {
                                "type": "string",
                                "description": "ITC Availability",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ]
                              },
                              "rsn": {
                                "type": "string",
                                "description": "Reason for ITC unavailability"
                              },
                              "diffprcnt": {
                                "type": "number",
                                "description": "Applicable % of tax rate",
                                "enum": [
                                  0.65,
                                  1
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "items": {
                                "type": "array",
                                "description": "The items value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "num": {
                                      "type": "number",
                                      "description": "Item Number"
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "Tax Rate",
                                      "minimum": 0,
                                      "maximum": 999.9
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Total Taxable value",
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Total IGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Total CGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "Total SGST value",
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Total CESS value",
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "isd": {
                    "type": "array",
                    "description": "The isd value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "GSTR6 filed period of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR6 of supplier",
                          "minLength": 1
                        },
                        "doclist": {
                          "type": "array",
                          "description": "The doclist value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "doctyp": {
                                "type": "string",
                                "description": "ISD Document type",
                                "enum": [
                                  "ISDI",
                                  "ISDC"
                                ]
                              },
                              "docnum": {
                                "type": "string",
                                "description": "ISD Document number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "docdt": {
                                "type": "string",
                                "description": "ISD Document date",
                                "minLength": 1
                              },
                              "oinvnum": {
                                "type": "string",
                                "description": "Original Invoice Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "oinvdt": {
                                "type": "string",
                                "description": "Original Invoice date",
                                "minLength": 1
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "itcelg": {
                                "type": "string",
                                "description": "Eligible for ITC",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "isda": {
                    "type": "array",
                    "description": "The isda value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "description": "GSTR6 filed period of supplier",
                          "minLength": 1
                        },
                        "supfildt": {
                          "type": "string",
                          "description": "Date of filing GSTR6 of supplier",
                          "minLength": 1
                        },
                        "doclist": {
                          "type": "array",
                          "description": "The doclist value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "odoctyp": {
                                "type": "string",
                                "description": "Original ISD Document type",
                                "enum": [
                                  "ISDI",
                                  "ISDC"
                                ]
                              },
                              "odocnum": {
                                "type": "string",
                                "description": "Original Document number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "odocdt": {
                                "type": "string",
                                "description": "Original Document Date",
                                "minLength": 1
                              },
                              "doctyp": {
                                "type": "string",
                                "description": "ISD Document type",
                                "enum": [
                                  "ISDI",
                                  "ISDC"
                                ]
                              },
                              "docnum": {
                                "type": "string",
                                "description": "ISD Document number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "docdt": {
                                "type": "string",
                                "description": "ISD Document date",
                                "minLength": 1
                              },
                              "oinvnum": {
                                "type": "string",
                                "description": "Original Invoice Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "oinvdt": {
                                "type": "string",
                                "description": "Original Invoice date",
                                "minLength": 1
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cgst": {
                                "type": "number",
                                "description": "Total CGST value",
                                "maximum": 9999999999999.99
                              },
                              "sgst": {
                                "type": "number",
                                "description": "Total SGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              },
                              "itcelg": {
                                "type": "string",
                                "description": "Eligible for ITC",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "impg": {
                    "type": "array",
                    "description": "The impg value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "refdt": {
                          "type": "string",
                          "description": "ICEGATE Reference Date",
                          "minLength": 1
                        },
                        "recdt": {
                          "type": "string",
                          "description": "Received Date in the GST system",
                          "minLength": 1
                        },
                        "portcode": {
                          "type": "string",
                          "description": "Port code",
                          "minLength": 1,
                          "maxLength": 6
                        },
                        "boenum": {
                          "type": "string",
                          "description": "Bill of entry number",
                          "minLength": 1,
                          "maxLength": 16
                        },
                        "boedt": {
                          "type": "string",
                          "description": "Bill of entry date",
                          "minLength": 1
                        },
                        "isamd": {
                          "type": "string",
                          "description": "Is Amended (Yes)",
                          "enum": [
                            "Y",
                            "N"
                          ]
                        },
                        "txval": {
                          "type": "number",
                          "description": "Total Taxable value",
                          "maximum": 9999999999999.99
                        },
                        "cess": {
                          "type": "number",
                          "description": "Total CESS value",
                          "maximum": 9999999999999.99
                        },
                        "igst": {
                          "type": "number",
                          "description": "Total IGST value",
                          "maximum": 9999999999999.99
                        }
                      }
                    }
                  },
                  "impgsez": {
                    "type": "array",
                    "description": "The impgsez value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "ctin": {
                          "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                        },
                        "trdnm": {
                          "type": "string",
                          "description": "Trade/Legal name of the supplier"
                        },
                        "boe": {
                          "type": "array",
                          "description": "The boe value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "refdt": {
                                "type": "string",
                                "description": "ICEGATE Reference Date",
                                "minLength": 1
                              },
                              "recdt": {
                                "type": "string",
                                "description": "Received Date in the GST system",
                                "minLength": 1
                              },
                              "portcode": {
                                "type": "string",
                                "description": "Port Code",
                                "minLength": 1,
                                "maxLength": 6
                              },
                              "boenum": {
                                "type": "string",
                                "description": "Bill of entry Number",
                                "minLength": 1,
                                "maxLength": 16
                              },
                              "boedt": {
                                "type": "string",
                                "description": "Bill of entry Date",
                                "minLength": 1
                              },
                              "isamd": {
                                "type": "string",
                                "description": "Is Amended (Yes)",
                                "enum": [
                                  "Y",
                                  "N"
                                ]
                              },
                              "txval": {
                                "type": "number",
                                "description": "Total Taxable value",
                                "maximum": 9999999999999.99
                              },
                              "igst": {
                                "type": "number",
                                "description": "Total IGST value",
                                "maximum": 9999999999999.99
                              },
                              "cess": {
                                "type": "number",
                                "description": "Total CESS value",
                                "maximum": 9999999999999.99
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "ecom": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "inv": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "dt": {
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                                "description": "Invoice Date"
                              },
                              "val": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Invoice Value"
                              },
                              "rev": {
                                "type": "string",
                                "enum": [
                                  "Y",
                                  "N"
                                ],
                                "description": "Supply attracts reverse charge or not"
                              },
                              "itcavl": {
                                "type": "string",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ],
                                "description": "ITC Availability"
                              },
                              "pos": {
                                "type": "string",
                                "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|9[67])$",
                                "maxLength": 2,
                                "minLength": 2,
                                "description": "Place of Supply"
                              },
                              "typ": {
                                "type": "string",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ],
                                "description": "Invoice Type"
                              },
                              "inum": {
                                "type": "string",
                                "maxLength": 16,
                                "minLength": 1,
                                "pattern": "^(?!0*$)[a-zA-Z0-9-/]+$",
                                "description": "Invoice Number"
                              },
                              "rsn": {
                                "description": "Reason for ITC unavailability",
                                "type": "string"
                              },
                              "txval": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total Taxable value"
                              },
                              "igst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total IGST value"
                              },
                              "cgst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total CGST value"
                              },
                              "sgst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total SGST value"
                              },
                              "cess": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total CESS value"
                              },
                              "items": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "description": "E-commerce invoice line. The production artifact does not define stable line properties.",
                                  "additionalProperties": true
                                }
                              }
                            },
                            "required": [
                              "dt",
                              "val",
                              "pos",
                              "typ",
                              "inum",
                              "txval"
                            ]
                          }
                        },
                        "ctin": {
                          "anyOf": [
                            {
                              "type": "string",
                              "maxLength": 15,
                              "minLength": 15,
                              "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                            },
                            {
                              "type": "string",
                              "maxLength": 15,
                              "minLength": 15,
                              "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                            }
                          ],
                          "description": "Gstin of the supplier"
                        },
                        "trdnm": {
                          "description": "Trade/Legal name of the supplier",
                          "type": "string"
                        },
                        "supfildt": {
                          "type": "string",
                          "minLength": 1,
                          "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                          "description": "Date of filing GSTR1/5 of supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "minLength": 1,
                          "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$",
                          "description": "Filing period of GSTR1/5 of supplier"
                        }
                      },
                      "required": [
                        "inv",
                        "trdnm",
                        "supfildt",
                        "supprd",
                        "ctin"
                      ]
                    }
                  },
                  "ecoma": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "inv": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "oinum": {
                                "type": "string",
                                "maxLength": 16,
                                "minLength": 1,
                                "pattern": "^(?!0*$)[a-zA-Z0-9-/]+$",
                                "description": "Original Invoice Number"
                              },
                              "oidt": {
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                                "description": "Original Invoice Date"
                              },
                              "dt": {
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                                "description": "Invoice Date"
                              },
                              "val": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Invoice Value"
                              },
                              "rev": {
                                "type": "string",
                                "enum": [
                                  "Y",
                                  "N"
                                ],
                                "description": "Supply attracts reverse charge or not"
                              },
                              "itcavl": {
                                "type": "string",
                                "enum": [
                                  "Y",
                                  "N",
                                  "T"
                                ],
                                "description": "ITC Availability"
                              },
                              "pos": {
                                "type": "string",
                                "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|9[67])$",
                                "maxLength": 2,
                                "minLength": 2,
                                "description": "Place of Supply"
                              },
                              "typ": {
                                "type": "string",
                                "enum": [
                                  "R",
                                  "DE",
                                  "SEWP",
                                  "SEWOP",
                                  "CBW"
                                ],
                                "description": "Invoice Type"
                              },
                              "inum": {
                                "type": "string",
                                "maxLength": 16,
                                "minLength": 1,
                                "pattern": "^(?!0*$)[a-zA-Z0-9-/]+$",
                                "description": "Invoice Number"
                              },
                              "rsn": {
                                "description": "Reason for ITC unavailability",
                                "type": "string"
                              },
                              "txval": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total Taxable value"
                              },
                              "igst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total IGST value"
                              },
                              "cgst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total CGST value"
                              },
                              "sgst": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total SGST value"
                              },
                              "cess": {
                                "type": "number",
                                "maximum": 9999999999999.99,
                                "description": "Total CESS value"
                              },
                              "items": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "description": "E-commerce invoice line. The production artifact does not define stable line properties.",
                                  "additionalProperties": true
                                }
                              }
                            },
                            "required": [
                              "oinum",
                              "oidt",
                              "dt",
                              "val",
                              "pos",
                              "typ",
                              "inum",
                              "txval"
                            ]
                          }
                        },
                        "ctin": {
                          "anyOf": [
                            {
                              "type": "string",
                              "maxLength": 15,
                              "minLength": 15,
                              "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                            },
                            {
                              "type": "string",
                              "maxLength": 15,
                              "minLength": 15,
                              "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                            }
                          ],
                          "description": "Gstin of the supplier"
                        },
                        "trdnm": {
                          "description": "Trade/Legal name of the supplier",
                          "type": "string"
                        },
                        "supfildt": {
                          "type": "string",
                          "minLength": 1,
                          "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                          "description": "Date of filing GSTR1/5 of supplier"
                        },
                        "supprd": {
                          "type": "string",
                          "minLength": 1,
                          "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$",
                          "description": "Filing period of GSTR1/5 of supplier"
                        }
                      },
                      "required": [
                        "inv",
                        "trdnm",
                        "supfildt",
                        "supprd",
                        "ctin"
                      ]
                    }
                  },
                  "itcrev": {
                    "type": "object",
                    "description": "ITC-reversal documents by section.",
                    "properties": {
                      "b2b": {
                        "type": "array",
                        "description": "The b2b value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "inv": {
                              "type": "array",
                              "description": "The inv value returned by GSTN.",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "inum": {
                                    "type": "string",
                                    "description": "Invoice Number",
                                    "minLength": 1
                                  },
                                  "typ": {
                                    "type": "string",
                                    "description": "Invoice Type",
                                    "enum": [
                                      "R",
                                      "DE",
                                      "SEWP",
                                      "SEWOP",
                                      "CBW"
                                    ]
                                  },
                                  "dt": {
                                    "type": "string",
                                    "description": "Invoice Date",
                                    "minLength": 1
                                  },
                                  "val": {
                                    "type": "number",
                                    "description": "Invoice Value",
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of Supply",
                                    "minLength": 2,
                                    "maxLength": 2
                                  },
                                  "rev": {
                                    "type": "string",
                                    "description": "Supply attracts reverse charge or not",
                                    "enum": [
                                      "Y",
                                      "N"
                                    ]
                                  },
                                  "itcavl": {
                                    "type": "string",
                                    "description": "ITC Availability",
                                    "enum": [
                                      "Y",
                                      "N",
                                      "T"
                                    ]
                                  },
                                  "rsn": {
                                    "type": "string",
                                    "description": "Reason for ITC Unavailability"
                                  },
                                  "diffprcnt": {
                                    "type": "number",
                                    "description": "Applicable % of tax rate",
                                    "enum": [
                                      0.65,
                                      1
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Total Taxable value",
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Total IGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Total CGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "Total SGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Total CESS value",
                                    "maximum": 9999999999999.99
                                  },
                                  "items": {
                                    "type": "array",
                                    "description": "The items value returned by GSTN.",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "num": {
                                          "type": "number",
                                          "description": "Item Number"
                                        },
                                        "rt": {
                                          "type": "number",
                                          "description": "Tax Rate",
                                          "minimum": 0,
                                          "maximum": 999.9
                                        },
                                        "txval": {
                                          "type": "number",
                                          "description": "Total Taxable value",
                                          "maximum": 9999999999999.99
                                        },
                                        "igst": {
                                          "type": "number",
                                          "description": "Total IGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cgst": {
                                          "type": "number",
                                          "description": "Total CGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "sgst": {
                                          "type": "number",
                                          "description": "Total SGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cess": {
                                          "type": "number",
                                          "description": "Total CESS value",
                                          "maximum": 9999999999999.99
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "b2ba": {
                        "type": "array",
                        "description": "The b2ba value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "inv": {
                              "type": "array",
                              "description": "The inv value returned by GSTN.",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "oinum": {
                                    "type": "string",
                                    "description": "Original Invoice Number",
                                    "minLength": 1,
                                    "maxLength": 16
                                  },
                                  "oidt": {
                                    "type": "string",
                                    "description": "Original Invoice Date",
                                    "minLength": 1
                                  },
                                  "inum": {
                                    "type": "string",
                                    "description": "Invoice Number",
                                    "minLength": 1
                                  },
                                  "typ": {
                                    "type": "string",
                                    "description": "Invoice Type",
                                    "enum": [
                                      "R",
                                      "DE",
                                      "SEWP",
                                      "SEWOP",
                                      "CBW"
                                    ]
                                  },
                                  "dt": {
                                    "type": "string",
                                    "description": "Invoice Date",
                                    "minLength": 1
                                  },
                                  "val": {
                                    "type": "number",
                                    "description": "Invoice Value",
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of Supply",
                                    "minLength": 2,
                                    "maxLength": 2
                                  },
                                  "rev": {
                                    "type": "string",
                                    "description": "Supply attracts Supply attracts reverse charge or not or not",
                                    "enum": [
                                      "Y",
                                      "N"
                                    ]
                                  },
                                  "itcavl": {
                                    "type": "string",
                                    "description": "ITC Availability",
                                    "enum": [
                                      "Y",
                                      "N",
                                      "T"
                                    ]
                                  },
                                  "rsn": {
                                    "type": "string",
                                    "description": "Reason for ITC unavailability"
                                  },
                                  "diffprcnt": {
                                    "type": "number",
                                    "description": "Applicable % of tax rate",
                                    "enum": [
                                      0.65,
                                      1
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Total Taxable value",
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Total IGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Total CGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "Total SGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Total CESS value",
                                    "maximum": 9999999999999.99
                                  },
                                  "items": {
                                    "type": "array",
                                    "description": "The items value returned by GSTN.",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "num": {
                                          "type": "number",
                                          "description": "Item Number"
                                        },
                                        "rt": {
                                          "type": "number",
                                          "description": "Tax Rate",
                                          "minimum": 0,
                                          "maximum": 999.9
                                        },
                                        "txval": {
                                          "type": "number",
                                          "description": "Total Taxable value",
                                          "maximum": 9999999999999.99
                                        },
                                        "igst": {
                                          "type": "number",
                                          "description": "Total IGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cgst": {
                                          "type": "number",
                                          "description": "Total CGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "sgst": {
                                          "type": "number",
                                          "description": "Total SGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cess": {
                                          "type": "number",
                                          "description": "Total CESS value",
                                          "maximum": 9999999999999.99
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "cdnr": {
                        "type": "array",
                        "description": "The cdnr value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "nt": {
                              "type": "array",
                              "description": "The nt value returned by GSTN.",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "ntnum": {
                                    "type": "string",
                                    "description": "Note number",
                                    "minLength": 1
                                  },
                                  "typ": {
                                    "type": "string",
                                    "description": "Note Type",
                                    "enum": [
                                      "C",
                                      "D"
                                    ]
                                  },
                                  "suptyp": {
                                    "type": "string",
                                    "description": "Note Supply Type",
                                    "enum": [
                                      "R",
                                      "DE",
                                      "SEWP",
                                      "SEWOP",
                                      "CBW"
                                    ]
                                  },
                                  "dt": {
                                    "type": "string",
                                    "description": "Note date",
                                    "minLength": 1
                                  },
                                  "val": {
                                    "type": "number",
                                    "description": "Note Value",
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply",
                                    "minLength": 2,
                                    "maxLength": 2
                                  },
                                  "rev": {
                                    "type": "string",
                                    "description": "Supply attracts reverse charge",
                                    "enum": [
                                      "Y",
                                      "N"
                                    ]
                                  },
                                  "itcavl": {
                                    "type": "string",
                                    "description": "ITC Availability",
                                    "enum": [
                                      "Y",
                                      "N",
                                      "T"
                                    ]
                                  },
                                  "rsn": {
                                    "type": "string",
                                    "description": "Reason for ITC unavailablility"
                                  },
                                  "diffprcnt": {
                                    "type": "number",
                                    "description": "Applicable % of tax rate",
                                    "enum": [
                                      0.65,
                                      1
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Total Taxable value",
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Total IGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Total CGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "Total SGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Total CESS value",
                                    "maximum": 9999999999999.99
                                  },
                                  "items": {
                                    "type": "array",
                                    "description": "The items value returned by GSTN.",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "num": {
                                          "type": "number",
                                          "description": "Item Number"
                                        },
                                        "rt": {
                                          "type": "number",
                                          "description": "Tax Rate",
                                          "minimum": 0,
                                          "maximum": 999.9
                                        },
                                        "txval": {
                                          "type": "number",
                                          "description": "Total Taxable value",
                                          "maximum": 9999999999999.99
                                        },
                                        "igst": {
                                          "type": "number",
                                          "description": "Total IGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cgst": {
                                          "type": "number",
                                          "description": "Total CGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "sgst": {
                                          "type": "number",
                                          "description": "Total SGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cess": {
                                          "type": "number",
                                          "description": "Total CESS value",
                                          "maximum": 9999999999999.99
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "cdnra": {
                        "type": "array",
                        "description": "The cdnra value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "ctin": {
                              "$ref": "#/components/schemas/Gstr2bCounterpartyGstin"
                            },
                            "trdnm": {
                              "type": "string",
                              "description": "Trade/Legal name of the supplier"
                            },
                            "supfildt": {
                              "type": "string",
                              "description": "Date of filing GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "supprd": {
                              "type": "string",
                              "description": "Filing period of GSTR1/5 of supplier",
                              "minLength": 1
                            },
                            "nt": {
                              "type": "array",
                              "description": "The nt value returned by GSTN.",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "onttyp": {
                                    "type": "string",
                                    "description": "Original Note Type",
                                    "enum": [
                                      "C",
                                      "D"
                                    ]
                                  },
                                  "ontnum": {
                                    "type": "string",
                                    "description": "Original Note Number",
                                    "minLength": 1,
                                    "maxLength": 16
                                  },
                                  "ontdt": {
                                    "type": "string",
                                    "description": "Original Note Date",
                                    "minLength": 1
                                  },
                                  "ntnum": {
                                    "type": "string",
                                    "description": "Note number",
                                    "minLength": 1
                                  },
                                  "typ": {
                                    "type": "string",
                                    "description": "Note Type",
                                    "enum": [
                                      "C",
                                      "D"
                                    ]
                                  },
                                  "suptyp": {
                                    "type": "string",
                                    "description": "Note Supply Type",
                                    "enum": [
                                      "R",
                                      "DE",
                                      "SEWP",
                                      "SEWOP",
                                      "CBW"
                                    ]
                                  },
                                  "dt": {
                                    "type": "string",
                                    "description": "Note date",
                                    "minLength": 1
                                  },
                                  "val": {
                                    "type": "number",
                                    "description": "Note value",
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply",
                                    "minLength": 2,
                                    "maxLength": 2
                                  },
                                  "rev": {
                                    "type": "string",
                                    "description": "Supply attracts reverse charge or not",
                                    "enum": [
                                      "Y",
                                      "N"
                                    ]
                                  },
                                  "itcavl": {
                                    "type": "string",
                                    "description": "ITC Availability",
                                    "enum": [
                                      "Y",
                                      "N",
                                      "T"
                                    ]
                                  },
                                  "rsn": {
                                    "type": "string",
                                    "description": "Reason for ITC unavailability"
                                  },
                                  "diffprcnt": {
                                    "type": "number",
                                    "description": "Applicable % of tax rate",
                                    "enum": [
                                      0.65,
                                      1
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Total Taxable value",
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Total IGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Total CGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "Total SGST value",
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Total CESS value",
                                    "maximum": 9999999999999.99
                                  },
                                  "items": {
                                    "type": "array",
                                    "description": "The items value returned by GSTN.",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "num": {
                                          "type": "number",
                                          "description": "Item Number"
                                        },
                                        "rt": {
                                          "type": "number",
                                          "description": "Tax Rate",
                                          "minimum": 0,
                                          "maximum": 999.9
                                        },
                                        "txval": {
                                          "type": "number",
                                          "description": "Total Taxable value",
                                          "maximum": 9999999999999.99
                                        },
                                        "igst": {
                                          "type": "number",
                                          "description": "Total IGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cgst": {
                                          "type": "number",
                                          "description": "Total CGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "sgst": {
                                          "type": "number",
                                          "description": "Total SGST value",
                                          "maximum": 9999999999999.99
                                        },
                                        "cess": {
                                          "type": "number",
                                          "description": "Total CESS value",
                                          "maximum": 9999999999999.99
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "fc": {
                "type": "number",
                "description": "No of Data files",
                "minimum": 0
              }
            }
          }
        }
      },
      "GetGstr2bDocumentSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr2bDocumentSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr2bDocumentResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr2bDocumentSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "RegenerateGstr2bSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Regenerate Gstr2b.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "0032e479bcb644c"
          }
        }
      },
      "RegenerateGstr2bSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/RegenerateGstr2bSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "RegenerateGstr2bResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/RegenerateGstr2bSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstr3bDetailsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr3b Details.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "Supplier GSTIN",
            "minLength": 15,
            "maxLength": 15
          },
          "ret_period": {
            "type": "string",
            "description": "Return period"
          },
          "sup_details": {
            "type": "object",
            "description": "The sup details value returned by GSTN.",
            "properties": {
              "osup_det": {
                "type": "object",
                "description": "The osup det value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable Value"
                  },
                  "iamt": {
                    "type": "number",
                    "description": "integrated Taxamount available in the current month"
                  },
                  "camt": {
                    "type": "number",
                    "description": "central tax amount available in the current month"
                  },
                  "samt": {
                    "type": "number",
                    "description": "State Tax amount available in the current month"
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess Tax amount available in the current month"
                  }
                }
              },
              "osup_zero": {
                "type": "object",
                "description": "The osup zero value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable Value"
                  },
                  "iamt": {
                    "type": "number",
                    "description": "integrated Taxamount available in the current month"
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess Tax amount available in the current month"
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "osup_nil_exmp": {
                "type": "object",
                "description": "The osup nil exmp value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable Value"
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "isup_rev": {
                "type": "object",
                "description": "The isup rev value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable Value"
                  },
                  "iamt": {
                    "type": "number",
                    "description": "integrated Taxamount available in the current month"
                  },
                  "camt": {
                    "type": "number",
                    "description": "central tax amount available in the current month"
                  },
                  "samt": {
                    "type": "number",
                    "description": "State Tax amount available in the current month"
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess Tax amount available in the current month"
                  }
                }
              },
              "osup_nongst": {
                "type": "object",
                "description": "The osup nongst value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable Value"
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  }
                }
              }
            }
          },
          "inter_sup": {
            "type": "object",
            "description": "The inter sup value returned by GSTN.",
            "properties": {
              "unreg_details": {
                "type": "array",
                "description": "The unreg details value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "pos": {
                      "type": "string",
                      "description": "Place of supply"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable Value"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount as per invoice"
                    }
                  }
                }
              },
              "comp_details": {
                "type": "array",
                "description": "The comp details value returned by GSTN.",
                "items": {
                  "type": "object",
                  "description": "A GSTN record whose fields vary by return section.",
                  "properties": {
                    "pos": {
                      "type": "string",
                      "description": "Place of supply"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable Value"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount as per invoice"
                    }
                  }
                }
              },
              "uin_details": {
                "type": "array",
                "description": "The uin details value returned by GSTN.",
                "items": {
                  "type": "object",
                  "description": "A GSTN record whose fields vary by return section.",
                  "properties": {
                    "pos": {
                      "type": "string",
                      "description": "Place of supply"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable Value"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "IGST Amount as per invoice"
                    }
                  }
                }
              }
            }
          },
          "eco_dtls": {
            "type": "object",
            "description": "The eco dtls value returned by GSTN.",
            "properties": {
              "eco_sup": {
                "type": "object",
                "description": "The eco sup value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable Value"
                  },
                  "iamt": {
                    "type": "number",
                    "description": "integrated Taxamount available in the current month"
                  },
                  "camt": {
                    "type": "number",
                    "description": "central tax amount available in the current month"
                  },
                  "samt": {
                    "type": "number",
                    "description": "State Tax amount available in the current month"
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess Tax amount available in the current month"
                  }
                }
              },
              "eco_reg_sup": {
                "type": "object",
                "description": "The eco reg sup value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable Value"
                  }
                }
              }
            }
          },
          "itc_elg": {
            "type": "object",
            "description": "The itc elg value returned by GSTN.",
            "properties": {
              "itc_avl": {
                "type": "array",
                "description": "The itc avl value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "iamt": {
                      "type": "number",
                      "description": "integrated Taxamount available in the current month"
                    },
                    "camt": {
                      "type": "number",
                      "description": "CGST Amount as per invoice"
                    },
                    "samt": {
                      "type": "number",
                      "description": "SGST Amount as per invoice"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess Tax amount available in the current month"
                    },
                    "ty": {
                      "type": "string",
                      "description": "Identifer if Goods or Services"
                    }
                  }
                }
              },
              "itc_rev": {
                "type": "array",
                "description": "The itc rev value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "iamt": {
                      "type": "number",
                      "description": "Amount of ITC reversal of IGST"
                    },
                    "camt": {
                      "type": "number",
                      "description": "Amount of ITC reversal of CGST"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Amount of ITC reversal of CESS"
                    },
                    "samt": {
                      "type": "number",
                      "description": "Amount of ITC reversal of SGST"
                    },
                    "ty": {
                      "type": "string",
                      "description": "Identifer if Goods or Services"
                    }
                  }
                }
              },
              "itc_net": {
                "type": "object",
                "description": "The itc net value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Amount of ITC reversal of IGST"
                  },
                  "camt": {
                    "type": "number",
                    "description": "Amount of ITC reversal of CGST"
                  },
                  "samt": {
                    "type": "number",
                    "description": "Amount of ITC reversal of SGST"
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Amount of ITC reversal of CESS"
                  }
                }
              },
              "itc_inelg": {
                "type": "array",
                "description": "The itc inelg value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "iamt": {
                      "type": "number",
                      "description": "Amount of ITC reversal of IGST"
                    },
                    "camt": {
                      "type": "number",
                      "description": "Amount of ITC reversal of CGST"
                    },
                    "samt": {
                      "type": "number",
                      "description": "Amount of ITC reversal of SGST"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Amount of ITC reversal of CESS"
                    },
                    "ty": {
                      "type": "string",
                      "description": "Identifer if Goods or Services"
                    }
                  }
                }
              }
            }
          },
          "inward_sup": {
            "type": "object",
            "description": "The inward sup value returned by GSTN.",
            "properties": {
              "isup_details": {
                "type": "array",
                "description": "The isup details value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "inter": {
                      "type": "number",
                      "description": "Inter State supplies"
                    },
                    "intra": {
                      "type": "number",
                      "description": "Intra State supplies"
                    },
                    "ty": {
                      "type": "string",
                      "description": "Identifer if Goods or Services"
                    }
                  }
                }
              }
            }
          },
          "tx_pmt": {
            "type": "object",
            "description": "The tx pmt value returned by GSTN.",
            "properties": {
              "tx_py": {
                "type": "array",
                "description": "The tx py value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "trans_typ": {
                      "type": "number",
                      "description": "Transaction Type"
                    },
                    "tran_desc": {
                      "type": "string",
                      "description": "Transaction description"
                    },
                    "liab_ldg_id": {
                      "type": "number",
                      "description": "Liability ledger Id"
                    },
                    "cgst": {
                      "type": "object",
                      "description": "The cgst value returned by GSTN.",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "CGST INTEREST Payable"
                        },
                        "tx": {
                          "type": "number",
                          "description": "CGST Tax Payable"
                        },
                        "fee": {
                          "type": "number",
                          "description": "CGST LateFee Payable"
                        }
                      }
                    },
                    "sgst": {
                      "type": "object",
                      "description": "The sgst value returned by GSTN.",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "SGST INTEREST Payable"
                        },
                        "tx": {
                          "type": "number",
                          "description": "SGST Tax Payable"
                        },
                        "fee": {
                          "type": "number",
                          "description": "SGST LateFee Payable"
                        }
                      }
                    },
                    "cess": {
                      "type": "object",
                      "description": "The cess value returned by GSTN.",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "CESS INTEREST Payable"
                        },
                        "tx": {
                          "type": "number",
                          "description": "CESS Tax Payable"
                        },
                        "fee": {
                          "type": "number",
                          "description": "The fee value returned by GSTN.",
                          "example": 0
                        }
                      }
                    },
                    "igst": {
                      "type": "object",
                      "description": "The igst value returned by GSTN.",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "IGST INTEREST Payable"
                        },
                        "tx": {
                          "type": "number",
                          "description": "IGST Tax Payable"
                        },
                        "fee": {
                          "type": "number",
                          "description": "The fee value returned by GSTN.",
                          "example": 0
                        }
                      }
                    }
                  }
                }
              },
              "adjnegliab": {
                "type": "array",
                "description": "Adjusted tax payable amount",
                "items": {
                  "type": "object",
                  "description": "Adjusted tax payable details.",
                  "properties": {
                    "trans_typ": {
                      "type": "integer",
                      "description": "Transaction type."
                    },
                    "liab_ldg_id": {
                      "type": "integer",
                      "description": "Liability ledger identifier."
                    },
                    "tran_desc": {
                      "type": "string",
                      "description": "Transaction description."
                    },
                    "sgst": {
                      "type": "object",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "Interest payable."
                        },
                        "tx": {
                          "type": "number",
                          "description": "Tax payable."
                        },
                        "fee": {
                          "type": "number",
                          "description": "Late fee payable."
                        }
                      }
                    },
                    "cgst": {
                      "type": "object",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "Interest payable."
                        },
                        "tx": {
                          "type": "number",
                          "description": "Tax payable."
                        },
                        "fee": {
                          "type": "number",
                          "description": "Late fee payable."
                        }
                      }
                    },
                    "igst": {
                      "type": "object",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "Interest payable."
                        },
                        "tx": {
                          "type": "number",
                          "description": "Tax payable."
                        }
                      }
                    },
                    "cess": {
                      "type": "object",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "Interest payable."
                        },
                        "tx": {
                          "type": "number",
                          "description": "Tax payable."
                        }
                      }
                    }
                  }
                }
              },
              "net_tax_pay": {
                "type": "array",
                "description": "Net tax payable amount",
                "items": {
                  "type": "object",
                  "properties": {
                    "trans_typ": {
                      "type": "number",
                      "description": "Transaction Id"
                    },
                    "tran_desc": {
                      "type": "string",
                      "description": "Transaction description"
                    },
                    "liab_ldg_id": {
                      "type": "number",
                      "description": "Liability Id"
                    },
                    "sgst": {
                      "type": "object",
                      "description": "The sgst value returned by GSTN.",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "SGST INTEREST Payable"
                        },
                        "tx": {
                          "type": "number",
                          "description": "SGST Tax Payable"
                        },
                        "fee": {
                          "type": "number",
                          "description": "SGST LateFee Payable"
                        }
                      }
                    },
                    "cgst": {
                      "type": "object",
                      "description": "The cgst value returned by GSTN.",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "CGST INTEREST Payable"
                        },
                        "tx": {
                          "type": "number",
                          "description": "CGST Tax Payable"
                        },
                        "fee": {
                          "type": "number",
                          "description": "CGST LateFee Payable"
                        }
                      }
                    },
                    "cess": {
                      "type": "object",
                      "description": "The cess value returned by GSTN.",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "CESS INTEREST Payable"
                        },
                        "tx": {
                          "type": "number",
                          "description": "CESS Tax Payable"
                        },
                        "fee": {
                          "type": "number",
                          "description": "The fee value returned by GSTN.",
                          "example": 0
                        }
                      }
                    },
                    "igst": {
                      "type": "object",
                      "description": "The igst value returned by GSTN.",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "IGST INTEREST Payable"
                        },
                        "tx": {
                          "type": "number",
                          "description": "IGST Tax Payable"
                        },
                        "fee": {
                          "type": "number",
                          "description": "The fee value returned by GSTN.",
                          "example": 0
                        }
                      }
                    }
                  }
                }
              },
              "pdcash": {
                "type": "array",
                "description": "Paid Cash",
                "items": {
                  "type": "object",
                  "properties": {
                    "liab_ldg_id": {
                      "type": "number",
                      "description": "Liability Id"
                    },
                    "trans_typ": {
                      "type": "number",
                      "description": "Transaction Type"
                    },
                    "ipd": {
                      "type": "number",
                      "description": "IGST Paid"
                    },
                    "cpd": {
                      "type": "number",
                      "description": "CGST Paid"
                    },
                    "spd": {
                      "type": "number",
                      "description": "SGST Paid"
                    },
                    "cspd": {
                      "type": "number",
                      "description": "CESS Paid"
                    },
                    "i_intrpd": {
                      "type": "number",
                      "description": "IGST INTEREST Paid"
                    },
                    "c_intrpd": {
                      "type": "number",
                      "description": "CGST INTEREST Paid"
                    },
                    "s_intrpd": {
                      "type": "number",
                      "description": "SGST INTEREST Paid"
                    },
                    "cs_intrpd": {
                      "type": "number",
                      "description": "CESS INTEREST Paid"
                    },
                    "c_lfeepd": {
                      "type": "number",
                      "description": "CGST LateFee Paid"
                    },
                    "s_lfeepd": {
                      "type": "number",
                      "description": "SGST LateFee Paid"
                    },
                    "cs_lfeepd": {
                      "type": "number",
                      "description": "The cs lfeepd value returned by GSTN.",
                      "example": 0
                    },
                    "i_lfeepd": {
                      "type": "number",
                      "description": "The i lfeepd value returned by GSTN.",
                      "example": 0
                    }
                  }
                }
              },
              "pditc": {
                "type": "object",
                "description": "Paid ITC",
                "properties": {
                  "liab_ldg_id": {
                    "type": "number",
                    "description": "Liability Id"
                  },
                  "trans_typ": {
                    "type": "number",
                    "description": "Transaction Id"
                  },
                  "i_pdi": {
                    "type": "number",
                    "description": "IGST Paid as IGST"
                  },
                  "i_pdc": {
                    "type": "number",
                    "description": "IGST Paid as CGST"
                  },
                  "i_pds": {
                    "type": "number",
                    "description": "IGST Paid as SGST"
                  },
                  "c_pdi": {
                    "type": "number",
                    "description": "CGST Paid as IGST"
                  },
                  "c_pdc": {
                    "type": "number",
                    "description": "CGST Paid as CGST"
                  },
                  "s_pdi": {
                    "type": "number",
                    "description": "SGST Paid as IGST"
                  },
                  "s_pds": {
                    "type": "number",
                    "description": "SGST Paid as SGST"
                  },
                  "cs_pdcs": {
                    "type": "number",
                    "description": "CESS Paid as CESS"
                  }
                }
              },
              "pdnls": {
                "type": "array",
                "description": "Paid NLS",
                "items": {
                  "type": "object",
                  "description": "Tax paid against negative liability statement entries.",
                  "properties": {
                    "liab_ldg_id": {
                      "type": "integer",
                      "description": "Liability ledger identifier."
                    },
                    "trans_typ": {
                      "type": "integer",
                      "description": "Transaction type."
                    },
                    "tran_desc": {
                      "type": "string",
                      "description": "Transaction description."
                    },
                    "ipd": {
                      "type": "number",
                      "description": "Integrated tax paid."
                    },
                    "cpd": {
                      "type": "number",
                      "description": "Central tax paid."
                    },
                    "spd": {
                      "type": "number",
                      "description": "State or Union Territory tax paid."
                    },
                    "cspd": {
                      "type": "number",
                      "description": "Cess paid."
                    }
                  }
                }
              }
            }
          },
          "intr_ltfee": {
            "type": "object",
            "description": "Interest and LateFee",
            "properties": {
              "intr_details": {
                "type": "object",
                "description": "Interest",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "CGST amount"
                  },
                  "csamt": {
                    "type": "number",
                    "description": "CESS amount"
                  },
                  "iamt": {
                    "type": "number",
                    "description": "IGST Paid"
                  },
                  "samt": {
                    "type": "number",
                    "description": "SGST amount"
                  }
                }
              },
              "ltfee_details": {
                "type": "object",
                "description": "Latefee",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "CGST amount"
                  },
                  "samt": {
                    "type": "number",
                    "description": "SGST amount"
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  }
                }
              }
            }
          },
          "liab_breakup": {
            "type": "array",
            "description": "The liab breakup value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "ret_period": {
                  "type": "string",
                  "description": "Return period of breakup"
                },
                "liability": {
                  "type": "object",
                  "description": "The liability value returned by GSTN.",
                  "properties": {
                    "iamt": {
                      "type": "number",
                      "description": "Declared IGST liability"
                    },
                    "camt": {
                      "type": "number",
                      "description": "Declared CGST liability"
                    },
                    "samt": {
                      "type": "number",
                      "description": "Declared SGST liability"
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Declared Cess liability"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr3bDetailsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr3bDetailsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr3bDetailsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr3bDetailsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "SaveGstr3bSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Save Gstr3b.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "ab2b2eae-974d-40e2-a721-8c4987af92d0"
          }
        }
      },
      "SaveGstr3bSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/SaveGstr3bSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "SaveGstr3bResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/SaveGstr3bSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "SaveGstr3bRequest": {
        "type": "object",
        "description": "JSON raw body",
        "properties": {
          "inward_sup": {
            "type": "object",
            "description": "The inward sup value provided in the request.",
            "properties": {
              "isup_details": {
                "type": "array",
                "description": "The isup details value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "intra": {
                      "type": "integer",
                      "description": "The intra value provided in the request."
                    },
                    "ty": {
                      "type": "string",
                      "description": "The ty value provided in the request."
                    },
                    "inter": {
                      "type": "integer",
                      "description": "The inter value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "sup_details": {
            "type": "object",
            "description": "The sup details value provided in the request.",
            "properties": {
              "osup_nil_exmp": {
                "type": "object",
                "description": "The osup nil exmp value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "osup_nongst": {
                "type": "object",
                "description": "The osup nongst value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "osup_zero": {
                "type": "object",
                "description": "The osup zero value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "osup_det": {
                "type": "object",
                "description": "The osup det value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "isup_rev": {
                "type": "object",
                "description": "The isup rev value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              }
            }
          },
          "intr_ltfee": {
            "type": "object",
            "description": "The intr ltfee value provided in the request.",
            "properties": {
              "intr_details": {
                "type": "object",
                "description": "The intr details value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              }
            }
          },
          "inter_sup": {
            "type": "object",
            "description": "The inter sup value provided in the request.",
            "properties": {
              "comp_details": {
                "type": "array",
                "description": "A list that can be empty; record fields depend on the return section.",
                "items": {
                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                }
              },
              "uin_details": {
                "type": "array",
                "description": "A list that can be empty; record fields depend on the return section.",
                "items": {
                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                }
              },
              "unreg_details": {
                "type": "array",
                "description": "A list that can be empty; record fields depend on the return section.",
                "items": {
                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                }
              }
            }
          },
          "itc_elg": {
            "type": "object",
            "description": "The itc elg value provided in the request.",
            "properties": {
              "itc_avl": {
                "type": "array",
                "description": "The itc avl value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "ty": {
                      "type": "string",
                      "description": "The ty value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    }
                  }
                }
              },
              "itc_rev": {
                "type": "array",
                "description": "The itc rev value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "ty": {
                      "type": "string",
                      "description": "The ty value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    }
                  }
                }
              },
              "itc_net": {
                "type": "object",
                "description": "The itc net value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "itc_inelg": {
                "type": "array",
                "description": "The itc inelg value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "ty": {
                      "type": "string",
                      "description": "The ty value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr3bLiabilityAutoCalcSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gstr3b Liability Auto Calc.",
        "properties": {
          "r3bautopop": {
            "type": "object",
            "description": "GSTR3B AutoPopulation",
            "properties": {
              "r1fildt": {
                "type": "string",
                "description": "GSTR1 Filing date"
              },
              "r2bgendt": {
                "type": "string",
                "description": "GSTR2B Generation date"
              },
              "r3bgendt": {
                "type": "string",
                "description": "GSTR3B Generation date"
              },
              "r1afildt": {
                "type": "string",
                "description": "GSTR1A Filing date"
              },
              "error": {
                "type": "array",
                "description": "The error value returned by GSTN.",
                "items": {
                  "type": "object",
                  "description": "A GSTN record whose fields vary by return section.",
                  "properties": {
                    "error_cd": {
                      "type": "string",
                      "description": "Error Code"
                    },
                    "error_desc": {
                      "type": "string",
                      "description": "Error Description"
                    }
                  }
                }
              },
              "liabitc": {
                "type": "object",
                "description": "The liabitc value returned by GSTN.",
                "properties": {
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN",
                    "minLength": 15,
                    "maxLength": 15
                  },
                  "ret_period": {
                    "type": "string",
                    "description": "Return period"
                  },
                  "sup_details": {
                    "type": "object",
                    "description": "The sup details value returned by GSTN.",
                    "properties": {
                      "osup_3_1a": {
                        "type": "object",
                        "description": "The osup 3 1a value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "object",
                                "description": "The tbl4a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl4b": {
                                "type": "object",
                                "description": "The tbl4b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "object",
                                "description": "The tbl4c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl5a": {
                                "type": "object",
                                "description": "The tbl5a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl5b": {
                                "type": "object",
                                "description": "The tbl5b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl6c": {
                                "type": "object",
                                "description": "The tbl6c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl7a_1": {
                                "type": "object",
                                "description": "The tbl7a 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "object",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "object",
                                "description": "The tbl9a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "object",
                                "description": "The tbl9b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "object",
                                "description": "The tbl9c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl10a": {
                                "type": "object",
                                "description": "The tbl10a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "object",
                                "description": "The tbl10b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_a_1": {
                                "type": "object",
                                "description": "The tbl11 i a 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "Stae/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "object",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_b_1": {
                                "type": "object",
                                "description": "The tbl11 i b 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "Stae/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "object",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "object",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4b": {
                                "type": "array",
                                "description": "The tbl4b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl5b": {
                                "type": "array",
                                "description": "The tbl5b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl6c": {
                                "type": "array",
                                "description": "The tbl6c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7a_1": {
                                "type": "array",
                                "description": "The tbl7a 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10a": {
                                "type": "array",
                                "description": "The tbl10a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_1": {
                                "type": "array",
                                "description": "The tbl11 i a 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_1": {
                                "type": "array",
                                "description": "The tbl11 i b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1b": {
                        "type": "object",
                        "description": "The osup 3 1b value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl6a": {
                                "type": "object",
                                "description": "The tbl6a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl6b": {
                                "type": "object",
                                "description": "The tbl6b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "object",
                                "description": "The tbl9a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "object",
                                "description": "The tbl9b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "object",
                                "description": "The tbl9c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "object",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "object",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "object",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "object",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl6a": {
                                "type": "array",
                                "description": "The tbl6a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl6b": {
                                "type": "array",
                                "description": "The tbl6b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1c": {
                        "type": "object",
                        "description": "The osup 3 1c value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "object",
                                "description": "The tbl8 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "array",
                                "description": "The tbl8 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "isup_3_1d": {
                        "type": "object",
                        "description": "The isup 3 1d value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1e": {
                        "type": "object",
                        "description": "The osup 3 1e value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "object",
                                "description": "The tbl8 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "array",
                                "description": "The tbl8 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "esup_3_1_1b": {
                        "type": "object",
                        "description": "The esup 3 1 1b value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl14b": {
                                "type": "array",
                                "description": "The tbl14b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl14b_A": {
                                "type": "array",
                                "description": "The tbl14b A value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl14b": {
                                "type": "object",
                                "description": "Quarterly e-commerce taxable-supply totals.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period or filing frequency."
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Taxable value."
                                  }
                                }
                              },
                              "tbl14b_A": {
                                "type": "object",
                                "description": "Quarterly e-commerce taxable-supply totals.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period or filing frequency."
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Taxable value."
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "esup_3_1_1a": {
                        "type": "object",
                        "description": "The esup 3 1 1a value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "array",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "array",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "inter_sup": {
                    "type": "object",
                    "description": "The inter sup value returned by GSTN.",
                    "properties": {
                      "osup_unreg_3_2": {
                        "type": "object",
                        "description": "The osup unreg 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 0
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 0
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_comp_3_2": {
                        "type": "object",
                        "description": "The osup comp 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_uin_3_2": {
                        "type": "object",
                        "description": "The osup uin 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "elgitc": {
                    "type": "object",
                    "description": "The elgitc value returned by GSTN.",
                    "properties": {
                      "itc4a1": {
                        "type": "object",
                        "description": "The itc4a1 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a3": {
                        "type": "object",
                        "description": "The itc4a3 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a4": {
                        "type": "object",
                        "description": "The itc4a4 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a5": {
                        "type": "object",
                        "description": "The itc4a5 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4b2": {
                        "type": "object",
                        "description": "The itc4b2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcrev": {
                                "type": "object",
                                "description": "The itcrev value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcrev": {
                                "type": "array",
                                "description": "The itcrev value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4d2": {
                        "type": "object",
                        "description": "The itc4d2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "liabitcr1": {
                "type": "object",
                "description": "The liabitcr1 value returned by GSTN.",
                "properties": {
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN",
                    "minLength": 15,
                    "maxLength": 15
                  },
                  "ret_period": {
                    "type": "string",
                    "description": "Return period"
                  },
                  "sup_details": {
                    "type": "object",
                    "description": "The sup details value returned by GSTN.",
                    "properties": {
                      "osup_3_1a": {
                        "type": "object",
                        "description": "The osup 3 1a value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "object",
                                "description": "The tbl4a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl4b": {
                                "type": "object",
                                "description": "The tbl4b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "object",
                                "description": "The tbl4c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl5a": {
                                "type": "object",
                                "description": "The tbl5a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl5b": {
                                "type": "object",
                                "description": "The tbl5b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl6c": {
                                "type": "object",
                                "description": "The tbl6c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl7a_1": {
                                "type": "object",
                                "description": "The tbl7a 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "object",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "object",
                                "description": "The tbl9a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "object",
                                "description": "The tbl9b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "object",
                                "description": "The tbl9c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl10a": {
                                "type": "object",
                                "description": "The tbl10a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "object",
                                "description": "The tbl10b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_a_1": {
                                "type": "object",
                                "description": "The tbl11 i a 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "Stae/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "object",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_b_1": {
                                "type": "object",
                                "description": "The tbl11 i b 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "Stae/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "object",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "object",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4b": {
                                "type": "array",
                                "description": "The tbl4b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl5b": {
                                "type": "array",
                                "description": "The tbl5b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl6c": {
                                "type": "array",
                                "description": "The tbl6c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7a_1": {
                                "type": "array",
                                "description": "The tbl7a 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10a": {
                                "type": "array",
                                "description": "The tbl10a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_1": {
                                "type": "array",
                                "description": "The tbl11 i a 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_1": {
                                "type": "array",
                                "description": "The tbl11 i b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1b": {
                        "type": "object",
                        "description": "The osup 3 1b value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl6a": {
                                "type": "object",
                                "description": "The tbl6a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl6b": {
                                "type": "object",
                                "description": "The tbl6b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "object",
                                "description": "The tbl9a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "object",
                                "description": "The tbl9b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "object",
                                "description": "The tbl9c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "object",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "object",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "object",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "object",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl6a": {
                                "type": "array",
                                "description": "The tbl6a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl6b": {
                                "type": "array",
                                "description": "The tbl6b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1c": {
                        "type": "object",
                        "description": "The osup 3 1c value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "object",
                                "description": "The tbl8 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "array",
                                "description": "The tbl8 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "isup_3_1d": {
                        "type": "object",
                        "description": "The isup 3 1d value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1e": {
                        "type": "object",
                        "description": "The osup 3 1e value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "object",
                                "description": "The tbl8 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "array",
                                "description": "The tbl8 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "esup_3_1_1b": {
                        "type": "object",
                        "description": "The esup 3 1 1b value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl14b": {
                                "type": "array",
                                "description": "The tbl14b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl14b_A": {
                                "type": "array",
                                "description": "The tbl14b A value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl14b": {
                                "type": "object",
                                "description": "Quarterly e-commerce taxable-supply totals.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period or filing frequency."
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Taxable value."
                                  }
                                }
                              },
                              "tbl14b_A": {
                                "type": "object",
                                "description": "Quarterly e-commerce taxable-supply totals.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period or filing frequency."
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Taxable value."
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "esup_3_1_1a": {
                        "type": "object",
                        "description": "The esup 3 1 1a value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "array",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "array",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "inter_sup": {
                    "type": "object",
                    "description": "The inter sup value returned by GSTN.",
                    "properties": {
                      "osup_unreg_3_2": {
                        "type": "object",
                        "description": "The osup unreg 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 0
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 0
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_comp_3_2": {
                        "type": "object",
                        "description": "The osup comp 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_uin_3_2": {
                        "type": "object",
                        "description": "The osup uin 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "elgitc": {
                    "type": "object",
                    "description": "The elgitc value returned by GSTN.",
                    "properties": {
                      "itc4a1": {
                        "type": "object",
                        "description": "The itc4a1 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a3": {
                        "type": "object",
                        "description": "The itc4a3 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a4": {
                        "type": "object",
                        "description": "The itc4a4 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a5": {
                        "type": "object",
                        "description": "The itc4a5 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4b2": {
                        "type": "object",
                        "description": "The itc4b2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcrev": {
                                "type": "object",
                                "description": "The itcrev value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcrev": {
                                "type": "array",
                                "description": "The itcrev value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4d2": {
                        "type": "object",
                        "description": "The itc4d2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "liabitcr1a": {
                "type": "object",
                "description": "The liabitcr1a value returned by GSTN.",
                "properties": {
                  "gstin": {
                    "type": "string",
                    "description": "GSTIN",
                    "minLength": 15,
                    "maxLength": 15
                  },
                  "ret_period": {
                    "type": "string",
                    "description": "Return period"
                  },
                  "sup_details": {
                    "type": "object",
                    "description": "The sup details value returned by GSTN.",
                    "properties": {
                      "osup_3_1a": {
                        "type": "object",
                        "description": "The osup 3 1a value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "object",
                                "description": "The tbl4a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl4b": {
                                "type": "object",
                                "description": "The tbl4b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "object",
                                "description": "The tbl4c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl5a": {
                                "type": "object",
                                "description": "The tbl5a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl5b": {
                                "type": "object",
                                "description": "The tbl5b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl6c": {
                                "type": "object",
                                "description": "The tbl6c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl7a_1": {
                                "type": "object",
                                "description": "The tbl7a 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "object",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "object",
                                "description": "The tbl9a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "object",
                                "description": "The tbl9b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "object",
                                "description": "The tbl9c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl10a": {
                                "type": "object",
                                "description": "The tbl10a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "object",
                                "description": "The tbl10b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_a_1": {
                                "type": "object",
                                "description": "The tbl11 i a 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "Stae/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "object",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl11_i_b_1": {
                                "type": "object",
                                "description": "The tbl11 i b 1 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "Stae/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "object",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 0
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "object",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4b": {
                                "type": "array",
                                "description": "The tbl4b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl5b": {
                                "type": "array",
                                "description": "The tbl5b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl6c": {
                                "type": "array",
                                "description": "The tbl6c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7a_1": {
                                "type": "array",
                                "description": "The tbl7a 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10a": {
                                "type": "array",
                                "description": "The tbl10a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_1": {
                                "type": "array",
                                "description": "The tbl11 i a 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_1": {
                                "type": "array",
                                "description": "The tbl11 i b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1b": {
                        "type": "object",
                        "description": "The osup 3 1b value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl6a": {
                                "type": "object",
                                "description": "The tbl6a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl6b": {
                                "type": "object",
                                "description": "The tbl6b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "object",
                                "description": "The tbl9a value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "object",
                                "description": "The tbl9b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "object",
                                "description": "The tbl9c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "object",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "object",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "object",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "object",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl6a": {
                                "type": "array",
                                "description": "The tbl6a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl6b": {
                                "type": "array",
                                "description": "The tbl6b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_9b_cn": {
                                "type": "object",
                                "description": "The ims 9b cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9c_cn": {
                                "type": "object",
                                "description": "The ims 9c cn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_9a_9c_dn": {
                                "type": "object",
                                "description": "The ims 9a 9c dn value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1c": {
                        "type": "object",
                        "description": "The osup 3 1c value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "object",
                                "description": "The tbl8 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "array",
                                "description": "The tbl8 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "isup_3_1d": {
                        "type": "object",
                        "description": "The isup 3 1d value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_3_1e": {
                        "type": "object",
                        "description": "The osup 3 1e value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "object",
                                "description": "The tbl8 value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl8": {
                                "type": "array",
                                "description": "The tbl8 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "esup_3_1_1b": {
                        "type": "object",
                        "description": "The esup 3 1 1b value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl14b": {
                                "type": "array",
                                "description": "The tbl14b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl14b_A": {
                                "type": "array",
                                "description": "The tbl14b A value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl14b": {
                                "type": "object",
                                "description": "Quarterly e-commerce taxable-supply totals.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period or filing frequency."
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Taxable value."
                                  }
                                }
                              },
                              "tbl14b_A": {
                                "type": "object",
                                "description": "Quarterly e-commerce taxable-supply totals.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period or filing frequency."
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Taxable value."
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "esup_3_1_1a": {
                        "type": "object",
                        "description": "The esup 3 1 1a value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "txval": {
                                "type": "number",
                                "description": "Tax value",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "array",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "array",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "ims_15_b2ba": {
                                "type": "object",
                                "description": "The ims 15 b2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "ims_15_urp2ba": {
                                "type": "object",
                                "description": "The ims 15 urp2ba value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "camt": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "samt": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "csamt": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "inter_sup": {
                    "type": "object",
                    "description": "The inter sup value returned by GSTN.",
                    "properties": {
                      "osup_unreg_3_2": {
                        "type": "object",
                        "description": "The osup unreg 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 0
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "properties": {
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "properties": {
                                  "form": {
                                    "type": "string",
                                    "description": "Tax period",
                                    "enum": [
                                      "IFF - January",
                                      "IFF - February",
                                      "IFF - March",
                                      "IFF - April",
                                      "IFF - May",
                                      "IFF - June",
                                      "IFF - July",
                                      "IFF - August",
                                      "IFF - September",
                                      "IFF - October",
                                      "IFF - November",
                                      "IFF - December",
                                      "GSTR-1 Quarterly",
                                      "GSTR-1/1A Quarterly",
                                      "IFF/GSTR-1 Quarterly"
                                    ]
                                  },
                                  "txval": {
                                    "type": "number",
                                    "description": "Tax value",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "iamt": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "pos": {
                                    "type": "string",
                                    "description": "Place of supply (State/UT)",
                                    "minLength": 0,
                                    "maxLength": 2
                                  }
                                },
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl5a": {
                                "type": "array",
                                "description": "The tbl5a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl7b_1": {
                                "type": "array",
                                "description": "The tbl7b 1 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl10b": {
                                "type": "array",
                                "description": "The tbl10b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_i_a_2": {
                                "type": "array",
                                "description": "The tbl11 i a 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_i_b_2": {
                                "type": "array",
                                "description": "The tbl11 i b 2 value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 0
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 0
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl11_ii": {
                                "type": "array",
                                "description": "The tbl11 ii value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2c": {
                                "type": "array",
                                "description": "The tbl15b2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2c": {
                                "type": "array",
                                "description": "The tbl15urp2c value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15b2ca": {
                                "type": "array",
                                "description": "The tbl15b2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              },
                              "tbl15urp2ca": {
                                "type": "array",
                                "description": "The tbl15urp2ca value returned by GSTN.",
                                "items": {
                                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_comp_3_2": {
                        "type": "object",
                        "description": "The osup comp 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "osup_uin_3_2": {
                        "type": "object",
                        "description": "The osup uin 3 2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "array",
                            "description": "The subtotal value returned by GSTN.",
                            "minItems": 1,
                            "maxItems": 40,
                            "items": {
                              "type": "object",
                              "properties": {
                                "pos": {
                                  "type": "string",
                                  "description": "Place of supply (State/UT)",
                                  "minLength": 0,
                                  "maxLength": 2
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "Tax value",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                },
                                "iamt": {
                                  "type": "number",
                                  "description": "Integrated tax",
                                  "minimum": -9999999999999.99,
                                  "maximum": 9999999999999.99
                                }
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": 0,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "minItems": 1,
                                "maxItems": 40,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Tax value",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "pos": {
                                      "type": "string",
                                      "description": "Place of supply (State/UT)",
                                      "minLength": 0,
                                      "maxLength": 2
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "tbl4a": {
                                "type": "array",
                                "description": "The tbl4a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl4c": {
                                "type": "array",
                                "description": "The tbl4c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": 0,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9a": {
                                "type": "array",
                                "description": "The tbl9a value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9b": {
                                "type": "array",
                                "description": "The tbl9b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl9c": {
                                "type": "array",
                                "description": "The tbl9c value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2b": {
                                "type": "array",
                                "description": "The tbl15b2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2b": {
                                "type": "array",
                                "description": "The tbl15urp2b value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15b2ba": {
                                "type": "array",
                                "description": "The tbl15b2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              },
                              "tbl15urp2ba": {
                                "type": "array",
                                "description": "The tbl15urp2ba value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Tax period",
                                      "enum": [
                                        "IFF - January",
                                        "IFF - February",
                                        "IFF - March",
                                        "IFF - April",
                                        "IFF - May",
                                        "IFF - June",
                                        "IFF - July",
                                        "IFF - August",
                                        "IFF - September",
                                        "IFF - October",
                                        "IFF - November",
                                        "IFF - December",
                                        "GSTR-1 Quarterly",
                                        "GSTR-1/1A Quarterly",
                                        "IFF/GSTR-1 Quarterly"
                                      ]
                                    },
                                    "pos_det": {
                                      "type": "array",
                                      "description": "The pos det value returned by GSTN.",
                                      "minItems": 1,
                                      "maxItems": 40,
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "pos": {
                                            "type": "string",
                                            "description": "Place of supply (State/UT)",
                                            "minLength": 0,
                                            "maxLength": 2
                                          },
                                          "txval": {
                                            "type": "number",
                                            "description": "Tax value",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          },
                                          "iamt": {
                                            "type": "number",
                                            "description": "Integrated tax",
                                            "minimum": -9999999999999.99,
                                            "maximum": 9999999999999.99
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "elgitc": {
                    "type": "object",
                    "description": "The elgitc value returned by GSTN.",
                    "properties": {
                      "itc4a1": {
                        "type": "object",
                        "description": "The itc4a1 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a3": {
                        "type": "object",
                        "description": "The itc4a3 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a4": {
                        "type": "object",
                        "description": "The itc4a4 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4a5": {
                        "type": "object",
                        "description": "The itc4a5 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "object",
                                "description": "The itcavl cn value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcavl_cn": {
                                "type": "array",
                                "description": "The itcavl cn value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4b2": {
                        "type": "object",
                        "description": "The itc4b2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": 0,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "object",
                                "description": "The itcavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              },
                              "itcrev": {
                                "type": "object",
                                "description": "The itcrev value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": 0,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcavl": {
                                "type": "array",
                                "description": "The itcavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              },
                              "itcrev": {
                                "type": "array",
                                "description": "The itcrev value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "itc4d2": {
                        "type": "object",
                        "description": "The itc4d2 value returned by GSTN.",
                        "properties": {
                          "subtotal": {
                            "type": "object",
                            "description": "The subtotal value returned by GSTN.",
                            "properties": {
                              "iamt": {
                                "type": "number",
                                "description": "Integrated tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "camt": {
                                "type": "number",
                                "description": "Central tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "samt": {
                                "type": "number",
                                "description": "State/UT tax",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              },
                              "csamt": {
                                "type": "number",
                                "description": "Cess",
                                "minimum": -9999999999999.99,
                                "maximum": 9999999999999.99
                              }
                            }
                          },
                          "det": {
                            "type": "object",
                            "description": "The det value returned by GSTN.",
                            "properties": {
                              "itcunavl": {
                                "type": "object",
                                "description": "The itcunavl value returned by GSTN.",
                                "properties": {
                                  "igst": {
                                    "type": "number",
                                    "description": "Integrated tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cgst": {
                                    "type": "number",
                                    "description": "Central tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "sgst": {
                                    "type": "number",
                                    "description": "State/UT tax",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  },
                                  "cess": {
                                    "type": "number",
                                    "description": "Cess",
                                    "minimum": -9999999999999.99,
                                    "maximum": 9999999999999.99
                                  }
                                }
                              }
                            }
                          },
                          "det_q": {
                            "type": "object",
                            "description": "The det q value returned by GSTN.",
                            "properties": {
                              "itcunavl": {
                                "type": "array",
                                "description": "The itcunavl value returned by GSTN.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "form": {
                                      "type": "string",
                                      "description": "Form",
                                      "enum": [
                                        "January",
                                        "February",
                                        "March",
                                        "April",
                                        "May",
                                        "June",
                                        "July",
                                        "August",
                                        "September",
                                        "October",
                                        "November",
                                        "December"
                                      ]
                                    },
                                    "igst": {
                                      "type": "number",
                                      "description": "Integrated tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cgst": {
                                      "type": "number",
                                      "description": "Central tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "sgst": {
                                      "type": "number",
                                      "description": "State/UT tax",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    },
                                    "cess": {
                                      "type": "number",
                                      "description": "Cess",
                                      "minimum": -9999999999999.99,
                                      "maximum": 9999999999999.99
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetGstr3bLiabilityAutoCalcSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstr3bLiabilityAutoCalcSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstr3bLiabilityAutoCalcResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstr3bLiabilityAutoCalcSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "FileGstr3bSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for File Gstr3b.",
        "properties": {
          "ack_num": {
            "type": "string",
            "description": "The ack num value returned by GSTN.",
            "example": "AB2410242527396 19/11/2024 16:23"
          }
        }
      },
      "FileGstr3bSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/FileGstr3bSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "FileGstr3bResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/FileGstr3bSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "FileGstr3bRequest": {
        "type": "object",
        "description": "Public request body for File Gstr3b.",
        "properties": {
          "tx_pmt": {
            "type": "object",
            "description": "The tx pmt value provided in the request.",
            "properties": {
              "net_tax_pay": {
                "type": "array",
                "description": "The net tax pay value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "sgst": {
                      "type": "object",
                      "description": "The sgst value provided in the request.",
                      "properties": {
                        "intr": {
                          "type": "integer",
                          "description": "The intr value provided in the request."
                        },
                        "tx": {
                          "type": "integer",
                          "description": "The tx value provided in the request."
                        },
                        "fee": {
                          "type": "integer",
                          "description": "The fee value provided in the request."
                        }
                      }
                    },
                    "liab_ldg_id": {
                      "type": "integer",
                      "description": "The liab ldg id value provided in the request."
                    },
                    "tran_desc": {
                      "type": "string",
                      "description": "The tran desc value provided in the request."
                    },
                    "cgst": {
                      "type": "object",
                      "description": "The cgst value provided in the request.",
                      "properties": {
                        "intr": {
                          "type": "integer",
                          "description": "The intr value provided in the request."
                        },
                        "tx": {
                          "type": "integer",
                          "description": "The tx value provided in the request."
                        },
                        "fee": {
                          "type": "integer",
                          "description": "The fee value provided in the request."
                        }
                      }
                    },
                    "cess": {
                      "type": "object",
                      "description": "The cess value provided in the request.",
                      "properties": {
                        "intr": {
                          "type": "integer",
                          "description": "The intr value provided in the request."
                        },
                        "tx": {
                          "type": "integer",
                          "description": "The tx value provided in the request."
                        },
                        "fee": {
                          "type": "integer",
                          "description": "The fee value provided in the request."
                        }
                      }
                    },
                    "igst": {
                      "type": "object",
                      "description": "The igst value provided in the request.",
                      "properties": {
                        "intr": {
                          "type": "integer",
                          "description": "The intr value provided in the request."
                        },
                        "tx": {
                          "type": "integer",
                          "description": "The tx value provided in the request."
                        },
                        "fee": {
                          "type": "integer",
                          "description": "The fee value provided in the request."
                        }
                      }
                    },
                    "trans_typ": {
                      "type": "integer",
                      "description": "The trans typ value provided in the request."
                    }
                  }
                }
              },
              "adjnegliab": {
                "type": "array",
                "description": "A list that can be empty; record fields depend on the return section.",
                "items": {
                  "type": "object",
                  "description": "Adjusted tax payable details.",
                  "properties": {
                    "trans_typ": {
                      "type": "integer",
                      "description": "Transaction type."
                    },
                    "liab_ldg_id": {
                      "type": "integer",
                      "description": "Liability ledger identifier."
                    },
                    "tran_desc": {
                      "type": "string",
                      "description": "Transaction description."
                    },
                    "sgst": {
                      "type": "object",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "Interest payable."
                        },
                        "tx": {
                          "type": "number",
                          "description": "Tax payable."
                        },
                        "fee": {
                          "type": "number",
                          "description": "Late fee payable."
                        }
                      }
                    },
                    "cgst": {
                      "type": "object",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "Interest payable."
                        },
                        "tx": {
                          "type": "number",
                          "description": "Tax payable."
                        },
                        "fee": {
                          "type": "number",
                          "description": "Late fee payable."
                        }
                      }
                    },
                    "igst": {
                      "type": "object",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "Interest payable."
                        },
                        "tx": {
                          "type": "number",
                          "description": "Tax payable."
                        }
                      }
                    },
                    "cess": {
                      "type": "object",
                      "properties": {
                        "intr": {
                          "type": "number",
                          "description": "Interest payable."
                        },
                        "tx": {
                          "type": "number",
                          "description": "Tax payable."
                        }
                      }
                    }
                  }
                }
              },
              "pdnls": {
                "type": "array",
                "description": "A list that can be empty; record fields depend on the return section.",
                "items": {
                  "type": "object",
                  "description": "Tax paid against negative liability statement entries.",
                  "properties": {
                    "liab_ldg_id": {
                      "type": "integer",
                      "description": "Liability ledger identifier."
                    },
                    "trans_typ": {
                      "type": "integer",
                      "description": "Transaction type."
                    },
                    "tran_desc": {
                      "type": "string",
                      "description": "Transaction description."
                    },
                    "ipd": {
                      "type": "number",
                      "description": "Integrated tax paid."
                    },
                    "cpd": {
                      "type": "number",
                      "description": "Central tax paid."
                    },
                    "spd": {
                      "type": "number",
                      "description": "State or Union Territory tax paid."
                    },
                    "cspd": {
                      "type": "number",
                      "description": "Cess paid."
                    }
                  }
                }
              },
              "pdcash": {
                "type": "array",
                "description": "The pdcash value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "liab_ldg_id": {
                      "type": "integer",
                      "description": "The liab ldg id value provided in the request."
                    },
                    "spd": {
                      "type": "integer",
                      "description": "The spd value provided in the request."
                    },
                    "c_intrpd": {
                      "type": "integer",
                      "description": "The c intrpd value provided in the request."
                    },
                    "i_lfeepd": {
                      "type": "integer",
                      "description": "The i lfeepd value provided in the request."
                    },
                    "cspd": {
                      "type": "integer",
                      "description": "The cspd value provided in the request."
                    },
                    "s_intrpd": {
                      "type": "integer",
                      "description": "The s intrpd value provided in the request."
                    },
                    "trans_typ": {
                      "type": "integer",
                      "description": "The trans typ value provided in the request."
                    },
                    "i_intrpd": {
                      "type": "integer",
                      "description": "The i intrpd value provided in the request."
                    },
                    "s_lfeepd": {
                      "type": "integer",
                      "description": "The s lfeepd value provided in the request."
                    },
                    "cpd": {
                      "type": "integer",
                      "description": "The cpd value provided in the request."
                    },
                    "c_lfeepd": {
                      "type": "integer",
                      "description": "The c lfeepd value provided in the request."
                    },
                    "cs_intrpd": {
                      "type": "integer",
                      "description": "The cs intrpd value provided in the request."
                    },
                    "cs_lfeepd": {
                      "type": "integer",
                      "description": "The cs lfeepd value provided in the request."
                    },
                    "ipd": {
                      "type": "integer",
                      "description": "The ipd value provided in the request."
                    }
                  }
                }
              },
              "pditc": {
                "type": "object",
                "description": "The pditc value provided in the request.",
                "properties": {
                  "s_pds": {
                    "type": "integer",
                    "description": "The s pds value provided in the request."
                  },
                  "liab_ldg_id": {
                    "type": "integer",
                    "description": "The liab ldg id value provided in the request."
                  },
                  "c_pdi": {
                    "type": "integer",
                    "description": "The c pdi value provided in the request."
                  },
                  "cs_pdcs": {
                    "type": "integer",
                    "description": "The cs pdcs value provided in the request."
                  },
                  "s_pdi": {
                    "type": "integer",
                    "description": "The s pdi value provided in the request."
                  },
                  "i_pdi": {
                    "type": "integer",
                    "description": "The i pdi value provided in the request."
                  },
                  "c_pdc": {
                    "type": "integer",
                    "description": "The c pdc value provided in the request."
                  },
                  "i_pdc": {
                    "type": "integer",
                    "description": "The i pdc value provided in the request."
                  },
                  "i_pds": {
                    "type": "integer",
                    "description": "The i pds value provided in the request."
                  },
                  "trans_typ": {
                    "type": "integer",
                    "description": "The trans typ value provided in the request."
                  }
                }
              },
              "tx_py": {
                "type": "array",
                "description": "The tx py value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "sgst": {
                      "type": "object",
                      "description": "The sgst value provided in the request.",
                      "properties": {
                        "intr": {
                          "type": "integer",
                          "description": "The intr value provided in the request."
                        },
                        "tx": {
                          "type": "integer",
                          "description": "The tx value provided in the request."
                        },
                        "fee": {
                          "type": "integer",
                          "description": "The fee value provided in the request."
                        }
                      }
                    },
                    "liab_ldg_id": {
                      "type": "integer",
                      "description": "The liab ldg id value provided in the request."
                    },
                    "tran_desc": {
                      "type": "string",
                      "description": "The tran desc value provided in the request."
                    },
                    "cgst": {
                      "type": "object",
                      "description": "The cgst value provided in the request.",
                      "properties": {
                        "intr": {
                          "type": "integer",
                          "description": "The intr value provided in the request."
                        },
                        "tx": {
                          "type": "integer",
                          "description": "The tx value provided in the request."
                        },
                        "fee": {
                          "type": "integer",
                          "description": "The fee value provided in the request."
                        }
                      }
                    },
                    "cess": {
                      "type": "object",
                      "description": "The cess value provided in the request.",
                      "properties": {
                        "intr": {
                          "type": "integer",
                          "description": "The intr value provided in the request."
                        },
                        "tx": {
                          "type": "integer",
                          "description": "The tx value provided in the request."
                        },
                        "fee": {
                          "type": "integer",
                          "description": "The fee value provided in the request."
                        }
                      }
                    },
                    "igst": {
                      "type": "object",
                      "description": "The igst value provided in the request.",
                      "properties": {
                        "intr": {
                          "type": "integer",
                          "description": "The intr value provided in the request."
                        },
                        "tx": {
                          "type": "integer",
                          "description": "The tx value provided in the request."
                        },
                        "fee": {
                          "type": "integer",
                          "description": "The fee value provided in the request."
                        }
                      }
                    },
                    "trans_typ": {
                      "type": "integer",
                      "description": "The trans typ value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "eco_dtls": {
            "type": "object",
            "description": "The eco dtls value provided in the request.",
            "properties": {
              "eco_reg_sup": {
                "type": "object",
                "description": "The eco reg sup value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "eco_sup": {
                "type": "object",
                "description": "The eco sup value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              }
            }
          },
          "sup_details": {
            "type": "object",
            "description": "The sup details value provided in the request.",
            "properties": {
              "osup_zero": {
                "type": "object",
                "description": "The osup zero value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "osup_nil_exmp": {
                "type": "object",
                "description": "The osup nil exmp value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "osup_nongst": {
                "type": "object",
                "description": "The osup nongst value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "osup_det": {
                "type": "object",
                "description": "The osup det value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "isup_rev": {
                "type": "object",
                "description": "The isup rev value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              }
            }
          },
          "intr_ltfee": {
            "type": "object",
            "description": "The intr ltfee value provided in the request.",
            "properties": {
              "ltfee_details": {
                "type": "object",
                "description": "The ltfee details value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "intr_details": {
                "type": "object",
                "description": "The intr details value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              }
            }
          },
          "inter_sup": {
            "type": "object",
            "description": "The inter sup value provided in the request.",
            "properties": {
              "unreg_details": {
                "type": "array",
                "description": "The unreg details value provided in the request.",
                "items": {
                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                }
              },
              "comp_details": {
                "type": "array",
                "description": "The comp details value provided in the request.",
                "items": {
                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                }
              },
              "uin_details": {
                "type": "array",
                "description": "A list that can be empty; record fields depend on the return section.",
                "items": {
                  "$ref": "#/components/schemas/Gstr3bInterStateSupply"
                }
              }
            }
          },
          "itc_elg": {
            "type": "object",
            "description": "The itc elg value provided in the request.",
            "properties": {
              "itc_avl": {
                "type": "array",
                "description": "The itc avl value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    },
                    "ty": {
                      "type": "string",
                      "description": "The ty value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    }
                  }
                }
              },
              "itc_net": {
                "type": "object",
                "description": "The itc net value provided in the request.",
                "properties": {
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "itc_rev": {
                "type": "array",
                "description": "The itc rev value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    },
                    "ty": {
                      "type": "string",
                      "description": "The ty value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    }
                  }
                }
              },
              "itc_inelg": {
                "type": "array",
                "description": "The itc inelg value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    },
                    "ty": {
                      "type": "string",
                      "description": "The ty value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "Gstr3bOffsetLiabilitySuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Gstr3b Offset Liability.",
        "properties": {
          "Message": {
            "type": "string",
            "description": "The Message value returned by GSTN.",
            "example": "Payment of tax successfully done"
          }
        }
      },
      "Gstr3bOffsetLiabilitySuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/Gstr3bOffsetLiabilitySuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "Gstr3bOffsetLiabilityResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/Gstr3bOffsetLiabilitySuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "Gstr3bOffsetLiabilityRequest": {
        "type": "object",
        "description": "Public request body for Gstr3b Offset Liability.",
        "properties": {
          "pdcash": {
            "type": "array",
            "description": "The pdcash value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "liab_ldg_id": {
                  "type": "integer",
                  "description": "The liab ldg id value provided in the request."
                },
                "trans_typ": {
                  "type": "integer",
                  "description": "The trans typ value provided in the request."
                },
                "ipd": {
                  "type": "integer",
                  "description": "The ipd value provided in the request."
                },
                "cpd": {
                  "type": "integer",
                  "description": "The cpd value provided in the request."
                },
                "spd": {
                  "type": "integer",
                  "description": "The spd value provided in the request."
                },
                "cspd": {
                  "type": "integer",
                  "description": "The cspd value provided in the request."
                },
                "i_intrpd": {
                  "type": "integer",
                  "description": "The i intrpd value provided in the request."
                },
                "c_intrpd": {
                  "type": "integer",
                  "description": "The c intrpd value provided in the request."
                },
                "s_intrpd": {
                  "type": "integer",
                  "description": "The s intrpd value provided in the request."
                },
                "cs_intrpd": {
                  "type": "integer",
                  "description": "The cs intrpd value provided in the request."
                },
                "c_lfeepd": {
                  "type": "integer",
                  "description": "The c lfeepd value provided in the request."
                },
                "s_lfeepd": {
                  "type": "integer",
                  "description": "The s lfeepd value provided in the request."
                }
              }
            }
          },
          "pditc": {
            "type": "object",
            "description": "The pditc value provided in the request.",
            "properties": {
              "liab_ldg_id": {
                "type": "integer",
                "description": "The liab ldg id value provided in the request."
              },
              "trans_typ": {
                "type": "integer",
                "description": "The trans typ value provided in the request."
              },
              "i_pdi": {
                "type": "integer",
                "description": "The i pdi value provided in the request."
              },
              "i_pdc": {
                "type": "integer",
                "description": "The i pdc value provided in the request."
              },
              "i_pds": {
                "type": "integer",
                "description": "The i pds value provided in the request."
              },
              "c_pdi": {
                "type": "integer",
                "description": "The c pdi value provided in the request."
              },
              "c_pdc": {
                "type": "integer",
                "description": "The c pdc value provided in the request."
              },
              "s_pdi": {
                "type": "integer",
                "description": "The s pdi value provided in the request."
              },
              "s_pds": {
                "type": "integer",
                "description": "The s pds value provided in the request."
              },
              "cs_pdcs": {
                "type": "integer",
                "description": "The cs pdcs value provided in the request."
              }
            }
          },
          "nettaxpay": {
            "type": "array",
            "description": "The nettaxpay value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "trans_typ": {
                  "type": "integer",
                  "description": "The trans typ value provided in the request."
                },
                "trans_desc": {
                  "type": "string",
                  "description": "The trans desc value provided in the request."
                },
                "liab_ldg_id": {
                  "type": "integer",
                  "description": "The liab ldg id value provided in the request."
                },
                "sgst": {
                  "type": "object",
                  "description": "The sgst value provided in the request.",
                  "properties": {
                    "intr": {
                      "type": "integer",
                      "description": "The intr value provided in the request."
                    },
                    "tx": {
                      "type": "integer",
                      "description": "The tx value provided in the request."
                    },
                    "fee": {
                      "type": "integer",
                      "description": "The fee value provided in the request."
                    }
                  }
                },
                "cgst": {
                  "type": "object",
                  "description": "The cgst value provided in the request.",
                  "properties": {
                    "intr": {
                      "type": "integer",
                      "description": "The intr value provided in the request."
                    },
                    "tx": {
                      "type": "integer",
                      "description": "The tx value provided in the request."
                    },
                    "fee": {
                      "type": "integer",
                      "description": "The fee value provided in the request."
                    }
                  }
                },
                "cess": {
                  "type": "object",
                  "description": "The cess value provided in the request.",
                  "properties": {
                    "intr": {
                      "type": "integer",
                      "description": "The intr value provided in the request."
                    },
                    "tx": {
                      "type": "integer",
                      "description": "The tx value provided in the request."
                    },
                    "fee": {
                      "type": "integer",
                      "description": "The fee value provided in the request."
                    }
                  }
                },
                "igst": {
                  "type": "object",
                  "description": "The igst value provided in the request.",
                  "properties": {
                    "intr": {
                      "type": "integer",
                      "description": "The intr value provided in the request."
                    },
                    "tx": {
                      "type": "integer",
                      "description": "The tx value provided in the request."
                    },
                    "fee": {
                      "type": "integer",
                      "description": "The fee value provided in the request."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "Gstr9DetailsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Gstr9 Details.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "GSTIN",
            "minLength": 15,
            "maxLength": 15
          },
          "fp": {
            "type": "string",
            "description": "Financial Year",
            "minLength": 1
          },
          "table4": {
            "type": "object",
            "description": "The table4 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "b2c": {
                "type": "object",
                "description": "The b2c value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "b2b": {
                "type": "object",
                "description": "The b2b value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "exp": {
                "type": "object",
                "description": "The exp value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "sez": {
                "type": "object",
                "description": "The sez value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "deemed": {
                "type": "object",
                "description": "The deemed value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "at": {
                "type": "object",
                "description": "The at value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "rchrg": {
                "type": "object",
                "description": "The rchrg value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "cr_nt": {
                "type": "object",
                "description": "The cr nt value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "db_nt": {
                "type": "object",
                "description": "The db nt value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "amd_pos": {
                "type": "object",
                "description": "The amd pos value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "amd_neg": {
                "type": "object",
                "description": "The amd neg value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "sub_totalAG": {
                "type": "object",
                "description": "The sub total AG value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "sub_totalIL": {
                "type": "object",
                "description": "The sub total IL value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "sup_adv": {
                "type": "object",
                "description": "The sup adv value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "sub_totalAG1": {
                "type": "object",
                "description": "The sub total AG1 value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 255916.92
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 5752773.41
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 255916.92
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 34803360.4
                  }
                }
              }
            }
          },
          "table5": {
            "type": "object",
            "description": "The table5 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "zero_rtd": {
                "type": "object",
                "description": "The zero rtd value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "sez": {
                "type": "object",
                "description": "The sez value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "rchrg": {
                "type": "object",
                "description": "The rchrg value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "exmt": {
                "type": "object",
                "description": "The exmt value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "nil": {
                "type": "object",
                "description": "The nil value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "non_gst": {
                "type": "object",
                "description": "The non gst value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "cr_nt": {
                "type": "object",
                "description": "The cr nt value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "dr_nt": {
                "type": "object",
                "description": "The dr nt value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "amd_pos": {
                "type": "object",
                "description": "The amd pos value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "amd_neg": {
                "type": "object",
                "description": "The amd neg value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "sub_totalAF": {
                "type": "object",
                "description": "The sub total AF value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "sub_totalHK": {
                "type": "object",
                "description": "The sub total HK value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "tover_tax_np": {
                "type": "object",
                "description": "The tover tax np value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "total_tover": {
                "type": "object",
                "description": "The total tover value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "ecom_14": {
                "type": "object",
                "description": "The ecom 14 value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              }
            }
          },
          "table6": {
            "type": "object",
            "description": "The table6 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "itc_3b": {
                "type": "object",
                "description": "The itc 3b value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "supp_non_rchrg": {
                "type": "array",
                "description": "The supp non rchrg value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "Action to be taken",
                      "enum": [
                        "ip",
                        "cg",
                        "is"
                      ]
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Integrated tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "camt": {
                      "type": "number",
                      "description": "Central tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "samt": {
                      "type": "number",
                      "description": "State tax/UT Tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    }
                  }
                }
              },
              "supp_rchrg_unreg": {
                "type": "array",
                "description": "The supp rchrg unreg value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "Action to be taken",
                      "enum": [
                        "ip",
                        "cg",
                        "is"
                      ]
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Integrated tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "camt": {
                      "type": "number",
                      "description": "Central tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "samt": {
                      "type": "number",
                      "description": "State tax/UT Tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    }
                  }
                }
              },
              "supp_rchrg_reg": {
                "type": "array",
                "description": "The supp rchrg reg value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "Action to be taken",
                      "enum": [
                        "ip",
                        "cg",
                        "is"
                      ]
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Integrated tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "camt": {
                      "type": "number",
                      "description": "Central tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "samt": {
                      "type": "number",
                      "description": "State tax/UT Tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    }
                  }
                }
              },
              "iog": {
                "type": "array",
                "description": "The iog value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "Action to be taken",
                      "enum": [
                        "ip",
                        "cg",
                        "is"
                      ]
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Integrated tax",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess",
                      "minimum": -9999999999999.99,
                      "maximum": 9999999999999.99
                    }
                  }
                }
              },
              "ios": {
                "type": "object",
                "description": "The ios value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "isd": {
                "type": "object",
                "description": "The isd value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "itc_clmd": {
                "type": "object",
                "description": "The itc clmd value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "tran1": {
                "type": "object",
                "description": "The tran1 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "tran2": {
                "type": "object",
                "description": "The tran2 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "other": {
                "type": "object",
                "description": "The other value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "sub_totalBH": {
                "type": "object",
                "description": "The sub total BH value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "difference": {
                "type": "object",
                "description": "The difference value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "sub_totalKM": {
                "type": "object",
                "description": "The sub total KM value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "total_itc_availed": {
                "type": "object",
                "description": "The total itc availed value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              }
            }
          },
          "table7": {
            "type": "object",
            "description": "The table7 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "rule37": {
                "type": "object",
                "description": "The rule37 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "rule39": {
                "type": "object",
                "description": "The rule39 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "rule42": {
                "type": "object",
                "description": "The rule42 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "rule43": {
                "type": "object",
                "description": "The rule43 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "sec17": {
                "type": "object",
                "description": "The sec17 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "revsl_tran1": {
                "type": "object",
                "description": "The revsl tran1 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "revsl_tran2": {
                "type": "object",
                "description": "The revsl tran2 value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "other": {
                "type": "array",
                "description": "The other value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "desc": {
                      "type": "string",
                      "description": "others- reversal (Please specify)"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Integrated tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "camt": {
                      "type": "number",
                      "description": "Central tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "samt": {
                      "type": "number",
                      "description": "State tax/UT Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    }
                  }
                }
              },
              "tot_itc_revd": {
                "type": "object",
                "description": "The tot itc revd value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "net_itc_aval": {
                "type": "object",
                "description": "The net itc aval value returned by GSTN.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              }
            }
          },
          "table8": {
            "type": "object",
            "description": "The table8 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "itc_2a": {
                "type": "object",
                "description": "ITC as per GSTR-2A (Table 3 & 5 thereof)",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "itc_tot": {
                "type": "object",
                "description": "ITC as per sum total of 6(B) and 6(H) above",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "itc_inwd_supp": {
                "type": "object",
                "description": "ITC on inward supplies (other than imports and inward supplies liable to reverse charge but includes services received from SEZs) received during 2017-18 but availed during April to September, 2018",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "itc_nt_availd": {
                "type": "object",
                "description": "ITC available but not availed (out of D)",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "itc_nt_eleg": {
                "type": "object",
                "description": "ITC available but ineligible (out of D)",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "iog_taxpaid": {
                "type": "object",
                "description": "IGST paid on import of goods (including supplies from SEZ)",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "iog_itc_availd": {
                "type": "object",
                "description": "IGST credit availed on import of goods (as per 6(E) above)",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "iog_itc_ntavaild": {
                "type": "object",
                "description": "ITC available but not availed on import of goods (Equal to I)",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "differenceABC": {
                "type": "object",
                "description": "Difference [A-(B+C)]",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "differenceGH": {
                "type": "object",
                "description": "Difference (G-H)",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "tot_itc_lapsed": {
                "type": "object",
                "description": "Total ITC to be lapsed in current financial year (E + F + J)",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              },
              "itc_2b": {
                "type": "object",
                "description": "The itc 2b value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 176819.92
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 818942.78
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 176819.92
                  }
                }
              }
            }
          },
          "table9": {
            "type": "object",
            "description": "The table9 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "iamt ": {
                "type": "object",
                "description": "Integrated Tax",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Taxpayable",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "Paid through cash",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "tax_paid_itc_iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "tax_paid_itc_camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "tax_paid_itc_samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "camt": {
                "type": "object",
                "description": "Central Tax",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Taxpayable",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "Paid through cash",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "tax_paid_itc_iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "tax_paid_itc_camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "samt": {
                "type": "object",
                "description": "State/UT Tax",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Taxpayable",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "Paid through cash",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "tax_paid_itc_iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "tax_paid_itc_samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "csamt": {
                "type": "object",
                "description": "Cess",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Taxpayable",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "Paid through cash",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "tax_paid_itc_csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "intr": {
                "type": "object",
                "description": "Interest",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Taxpayable",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "Paid through cash",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "fee": {
                "type": "object",
                "description": "Late fee",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Taxpayable",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "Paid through cash",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "pen": {
                "type": "object",
                "description": "Penalty",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Taxpayable",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "Paid through cash",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "other": {
                "type": "object",
                "description": "Other",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Taxpayable",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "Paid through cash",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "iamt": {
                "type": "object",
                "description": "The iamt value returned by GSTN.",
                "properties": {
                  "tax_paid_itc_camt": {
                    "type": "number",
                    "description": "The tax paid itc camt value returned by GSTN.",
                    "example": 108521
                  },
                  "tax_paid_itc_iamt": {
                    "type": "number",
                    "description": "The tax paid itc iamt value returned by GSTN.",
                    "example": 824879
                  },
                  "tax_paid_itc_samt": {
                    "type": "number",
                    "description": "The tax paid itc samt value returned by GSTN.",
                    "example": 108521
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "The txpaid cash value returned by GSTN.",
                    "example": 4669454
                  },
                  "txpyble": {
                    "type": "number",
                    "description": "The txpyble value returned by GSTN.",
                    "example": 5711375
                  }
                }
              }
            }
          },
          "table10": {
            "type": "object",
            "description": "The table10 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "dbn_amd": {
                "type": "object",
                "description": "Supplies / tax declared through Amendments (+) (net of debit notes)",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "cdn_amd": {
                "type": "object",
                "description": "Supplies / tax reduced through Amendments (-) (net of credit notes)",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "itc_rvsl": {
                "type": "object",
                "description": "Reversal of ITC availed during previous financial year",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "itc_availd": {
                "type": "object",
                "description": "ITC availed for the previous financial year",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "total_turnover": {
                "type": "object",
                "description": "Total turnover(5N + 10 - 11)",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable value",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -1000000000000000,
                    "maximum": 1000000000000000
                  }
                }
              }
            }
          },
          "table14": {
            "type": "object",
            "description": "Differential tax payment summary for declarations in Tables 10 and 11.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum for Table 14.",
                "maxLength": 64
              },
              "iamt": {
                "type": "object",
                "description": "Integrated tax payment summary.",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Integrated tax payable."
                  },
                  "txpaid": {
                    "type": "number",
                    "description": "Integrated tax paid."
                  }
                }
              },
              "camt": {
                "type": "object",
                "description": "Central tax payment summary.",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Central tax payable."
                  },
                  "txpaid": {
                    "type": "number",
                    "description": "Central tax paid."
                  }
                }
              },
              "samt": {
                "type": "object",
                "description": "State or Union Territory tax payment summary.",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "State or Union Territory tax payable."
                  },
                  "txpaid": {
                    "type": "number",
                    "description": "State or Union Territory tax paid."
                  }
                }
              },
              "csamt": {
                "type": "object",
                "description": "Cess payment summary.",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Cess payable."
                  },
                  "txpaid": {
                    "type": "number",
                    "description": "Cess paid."
                  }
                }
              },
              "intr": {
                "type": "object",
                "description": "Interest payment summary.",
                "properties": {
                  "txpyble": {
                    "type": "number",
                    "description": "Interest payable."
                  },
                  "txpaid": {
                    "type": "number",
                    "description": "Interest paid."
                  }
                }
              }
            }
          },
          "table15": {
            "type": "object",
            "description": "The table15 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "rfd_clmd": {
                "type": "object",
                "description": "Total Refund claimed",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "rfd_sanc": {
                "type": "object",
                "description": "Total Refund sanctioned",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "rfd_rejt": {
                "type": "object",
                "description": "Total Refund Rejected",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "rfd_pend": {
                "type": "object",
                "description": "Total Refund Pending",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "tax_dmnd": {
                "type": "object",
                "description": "Total demand of taxes",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "intr": {
                    "type": "number",
                    "description": "Inerest",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "fee": {
                    "type": "number",
                    "description": "Late Fee/Others",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "pen": {
                    "type": "number",
                    "description": "Penalty",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "tax_paid": {
                "type": "object",
                "description": "Total taxes paid in respect of E",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "intr": {
                    "type": "number",
                    "description": "Inerest",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "fee": {
                    "type": "number",
                    "description": "Late Fee/Others",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "pen": {
                    "type": "number",
                    "description": "Penalty",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "dmnd_pend": {
                "type": "object",
                "description": "Total demands pending out of E above",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "intr": {
                    "type": "number",
                    "description": "Inerest",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "fee": {
                    "type": "number",
                    "description": "Late Fee/Others",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "pen": {
                    "type": "number",
                    "description": "Penalty",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              }
            }
          },
          "table16": {
            "type": "object",
            "description": "The table16 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "comp_supp": {
                "type": "object",
                "description": "Supplies received from Composition taxpayers",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable Value",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "deemed_supp": {
                "type": "object",
                "description": "Deemed supply under Section 143",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable value",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "not_returned": {
                "type": "object",
                "description": "Goods sent on approval basis but not returned",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Taxable value",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State/UT tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              }
            }
          },
          "table17": {
            "type": "object",
            "description": "The table17 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "items": {
                "type": "array",
                "description": "HSN Wise Summary of outward supplies",
                "items": {
                  "type": "object",
                  "properties": {
                    "desc": {
                      "type": "string",
                      "description": "Description"
                    },
                    "isconcesstional": {
                      "type": "string",
                      "description": "Flag to identify concession"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "HSN Code",
                      "minLength": 0,
                      "maxLength": 8
                    },
                    "uqc": {
                      "type": "string",
                      "description": "UQC"
                    },
                    "qty": {
                      "type": "integer",
                      "description": "Total Quantity"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable Value",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "rt": {
                      "type": "number",
                      "description": "Rate of Tax"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Integrated Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "camt": {
                      "type": "number",
                      "description": "Central Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "samt": {
                      "type": "number",
                      "description": "State/UT Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    }
                  }
                }
              }
            }
          },
          "table18": {
            "type": "object",
            "description": "The table18 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "items": {
                "type": "array",
                "description": "HSN Wise Summary of Inward supplies",
                "items": {
                  "type": "object",
                  "properties": {
                    "desc": {
                      "type": "string",
                      "description": "Description"
                    },
                    "isconcesstional": {
                      "type": "string",
                      "description": "Flag to identify concession"
                    },
                    "hsn_sc": {
                      "type": "string",
                      "description": "HSN Code",
                      "minLength": 0,
                      "maxLength": 8
                    },
                    "uqc": {
                      "type": "string",
                      "description": "UQC"
                    },
                    "qty": {
                      "type": "integer",
                      "description": "Total Quantity"
                    },
                    "txval": {
                      "type": "number",
                      "description": "Taxable Value",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "rt": {
                      "type": "number",
                      "description": "Rate of Tax"
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Integrated Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "camt": {
                      "type": "number",
                      "description": "Central Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "samt": {
                      "type": "number",
                      "description": "State/UT Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Cess",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    }
                  }
                }
              }
            }
          },
          "tax_pay": {
            "type": "array",
            "description": "The tax pay value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "cgst": {
                  "type": "object",
                  "description": "Central Tax",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "intr": {
                      "type": "number",
                      "description": "Paid through cash",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "pen": {
                      "type": "number",
                      "description": "Penalty",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "fee": {
                      "type": "number",
                      "description": "Fee",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "oth": {
                      "type": "number",
                      "description": "Others",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "tot": {
                      "type": "number",
                      "description": "Total",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    }
                  }
                },
                "sgst": {
                  "type": "object",
                  "description": "State tax/UT Tax",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "intr": {
                      "type": "number",
                      "description": "Paid through cash",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "pen": {
                      "type": "number",
                      "description": "Penalty",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "fee": {
                      "type": "number",
                      "description": "Fee",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "oth": {
                      "type": "number",
                      "description": "Others",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    },
                    "tot": {
                      "type": "number",
                      "description": "Total",
                      "minimum": 0,
                      "maximum": 9999999999999.99
                    }
                  }
                },
                "liab_id": {
                  "type": "integer",
                  "description": "Liab ID"
                },
                "trancd": {
                  "type": "integer",
                  "description": "Transaction Code",
                  "minimum": 30002,
                  "maximum": 30002
                },
                "trandate": {
                  "type": "string",
                  "description": "Transaction Date"
                }
              }
            }
          },
          "tax_paid": {
            "type": "object",
            "description": "Central Tax",
            "properties": {
              "pd_by_cash": {
                "type": "array",
                "description": "The pd by cash value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cgst": {
                      "type": "object",
                      "description": "Central Tax",
                      "properties": {
                        "tx": {
                          "type": "number",
                          "description": "Tax",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "intr": {
                          "type": "number",
                          "description": "Paid through cash",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "pen": {
                          "type": "number",
                          "description": "Penalty",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "fee": {
                          "type": "number",
                          "description": "Fee",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "oth": {
                          "type": "number",
                          "description": "Others",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "tot": {
                          "type": "number",
                          "description": "Total",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        }
                      }
                    },
                    "sgst": {
                      "type": "object",
                      "description": "State tax/UT Tax",
                      "properties": {
                        "tx": {
                          "type": "number",
                          "description": "Tax",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "intr": {
                          "type": "number",
                          "description": "Paid through cash",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "pen": {
                          "type": "number",
                          "description": "Penalty",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "fee": {
                          "type": "number",
                          "description": "Fee",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "oth": {
                          "type": "number",
                          "description": "Others",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        },
                        "tot": {
                          "type": "number",
                          "description": "Total",
                          "minimum": 0,
                          "maximum": 9999999999999.99
                        }
                      }
                    },
                    "liab_id": {
                      "type": "integer",
                      "description": "Liab ID"
                    },
                    "trancd": {
                      "type": "integer",
                      "description": "Transaction Code"
                    },
                    "trandate": {
                      "type": "string",
                      "description": "Transaction Date"
                    },
                    "debit_id": {
                      "type": "string",
                      "description": "Debit Id"
                    }
                  }
                }
              }
            }
          },
          "aggTurnover": {
            "type": "number",
            "description": "The agg Turnover value returned by GSTN.",
            "example": 34376971.41
          }
        }
      },
      "Gstr9DetailsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/Gstr9DetailsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "Gstr9DetailsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/Gstr9DetailsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "Gstr9AutoCalculatedDetailsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Gstr9 Auto Calculated Details.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "GSTIN",
            "minLength": 15,
            "maxLength": 15
          },
          "fp": {
            "type": "string",
            "description": "Financial Year",
            "minLength": 1
          },
          "table4": {
            "type": "object",
            "description": "The table4 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "Checksum",
                "minLength": 64,
                "maxLength": 64
              },
              "b2c": {
                "type": "object",
                "description": "The b2c value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "b2b": {
                "type": "object",
                "description": "The b2b value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "exp": {
                "type": "object",
                "description": "The exp value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "sez": {
                "type": "object",
                "description": "The sez value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": 0,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "ecom": {
                "type": "object",
                "description": "The ecom value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "Total Taxable value",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "iamt": {
                    "type": "number",
                    "description": "Integrated tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "camt": {
                    "type": "number",
                    "description": "Central tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "samt": {
                    "type": "number",
                    "description": "State tax/UT Tax",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  },
                  "csamt": {
                    "type": "number",
                    "description": "Cess",
                    "minimum": -9999999999999.99,
                    "maximum": 9999999999999.99
                  }
                }
              },
              "amd_neg": {
                "type": "object",
                "description": "The amd neg value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "amd_pos": {
                "type": "object",
                "description": "The amd pos value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "at": {
                "type": "object",
                "description": "The at value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "cr_nt": {
                "type": "object",
                "description": "The cr nt value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 8.76
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 76732.5
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 8.76
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 426388.99
                  }
                }
              },
              "deemed": {
                "type": "object",
                "description": "The deemed value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "dr_nt": {
                "type": "object",
                "description": "The dr nt value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "rchrg": {
                "type": "object",
                "description": "The rchrg value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              }
            }
          },
          "aggTurnover": {
            "type": "number",
            "description": "The agg Turnover value returned by GSTN.",
            "example": 34376971.41
          },
          "hsnMinLen": {
            "type": "number",
            "description": "The hsn Min Len value returned by GSTN.",
            "example": 6
          },
          "table5": {
            "type": "object",
            "description": "The table5 value returned by GSTN.",
            "properties": {
              "amd_neg": {
                "type": "object",
                "description": "The amd neg value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "amd_pos": {
                "type": "object",
                "description": "The amd pos value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "chksum": {
                "type": "string",
                "description": "The chksum value returned by GSTN.",
                "example": "7a1def7ba17e36641074355a875c30e52d7485bbd60a8bbda9bc73afd88620e7"
              },
              "cr_nt": {
                "type": "object",
                "description": "The cr nt value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "dr_nt": {
                "type": "object",
                "description": "The dr nt value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "ecom_14": {
                "type": "object",
                "description": "The ecom 14 value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "exmt": {
                "type": "object",
                "description": "The exmt value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "nil": {
                "type": "object",
                "description": "The nil value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "non_gst": {
                "type": "object",
                "description": "The non gst value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "rchrg": {
                "type": "object",
                "description": "The rchrg value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "sez": {
                "type": "object",
                "description": "The sez value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "zero_rtd": {
                "type": "object",
                "description": "The zero rtd value returned by GSTN.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value returned by GSTN.",
                    "example": 0
                  }
                }
              }
            }
          },
          "table6": {
            "type": "object",
            "description": "The table6 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value returned by GSTN.",
                "example": "470acfff6eb2bff7726b8b0b64f0ecf2b0afced07877cb5d8e93135ed78e61c2"
              },
              "isd": {
                "type": "object",
                "description": "The isd value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "itc_3b": {
                "type": "object",
                "description": "The itc 3b value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 169941.56
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 826797.78
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 169941.56
                  }
                }
              },
              "tran1": {
                "type": "object",
                "description": "The tran1 value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "tran2": {
                "type": "object",
                "description": "The tran2 value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 0
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 0
                  }
                }
              }
            }
          },
          "table8": {
            "type": "object",
            "description": "The table8 value returned by GSTN.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value returned by GSTN.",
                "example": "9a318de4f9f555678af075a05be280be0f25f7b82dc1051ee76319e7a90dde81"
              },
              "itc_2b": {
                "type": "object",
                "description": "The itc 2b value returned by GSTN.",
                "properties": {
                  "camt": {
                    "type": "number",
                    "description": "The camt value returned by GSTN.",
                    "example": 176819.92
                  },
                  "csamt": {
                    "type": "number",
                    "description": "The csamt value returned by GSTN.",
                    "example": 0
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value returned by GSTN.",
                    "example": 818942.78
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value returned by GSTN.",
                    "example": 176819.92
                  }
                }
              }
            }
          },
          "table9": {
            "type": "object",
            "description": "The table9 value returned by GSTN.",
            "properties": {
              "camt": {
                "type": "object",
                "description": "The camt value returned by GSTN.",
                "properties": {
                  "tax_paid_itc_camt": {
                    "type": "number",
                    "description": "The tax paid itc camt value returned by GSTN.",
                    "example": 61419
                  },
                  "tax_paid_itc_iamt": {
                    "type": "number",
                    "description": "The tax paid itc iamt value returned by GSTN.",
                    "example": 16529
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "The txpaid cash value returned by GSTN.",
                    "example": 177960
                  },
                  "txpyble": {
                    "type": "number",
                    "description": "The txpyble value returned by GSTN.",
                    "example": 255908
                  }
                }
              },
              "chksum": {
                "type": "string",
                "description": "The chksum value returned by GSTN.",
                "example": "6612865879bd1f0ab456808c75c5402e6974c9ff6a51154777d1880fec82f041"
              },
              "csamt": {
                "type": "object",
                "description": "The csamt value returned by GSTN.",
                "properties": {
                  "tax_paid_itc_csamt": {
                    "type": "number",
                    "description": "The tax paid itc csamt value returned by GSTN.",
                    "example": 0
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "The txpaid cash value returned by GSTN.",
                    "example": 0
                  },
                  "txpyble": {
                    "type": "number",
                    "description": "The txpyble value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "fee": {
                "type": "object",
                "description": "The fee value returned by GSTN.",
                "properties": {
                  "txpaid_cash": {
                    "type": "number",
                    "description": "The txpaid cash value returned by GSTN.",
                    "example": 50
                  },
                  "txpyble": {
                    "type": "number",
                    "description": "The txpyble value returned by GSTN.",
                    "example": 50
                  }
                }
              },
              "iamt": {
                "type": "object",
                "description": "The iamt value returned by GSTN.",
                "properties": {
                  "tax_paid_itc_camt": {
                    "type": "number",
                    "description": "The tax paid itc camt value returned by GSTN.",
                    "example": 108521
                  },
                  "tax_paid_itc_iamt": {
                    "type": "number",
                    "description": "The tax paid itc iamt value returned by GSTN.",
                    "example": 824879
                  },
                  "tax_paid_itc_samt": {
                    "type": "number",
                    "description": "The tax paid itc samt value returned by GSTN.",
                    "example": 108521
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "The txpaid cash value returned by GSTN.",
                    "example": 4669454
                  },
                  "txpyble": {
                    "type": "number",
                    "description": "The txpyble value returned by GSTN.",
                    "example": 5711375
                  }
                }
              },
              "intr": {
                "type": "object",
                "description": "The intr value returned by GSTN.",
                "properties": {
                  "txpaid_cash": {
                    "type": "number",
                    "description": "The txpaid cash value returned by GSTN.",
                    "example": 0
                  },
                  "txpyble": {
                    "type": "number",
                    "description": "The txpyble value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "samt": {
                "type": "object",
                "description": "The samt value returned by GSTN.",
                "properties": {
                  "tax_paid_itc_iamt": {
                    "type": "number",
                    "description": "The tax paid itc iamt value returned by GSTN.",
                    "example": 16529
                  },
                  "tax_paid_itc_samt": {
                    "type": "number",
                    "description": "The tax paid itc samt value returned by GSTN.",
                    "example": 61419
                  },
                  "txpaid_cash": {
                    "type": "number",
                    "description": "The txpaid cash value returned by GSTN.",
                    "example": 177960
                  },
                  "txpyble": {
                    "type": "number",
                    "description": "The txpyble value returned by GSTN.",
                    "example": 255908
                  }
                }
              }
            }
          }
        }
      },
      "Gstr9AutoCalculatedDetailsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/Gstr9AutoCalculatedDetailsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "Gstr9AutoCalculatedDetailsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/Gstr9AutoCalculatedDetailsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "FileGstr9SuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for File Gstr9.",
        "properties": {
          "ack_num": {
            "type": "string",
            "description": "The ack num value returned by GSTN.",
            "example": "AC240324630721I"
          }
        }
      },
      "FileGstr9SuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/FileGstr9SuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "FileGstr9Response": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/FileGstr9SuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "FileGstr9Request": {
        "type": "object",
        "description": "Public request body for File Gstr9.",
        "properties": {
          "isnil": {
            "type": "string",
            "description": "The isnil value provided in the request."
          },
          "fp": {
            "type": "string",
            "description": "The fp value provided in the request."
          },
          "table4": {
            "type": "object",
            "description": "The table4 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "b2c": {
                "type": "object",
                "description": "The b2c value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "b2b": {
                "type": "object",
                "description": "The b2b value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "exp": {
                "type": "object",
                "description": "The exp value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sez": {
                "type": "object",
                "description": "The sez value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "deemed": {
                "type": "object",
                "description": "The deemed value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "at": {
                "type": "object",
                "description": "The at value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rchrg": {
                "type": "object",
                "description": "The rchrg value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "cr_nt": {
                "type": "object",
                "description": "The cr nt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "dr_nt": {
                "type": "object",
                "description": "The dr nt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "amd_pos": {
                "type": "object",
                "description": "The amd pos value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "amd_neg": {
                "type": "object",
                "description": "The amd neg value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sub_totalAG": {
                "type": "object",
                "description": "The sub total AG value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sub_totalIL": {
                "type": "object",
                "description": "The sub total IL value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sup_adv": {
                "type": "object",
                "description": "The sup adv value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sub_totalAG1": {
                "type": "object",
                "description": "The sub total AG1 value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  }
                }
              }
            }
          },
          "table5": {
            "type": "object",
            "description": "The table5 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "zero_rtd": {
                "type": "object",
                "description": "The zero rtd value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "sez": {
                "type": "object",
                "description": "The sez value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "rchrg": {
                "type": "object",
                "description": "The rchrg value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "exmt": {
                "type": "object",
                "description": "The exmt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "nil": {
                "type": "object",
                "description": "The nil value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "non_gst": {
                "type": "object",
                "description": "The non gst value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "cr_nt": {
                "type": "object",
                "description": "The cr nt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "dr_nt": {
                "type": "object",
                "description": "The dr nt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "amd_pos": {
                "type": "object",
                "description": "The amd pos value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "amd_neg": {
                "type": "object",
                "description": "The amd neg value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "sub_totalAF": {
                "type": "object",
                "description": "The sub total AF value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "sub_totalHK": {
                "type": "object",
                "description": "The sub total HK value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "tover_tax_np": {
                "type": "object",
                "description": "The tover tax np value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "total_tover": {
                "type": "object",
                "description": "The total tover value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "ecom_14": {
                "type": "object",
                "description": "The ecom 14 value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              }
            }
          },
          "table6": {
            "type": "object",
            "description": "The table6 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "itc_3b": {
                "type": "object",
                "description": "The itc 3b value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "supp_non_rchrg": {
                "type": "array",
                "description": "The supp non rchrg value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "The itc typ value provided in the request."
                    },
                    "iamt": {
                      "type": "number",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "number",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "number",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "supp_rchrg_unreg": {
                "type": "array",
                "description": "The supp rchrg unreg value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "The itc typ value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "supp_rchrg_reg": {
                "type": "array",
                "description": "The supp rchrg reg value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "The itc typ value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "iog": {
                "type": "array",
                "description": "The iog value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "The itc typ value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "ios": {
                "type": "object",
                "description": "The ios value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "isd": {
                "type": "object",
                "description": "The isd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_clmd": {
                "type": "object",
                "description": "The itc clmd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "tran1": {
                "type": "object",
                "description": "The tran1 value provided in the request.",
                "properties": {
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  }
                }
              },
              "tran2": {
                "type": "object",
                "description": "The tran2 value provided in the request.",
                "properties": {
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  }
                }
              },
              "other": {
                "type": "object",
                "description": "The other value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sub_totalBH": {
                "type": "object",
                "description": "The sub total BH value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "difference": {
                "type": "object",
                "description": "The difference value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sub_totalKM": {
                "type": "object",
                "description": "The sub total KM value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "total_itc_availed": {
                "type": "object",
                "description": "The total itc availed value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              }
            }
          },
          "table7": {
            "type": "object",
            "description": "The table7 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "rule37": {
                "type": "object",
                "description": "The rule37 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rule39": {
                "type": "object",
                "description": "The rule39 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rule42": {
                "type": "object",
                "description": "The rule42 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rule43": {
                "type": "object",
                "description": "The rule43 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sec17": {
                "type": "object",
                "description": "The sec17 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "revsl_tran1": {
                "type": "object",
                "description": "The revsl tran1 value provided in the request.",
                "properties": {
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  }
                }
              },
              "revsl_tran2": {
                "type": "object",
                "description": "The revsl tran2 value provided in the request.",
                "properties": {
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  }
                }
              },
              "other": {
                "type": "array",
                "description": "The other value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "desc": {
                      "type": "string",
                      "description": "The desc value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "tot_itc_revd": {
                "type": "object",
                "description": "The tot itc revd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "net_itc_aval": {
                "type": "object",
                "description": "The net itc aval value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              }
            }
          },
          "table8": {
            "type": "object",
            "description": "The table8 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "itc_2a": {
                "type": "object",
                "description": "The itc 2a value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_tot": {
                "type": "object",
                "description": "The itc tot value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_inwd_supp": {
                "type": "object",
                "description": "The itc inwd supp value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_nt_availd": {
                "type": "object",
                "description": "The itc nt availd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_nt_eleg": {
                "type": "object",
                "description": "The itc nt eleg value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "iog_taxpaid": {
                "type": "object",
                "description": "The iog taxpaid value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "iog_itc_availd": {
                "type": "object",
                "description": "The iog itc availd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "iog_itc_ntavaild": {
                "type": "object",
                "description": "The iog itc ntavaild value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "differenceABC": {
                "type": "object",
                "description": "The difference ABC value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "differenceGH": {
                "type": "object",
                "description": "The difference GH value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "tot_itc_lapsed": {
                "type": "object",
                "description": "The tot itc lapsed value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_2b": {
                "type": "object",
                "description": "The itc 2b value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  }
                }
              }
            }
          },
          "table9": {
            "type": "object",
            "description": "The table9 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "iamt": {
                "type": "object",
                "description": "The iamt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid_cash": {
                    "type": "integer",
                    "description": "The txpaid cash value provided in the request."
                  },
                  "tax_paid_itc_iamt": {
                    "type": "integer",
                    "description": "The tax paid itc iamt value provided in the request."
                  },
                  "tax_paid_itc_camt": {
                    "type": "integer",
                    "description": "The tax paid itc camt value provided in the request."
                  },
                  "tax_paid_itc_samt": {
                    "type": "integer",
                    "description": "The tax paid itc samt value provided in the request."
                  }
                }
              },
              "camt": {
                "type": "object",
                "description": "The camt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid_cash": {
                    "type": "integer",
                    "description": "The txpaid cash value provided in the request."
                  },
                  "tax_paid_itc_iamt": {
                    "type": "integer",
                    "description": "The tax paid itc iamt value provided in the request."
                  },
                  "tax_paid_itc_camt": {
                    "type": "integer",
                    "description": "The tax paid itc camt value provided in the request."
                  }
                }
              },
              "samt": {
                "type": "object",
                "description": "The samt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid_cash": {
                    "type": "integer",
                    "description": "The txpaid cash value provided in the request."
                  },
                  "tax_paid_itc_iamt": {
                    "type": "integer",
                    "description": "The tax paid itc iamt value provided in the request."
                  },
                  "tax_paid_itc_samt": {
                    "type": "integer",
                    "description": "The tax paid itc samt value provided in the request."
                  }
                }
              },
              "csamt": {
                "type": "object",
                "description": "The csamt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid_cash": {
                    "type": "integer",
                    "description": "The txpaid cash value provided in the request."
                  },
                  "tax_paid_itc_csamt": {
                    "type": "integer",
                    "description": "The tax paid itc csamt value provided in the request."
                  }
                }
              },
              "intr": {
                "type": "object",
                "description": "The intr value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid_cash": {
                    "type": "integer",
                    "description": "The txpaid cash value provided in the request."
                  }
                }
              },
              "fee": {
                "type": "object",
                "description": "The fee value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid_cash": {
                    "type": "integer",
                    "description": "The txpaid cash value provided in the request."
                  }
                }
              },
              "pen": {
                "type": "object",
                "description": "The pen value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid_cash": {
                    "type": "integer",
                    "description": "The txpaid cash value provided in the request."
                  }
                }
              },
              "other": {
                "type": "object",
                "description": "The other value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid_cash": {
                    "type": "integer",
                    "description": "The txpaid cash value provided in the request."
                  }
                }
              }
            }
          },
          "table10": {
            "type": "object",
            "description": "The table10 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "dbn_amd": {
                "type": "object",
                "description": "The dbn amd value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "cdn_amd": {
                "type": "object",
                "description": "The cdn amd value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_rvsl": {
                "type": "object",
                "description": "The itc rvsl value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_availd": {
                "type": "object",
                "description": "The itc availd value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "total_turnover": {
                "type": "object",
                "description": "The total turnover value provided in the request.",
                "properties": {
                  "tx_val": {
                    "type": "integer",
                    "description": "The tx val value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  }
                }
              }
            }
          },
          "table14": {
            "type": "object",
            "description": "The table14 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "iamt": {
                "type": "object",
                "description": "The iamt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              },
              "camt": {
                "type": "object",
                "description": "The camt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              },
              "samt": {
                "type": "object",
                "description": "The samt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              },
              "csamt": {
                "type": "object",
                "description": "The csamt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              },
              "intr": {
                "type": "object",
                "description": "The intr value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              }
            }
          },
          "table15": {
            "type": "object",
            "description": "The table15 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "rfd_clmd": {
                "type": "object",
                "description": "The rfd clmd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rfd_sanc": {
                "type": "object",
                "description": "The rfd sanc value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rfd_rejt": {
                "type": "object",
                "description": "The rfd rejt value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rfd_pend": {
                "type": "object",
                "description": "The rfd pend value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "tax_dmnd": {
                "type": "object",
                "description": "The tax dmnd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "intr": {
                    "type": "integer",
                    "description": "The intr value provided in the request."
                  },
                  "fee": {
                    "type": "integer",
                    "description": "The fee value provided in the request."
                  },
                  "pen": {
                    "type": "integer",
                    "description": "The pen value provided in the request."
                  }
                }
              },
              "tax_paid": {
                "type": "object",
                "description": "The tax paid value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "intr": {
                    "type": "integer",
                    "description": "The intr value provided in the request."
                  },
                  "fee": {
                    "type": "integer",
                    "description": "The fee value provided in the request."
                  },
                  "pen": {
                    "type": "integer",
                    "description": "The pen value provided in the request."
                  }
                }
              },
              "dmnd_pend": {
                "type": "object",
                "description": "The dmnd pend value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "intr": {
                    "type": "integer",
                    "description": "The intr value provided in the request."
                  },
                  "fee": {
                    "type": "integer",
                    "description": "The fee value provided in the request."
                  },
                  "pen": {
                    "type": "integer",
                    "description": "The pen value provided in the request."
                  }
                }
              }
            }
          },
          "table16": {
            "type": "object",
            "description": "The table16 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "comp_supp": {
                "type": "object",
                "description": "The comp supp value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "deemed_supp": {
                "type": "object",
                "description": "The deemed supp value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "not_returned": {
                "type": "object",
                "description": "The not returned value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              }
            }
          },
          "table17": {
            "type": "object",
            "description": "The table17 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "items": {
                "type": "array",
                "description": "The items value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "hsn_sc": {
                      "type": "string",
                      "description": "The hsn sc value provided in the request."
                    },
                    "uqc": {
                      "type": "string",
                      "description": "The uqc value provided in the request."
                    },
                    "desc": {
                      "type": "string",
                      "description": "The desc value provided in the request."
                    },
                    "isconcesstional": {
                      "type": "string",
                      "description": "The isconcesstional value provided in the request."
                    },
                    "qty": {
                      "type": "integer",
                      "description": "The qty value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "rt": {
                      "type": "integer",
                      "description": "The rt value provided in the request."
                    },
                    "iamt": {
                      "type": "number",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "number",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "number",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "table18": {
            "type": "object",
            "description": "The table18 value provided in the request.",
            "properties": {
              "chksum": {
                "type": "string",
                "description": "The chksum value provided in the request."
              },
              "items": {
                "type": "array",
                "description": "The items value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "hsn_sc": {
                      "type": "string",
                      "description": "The hsn sc value provided in the request."
                    },
                    "uqc": {
                      "type": "string",
                      "description": "The uqc value provided in the request."
                    },
                    "desc": {
                      "type": "string",
                      "description": "The desc value provided in the request."
                    },
                    "isconcesstional": {
                      "type": "string",
                      "description": "The isconcesstional value provided in the request."
                    },
                    "qty": {
                      "type": "integer",
                      "description": "The qty value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "rt": {
                      "type": "integer",
                      "description": "The rt value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "tax_pay": {
            "type": "array",
            "description": "The tax pay value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "sgst": {
                  "type": "object",
                  "description": "The sgst value provided in the request.",
                  "properties": {
                    "tx": {
                      "type": "integer",
                      "description": "The tx value provided in the request."
                    },
                    "intr": {
                      "type": "integer",
                      "description": "The intr value provided in the request."
                    },
                    "pen": {
                      "type": "integer",
                      "description": "The pen value provided in the request."
                    },
                    "fee": {
                      "type": "integer",
                      "description": "The fee value provided in the request."
                    },
                    "oth": {
                      "type": "integer",
                      "description": "The oth value provided in the request."
                    },
                    "tot": {
                      "type": "integer",
                      "description": "The tot value provided in the request."
                    }
                  }
                },
                "cgst": {
                  "type": "object",
                  "description": "The cgst value provided in the request.",
                  "properties": {
                    "tx": {
                      "type": "integer",
                      "description": "The tx value provided in the request."
                    },
                    "intr": {
                      "type": "integer",
                      "description": "The intr value provided in the request."
                    },
                    "pen": {
                      "type": "integer",
                      "description": "The pen value provided in the request."
                    },
                    "fee": {
                      "type": "integer",
                      "description": "The fee value provided in the request."
                    },
                    "oth": {
                      "type": "integer",
                      "description": "The oth value provided in the request."
                    },
                    "tot": {
                      "type": "integer",
                      "description": "The tot value provided in the request."
                    }
                  }
                },
                "liab_id": {
                  "type": "integer",
                  "description": "The liab id value provided in the request."
                },
                "trancd": {
                  "type": "integer",
                  "description": "The trancd value provided in the request."
                },
                "trandate": {
                  "type": "string",
                  "description": "The trandate value provided in the request."
                }
              }
            }
          },
          "offset": {
            "type": "array",
            "description": "The offset value provided in the request.",
            "items": {
              "type": "object",
              "properties": {
                "tran_cd": {
                  "type": "integer",
                  "description": "The tran cd value provided in the request."
                },
                "sgst": {
                  "type": "object",
                  "description": "The sgst value provided in the request.",
                  "properties": {
                    "intr": {
                      "type": "integer",
                      "description": "The intr value provided in the request."
                    },
                    "tx": {
                      "type": "integer",
                      "description": "The tx value provided in the request."
                    },
                    "fee": {
                      "type": "integer",
                      "description": "The fee value provided in the request."
                    },
                    "tot": {
                      "type": "integer",
                      "description": "The tot value provided in the request."
                    }
                  }
                },
                "cgst": {
                  "type": "object",
                  "description": "The cgst value provided in the request.",
                  "properties": {
                    "intr": {
                      "type": "integer",
                      "description": "The intr value provided in the request."
                    },
                    "tx": {
                      "type": "integer",
                      "description": "The tx value provided in the request."
                    },
                    "fee": {
                      "type": "integer",
                      "description": "The fee value provided in the request."
                    },
                    "tot": {
                      "type": "integer",
                      "description": "The tot value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "aggTurnover": {
            "type": "number",
            "description": "The agg Turnover value provided in the request."
          }
        }
      },
      "SaveGstr9SuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Save Gstr9.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "3f0b7b96-2c56-4e34-a025-03c3577a8468"
          }
        }
      },
      "SaveGstr9SuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/SaveGstr9SuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "SaveGstr9Response": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/SaveGstr9SuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "SaveGstr9Request": {
        "type": "object",
        "description": "Public request body for Save Gstr9.",
        "properties": {
          "fp": {
            "type": "string",
            "description": "The fp value provided in the request."
          },
          "table4": {
            "type": "object",
            "description": "The table4 value provided in the request.",
            "properties": {
              "b2c": {
                "type": "object",
                "description": "The b2c value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "b2b": {
                "type": "object",
                "description": "The b2b value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "exp": {
                "type": "object",
                "description": "The exp value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sez": {
                "type": "object",
                "description": "The sez value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "deemed": {
                "type": "object",
                "description": "The deemed value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "at": {
                "type": "object",
                "description": "The at value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rchrg": {
                "type": "object",
                "description": "The rchrg value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "cr_nt": {
                "type": "object",
                "description": "The cr nt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "number",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "number",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "number",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "number",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "dr_nt": {
                "type": "object",
                "description": "The dr nt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "amd_pos": {
                "type": "object",
                "description": "The amd pos value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "amd_neg": {
                "type": "object",
                "description": "The amd neg value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              }
            }
          },
          "table5": {
            "type": "object",
            "description": "The table5 value provided in the request.",
            "properties": {
              "zero_rtd": {
                "type": "object",
                "description": "The zero rtd value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "sez": {
                "type": "object",
                "description": "The sez value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "rchrg": {
                "type": "object",
                "description": "The rchrg value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "exmt": {
                "type": "object",
                "description": "The exmt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "nil": {
                "type": "object",
                "description": "The nil value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "non_gst": {
                "type": "object",
                "description": "The non gst value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "cr_nt": {
                "type": "object",
                "description": "The cr nt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "dr_nt": {
                "type": "object",
                "description": "The dr nt value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "amd_pos": {
                "type": "object",
                "description": "The amd pos value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "amd_neg": {
                "type": "object",
                "description": "The amd neg value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              }
            }
          },
          "table6": {
            "type": "object",
            "description": "The table6 value provided in the request.",
            "properties": {
              "supp_non_rchrg": {
                "type": "array",
                "description": "The supp non rchrg value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "The itc typ value provided in the request."
                    },
                    "iamt": {
                      "type": "number",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "number",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "number",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "supp_rchrg_unreg": {
                "type": "array",
                "description": "The supp rchrg unreg value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "The itc typ value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "supp_rchrg_reg": {
                "type": "array",
                "description": "The supp rchrg reg value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "The itc typ value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "iog": {
                "type": "array",
                "description": "The iog value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "itc_typ": {
                      "type": "string",
                      "description": "The itc typ value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              },
              "ios": {
                "type": "object",
                "description": "The ios value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "isd": {
                "type": "object",
                "description": "The isd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_clmd": {
                "type": "object",
                "description": "The itc clmd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "tran1": {
                "type": "object",
                "description": "The tran1 value provided in the request.",
                "properties": {
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  }
                }
              },
              "tran2": {
                "type": "object",
                "description": "The tran2 value provided in the request.",
                "properties": {
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  }
                }
              },
              "other": {
                "type": "object",
                "description": "The other value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              }
            }
          },
          "table7": {
            "type": "object",
            "description": "The table7 value provided in the request.",
            "properties": {
              "rule37": {
                "type": "object",
                "description": "The rule37 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rule39": {
                "type": "object",
                "description": "The rule39 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rule42": {
                "type": "object",
                "description": "The rule42 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rule43": {
                "type": "object",
                "description": "The rule43 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "sec17": {
                "type": "object",
                "description": "The sec17 value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "revsl_tran1": {
                "type": "object",
                "description": "The revsl tran1 value provided in the request.",
                "properties": {
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  }
                }
              },
              "revsl_tran2": {
                "type": "object",
                "description": "The revsl tran2 value provided in the request.",
                "properties": {
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  }
                }
              },
              "other": {
                "type": "array",
                "description": "The other value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "desc": {
                      "type": "string",
                      "description": "The desc value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "table8": {
            "type": "object",
            "description": "The table8 value provided in the request.",
            "properties": {
              "itc_inwd_supp": {
                "type": "object",
                "description": "The itc inwd supp value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_nt_availd": {
                "type": "object",
                "description": "The itc nt availd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "itc_nt_eleg": {
                "type": "object",
                "description": "The itc nt eleg value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "iog_taxpaid": {
                "type": "object",
                "description": "The iog taxpaid value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              }
            }
          },
          "table9": {
            "type": "object",
            "description": "The table9 value provided in the request.",
            "properties": {
              "iamt": {
                "type": "object",
                "description": "The iamt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  }
                }
              },
              "camt": {
                "type": "object",
                "description": "The camt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  }
                }
              },
              "samt": {
                "type": "object",
                "description": "The samt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  }
                }
              },
              "csamt": {
                "type": "object",
                "description": "The csamt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  }
                }
              },
              "intr": {
                "type": "object",
                "description": "The intr value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  }
                }
              },
              "fee": {
                "type": "object",
                "description": "The fee value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  }
                }
              },
              "pen": {
                "type": "object",
                "description": "The pen value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  }
                }
              },
              "other": {
                "type": "object",
                "description": "The other value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  }
                }
              }
            }
          },
          "table10": {
            "type": "object",
            "description": "The table10 value provided in the request.",
            "properties": {
              "itc_availd": {
                "type": "object",
                "description": "The itc availd value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "itc_rvsl": {
                "type": "object",
                "description": "The itc rvsl value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "dbn_amd": {
                "type": "object",
                "description": "The dbn amd value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              },
              "cdn_amd": {
                "type": "object",
                "description": "The cdn amd value provided in the request.",
                "properties": {
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  }
                }
              }
            }
          },
          "table14": {
            "type": "object",
            "description": "The table14 value provided in the request.",
            "properties": {
              "iamt": {
                "type": "object",
                "description": "The iamt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              },
              "camt": {
                "type": "object",
                "description": "The camt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              },
              "samt": {
                "type": "object",
                "description": "The samt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              },
              "csamt": {
                "type": "object",
                "description": "The csamt value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              },
              "intr": {
                "type": "object",
                "description": "The intr value provided in the request.",
                "properties": {
                  "txpyble": {
                    "type": "integer",
                    "description": "The txpyble value provided in the request."
                  },
                  "txpaid": {
                    "type": "integer",
                    "description": "The txpaid value provided in the request."
                  }
                }
              }
            }
          },
          "table15": {
            "type": "object",
            "description": "The table15 value provided in the request.",
            "properties": {
              "rfd_clmd": {
                "type": "object",
                "description": "The rfd clmd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rfd_sanc": {
                "type": "object",
                "description": "The rfd sanc value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rfd_rejt": {
                "type": "object",
                "description": "The rfd rejt value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "rfd_pend": {
                "type": "object",
                "description": "The rfd pend value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "tax_dmnd": {
                "type": "object",
                "description": "The tax dmnd value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "intr": {
                    "type": "integer",
                    "description": "The intr value provided in the request."
                  },
                  "fee": {
                    "type": "integer",
                    "description": "The fee value provided in the request."
                  },
                  "pen": {
                    "type": "integer",
                    "description": "The pen value provided in the request."
                  }
                }
              },
              "tax_paid": {
                "type": "object",
                "description": "The tax paid value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "intr": {
                    "type": "integer",
                    "description": "The intr value provided in the request."
                  },
                  "fee": {
                    "type": "integer",
                    "description": "The fee value provided in the request."
                  },
                  "pen": {
                    "type": "integer",
                    "description": "The pen value provided in the request."
                  }
                }
              },
              "dmnd_pend": {
                "type": "object",
                "description": "The dmnd pend value provided in the request.",
                "properties": {
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  },
                  "intr": {
                    "type": "integer",
                    "description": "The intr value provided in the request."
                  },
                  "fee": {
                    "type": "integer",
                    "description": "The fee value provided in the request."
                  },
                  "pen": {
                    "type": "integer",
                    "description": "The pen value provided in the request."
                  }
                }
              }
            }
          },
          "table16": {
            "type": "object",
            "description": "The table16 value provided in the request.",
            "properties": {
              "comp_supp": {
                "type": "object",
                "description": "The comp supp value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  }
                }
              },
              "deemed_supp": {
                "type": "object",
                "description": "The deemed supp value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              },
              "not_returned": {
                "type": "object",
                "description": "The not returned value provided in the request.",
                "properties": {
                  "txval": {
                    "type": "integer",
                    "description": "The txval value provided in the request."
                  },
                  "iamt": {
                    "type": "integer",
                    "description": "The iamt value provided in the request."
                  },
                  "camt": {
                    "type": "integer",
                    "description": "The camt value provided in the request."
                  },
                  "samt": {
                    "type": "integer",
                    "description": "The samt value provided in the request."
                  },
                  "csamt": {
                    "type": "integer",
                    "description": "The csamt value provided in the request."
                  }
                }
              }
            }
          },
          "table17": {
            "type": "object",
            "description": "The table17 value provided in the request.",
            "properties": {
              "items": {
                "type": "array",
                "description": "The items value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "hsn_sc": {
                      "type": "string",
                      "description": "The hsn sc value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "isconcesstional": {
                      "type": "string",
                      "description": "The isconcesstional value provided in the request."
                    },
                    "rt": {
                      "type": "integer",
                      "description": "The rt value provided in the request."
                    },
                    "iamt": {
                      "type": "number",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "number",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "number",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    },
                    "uqc": {
                      "type": "string",
                      "description": "The uqc value provided in the request."
                    },
                    "qty": {
                      "type": "integer",
                      "description": "The qty value provided in the request."
                    }
                  }
                }
              }
            }
          },
          "table18": {
            "type": "object",
            "description": "The table18 value provided in the request.",
            "properties": {
              "items": {
                "type": "array",
                "description": "The items value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "hsn_sc": {
                      "type": "string",
                      "description": "The hsn sc value provided in the request."
                    },
                    "uqc": {
                      "type": "string",
                      "description": "The uqc value provided in the request."
                    },
                    "qty": {
                      "type": "integer",
                      "description": "The qty value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "isconcesstional": {
                      "type": "string",
                      "description": "The isconcesstional value provided in the request."
                    },
                    "rt": {
                      "type": "integer",
                      "description": "The rt value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "csamt": {
                      "type": "integer",
                      "description": "The csamt value provided in the request."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "Gstr9Section8aDetailsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Gstr9 Section8a Details.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "Reciever gstin",
            "minLength": 15,
            "maxLength": 15
          },
          "fy": {
            "type": "string",
            "description": "Financial year",
            "minLength": 7,
            "maxLength": 7
          },
          "docid": {
            "type": "number",
            "description": "JSON file id"
          },
          "b2b": {
            "type": "array",
            "description": "The b2b value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "Supplier gstin",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnPrd": {
                  "type": "string",
                  "description": "Return prd",
                  "minLength": 1
                },
                "filingdt": {
                  "type": "string",
                  "description": "Filing date"
                },
                "documents": {
                  "type": "array",
                  "description": "The documents value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "inum": {
                        "type": "string",
                        "description": "Invoice num",
                        "maxLength": 16
                      },
                      "idt": {
                        "type": "string",
                        "description": "Invoice date"
                      },
                      "val": {
                        "type": "number",
                        "description": "Value",
                        "minimum": 0,
                        "maximum": 9999999999999.99
                      },
                      "pos": {
                        "type": "string",
                        "description": "pos",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "reverse charge",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "Invoice type",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "txval": {
                        "type": "number",
                        "description": "Taxable value of Goods or Service as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "iseligible": {
                        "type": "string",
                        "description": "Is ITC eligible",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "reason": {
                        "type": "string",
                        "description": "Reason for non-accounting document"
                      }
                    }
                  }
                }
              }
            }
          },
          "b2ba": {
            "type": "array",
            "description": "The b2ba value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "Supplier gstin",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnPrd": {
                  "type": "string",
                  "description": "Return prd",
                  "minLength": 1
                },
                "filingdt": {
                  "type": "string",
                  "description": "Filing date"
                },
                "documents": {
                  "type": "array",
                  "description": "The documents value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "oinum": {
                        "type": "string",
                        "description": "Original Invoice num",
                        "maxLength": 16
                      },
                      "oidt": {
                        "type": "string",
                        "description": "Original Invoice date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Invoice num",
                        "maxLength": 16
                      },
                      "idt": {
                        "type": "string",
                        "description": "Invoice date"
                      },
                      "val": {
                        "type": "number",
                        "description": "Value",
                        "minimum": 0,
                        "maximum": 9999999999999.99
                      },
                      "pos": {
                        "type": "string",
                        "description": "pos",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "reverse charge",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "Invoice type",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "txval": {
                        "type": "number",
                        "description": "Taxable value of Goods or Service as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "iseligible": {
                        "type": "string",
                        "description": "Is ITC eligible",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "reason": {
                        "type": "string",
                        "description": "Reason for non-accounting document"
                      }
                    }
                  }
                }
              }
            }
          },
          "cdn": {
            "type": "array",
            "description": "The cdn value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "Supplier gstin",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnPrd": {
                  "type": "string",
                  "description": "Return prd",
                  "minLength": 1
                },
                "filingdt": {
                  "type": "string",
                  "description": "Filing date"
                },
                "documents": {
                  "type": "array",
                  "description": "The documents value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "nt_num": {
                        "type": "string",
                        "description": "Note num",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "Note date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Invoice num",
                        "maxLength": 16
                      },
                      "idt": {
                        "type": "string",
                        "description": "Invoice date"
                      },
                      "val": {
                        "type": "number",
                        "description": "Value",
                        "minimum": 0,
                        "maximum": 9999999999999.99
                      },
                      "ntty": {
                        "type": "string",
                        "description": "Note type",
                        "enum": [
                          "C",
                          "D"
                        ]
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "txval": {
                        "type": "number",
                        "description": "Taxable value of Goods or Service as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "pos": {
                        "type": "string",
                        "description": "pos",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "reverse charge",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "Invoice type",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "iseligible": {
                        "type": "string",
                        "description": "Is ITC eligible",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "reason": {
                        "type": "string",
                        "description": "Reason for non-accounting document"
                      }
                    }
                  }
                }
              }
            }
          },
          "cdna": {
            "type": "array",
            "description": "The cdna value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "Supplier gstin",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnPrd": {
                  "type": "string",
                  "description": "Return prd",
                  "minLength": 1
                },
                "filingdt": {
                  "type": "string",
                  "description": "Filing date"
                },
                "documents": {
                  "type": "array",
                  "description": "The documents value returned by GSTN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ont_num": {
                        "type": "string",
                        "description": "Note num",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "ont_dt": {
                        "type": "string",
                        "description": "Note date"
                      },
                      "ontty": {
                        "type": "string",
                        "description": "Original Note type",
                        "enum": [
                          "C",
                          "D"
                        ]
                      },
                      "nt_num": {
                        "type": "string",
                        "description": "Note num",
                        "minLength": 1,
                        "maxLength": 16
                      },
                      "nt_dt": {
                        "type": "string",
                        "description": "Note date"
                      },
                      "inum": {
                        "type": "string",
                        "description": "Invoice num",
                        "maxLength": 16
                      },
                      "idt": {
                        "type": "string",
                        "description": "Invoice date"
                      },
                      "val": {
                        "type": "number",
                        "description": "Value",
                        "minimum": 0,
                        "maximum": 9999999999999.99
                      },
                      "ntty": {
                        "type": "string",
                        "description": "Note type",
                        "enum": [
                          "C",
                          "D"
                        ]
                      },
                      "iamt": {
                        "type": "number",
                        "description": "IGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "camt": {
                        "type": "number",
                        "description": "CGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "samt": {
                        "type": "number",
                        "description": "SGST Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "csamt": {
                        "type": "number",
                        "description": "Cess Amount as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "txval": {
                        "type": "number",
                        "description": "Taxable value of Goods or Service as per invoice",
                        "minimum": 0,
                        "maximum": 99999999999.99
                      },
                      "pos": {
                        "type": "string",
                        "description": "pos",
                        "minLength": 2,
                        "maxLength": 2
                      },
                      "rchrg": {
                        "type": "string",
                        "description": "reverse charge",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "inv_typ": {
                        "type": "string",
                        "description": "Invoice type",
                        "enum": [
                          "R",
                          "DE",
                          "SEWP",
                          "SEWOP",
                          "CBW"
                        ]
                      },
                      "iseligible": {
                        "type": "string",
                        "description": "Is ITC eligible",
                        "enum": [
                          "Y",
                          "N"
                        ]
                      },
                      "reason": {
                        "type": "string",
                        "description": "Reason for non-accounting document"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "Gstr9Section8aDetailsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/Gstr9Section8aDetailsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "Gstr9Section8aDetailsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/Gstr9Section8aDetailsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetPreferenceSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Preference.",
        "properties": {
          "response": {
            "type": "array",
            "description": "The response value returned by GSTN.",
            "minItems": 0,
            "maxItems": 4,
            "items": {
              "type": "object",
              "properties": {
                "quarter": {
                  "type": "string",
                  "description": "Quarter value",
                  "enum": [
                    "Q1",
                    "Q2",
                    "Q3",
                    "Q4"
                  ]
                },
                "preference": {
                  "type": "string",
                  "description": "Preference for the quarter",
                  "enum": [
                    "M",
                    "Q",
                    "N"
                  ]
                }
              }
            }
          }
        }
      },
      "GetPreferenceSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetPreferenceSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetPreferenceResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetPreferenceSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "SavePreferenceSuccessPayload": {
        "type": "object",
        "description": "The save-preference success payload. GSTN does not publish stable fields for this payload.",
        "additionalProperties": true
      },
      "SavePreferenceSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/SavePreferenceSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "SavePreferenceResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/SavePreferenceSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "SavePreferenceRequest": {
        "type": "object",
        "description": "Public request body for Save Preference.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "GSTIN for which the filing preference is saved.",
            "minLength": 15,
            "maxLength": 15,
            "example": "27COWPR1617C2ZN"
          },
          "fy": {
            "type": "string",
            "description": "The fy value provided in the request.",
            "example": "2020-21"
          },
          "preference": {
            "type": "string",
            "description": "The preference value provided in the request.",
            "example": "M",
            "enum": [
              "Q",
              "M"
            ]
          },
          "quarter": {
            "type": "string",
            "description": "The quarter value provided in the request.",
            "example": "Q2",
            "enum": [
              "Q1",
              "Q2",
              "Q3",
              "Q4"
            ]
          }
        },
        "required": [
          "gstin",
          "fy",
          "quarter",
          "preference"
        ]
      },
      "NewProceedToFileGstrSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for New Proceed To File Gstr.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "897c98eb-7877-4252-934d-46cb3a86c51a"
          }
        }
      },
      "NewProceedToFileGstrSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/NewProceedToFileGstrSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "NewProceedToFileGstrResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/NewProceedToFileGstrSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "ProceedToFileGstrSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Proceed To File Gstr.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "897c98eb-7877-4252-934d-46cb3a86c51a"
          }
        }
      },
      "ProceedToFileGstrSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/ProceedToFileGstrSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "ProceedToFileGstrResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/ProceedToFileGstrSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetGstReturnStatusSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Gst Return Status.",
        "properties": {
          "error_report": {
            "type": "object",
            "description": "The error report value returned by GSTN.",
            "properties": {
              "at": {
                "type": "array",
                "description": "The at value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "itms": {
                      "type": "array",
                      "description": "The itms value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ad_amt": {
                            "type": "number",
                            "description": "The ad amt value returned by GSTN."
                          },
                          "csamt": {
                            "type": "number",
                            "description": "The csamt value returned by GSTN."
                          },
                          "iamt": {
                            "type": "number",
                            "description": "The iamt value returned by GSTN."
                          },
                          "rt": {
                            "type": "number",
                            "description": "The rt value returned by GSTN."
                          }
                        }
                      }
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value returned by GSTN."
                    },
                    "sply_ty": {
                      "type": "string",
                      "description": "The sply ty value returned by GSTN."
                    }
                  }
                }
              },
              "b2b": {
                "type": "array",
                "description": "The b2b value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "The ctin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "etin": {
                            "type": "string",
                            "description": "The etin value returned by GSTN."
                          },
                          "idt": {
                            "type": "string",
                            "description": "The idt value returned by GSTN."
                          },
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "The inv typ value returned by GSTN."
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "description": "The csamt value returned by GSTN."
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "The iamt value returned by GSTN."
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "The rt value returned by GSTN."
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "The txval value returned by GSTN."
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "The num value returned by GSTN."
                                }
                              }
                            }
                          },
                          "pos": {
                            "type": "string",
                            "description": "The pos value returned by GSTN."
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "The rchrg value returned by GSTN."
                          },
                          "val": {
                            "type": "number",
                            "description": "The val value returned by GSTN."
                          },
                          "isEdit": {
                            "type": "boolean",
                            "description": "The is Edit value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "b2cl": {
                "type": "array",
                "description": "The b2cl value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "etin": {
                            "type": "string",
                            "description": "The etin value returned by GSTN."
                          },
                          "idt": {
                            "type": "string",
                            "description": "The idt value returned by GSTN."
                          },
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "description": "The csamt value returned by GSTN."
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "The iamt value returned by GSTN."
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "The rt value returned by GSTN."
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "The txval value returned by GSTN."
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "The num value returned by GSTN."
                                }
                              }
                            }
                          },
                          "val": {
                            "type": "number",
                            "description": "The val value returned by GSTN."
                          }
                        }
                      }
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value returned by GSTN."
                    }
                  }
                }
              },
              "b2cs": {
                "type": "array",
                "description": "The b2cs value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csamt": {
                      "type": "number",
                      "description": "The csamt value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "etin": {
                      "type": "string",
                      "description": "The etin value returned by GSTN."
                    },
                    "iamt": {
                      "type": "number",
                      "description": "The iamt value returned by GSTN."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value returned by GSTN."
                    },
                    "rt": {
                      "type": "number",
                      "description": "The rt value returned by GSTN."
                    },
                    "sply_ty": {
                      "type": "string",
                      "description": "The sply ty value returned by GSTN."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value returned by GSTN."
                    },
                    "typ": {
                      "type": "string",
                      "description": "The typ value returned by GSTN."
                    }
                  }
                }
              },
              "cdnr": {
                "type": "array",
                "description": "The cdnr value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "The ctin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "nt": {
                      "type": "array",
                      "description": "The nt value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "idt": {
                            "type": "string",
                            "description": "The idt value returned by GSTN."
                          },
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "description": "The csamt value returned by GSTN."
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "The iamt value returned by GSTN."
                                    },
                                    "rt": {
                                      "type": "number",
                                      "description": "The rt value returned by GSTN."
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "The txval value returned by GSTN."
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "The num value returned by GSTN."
                                }
                              }
                            }
                          },
                          "nt_dt": {
                            "type": "string",
                            "description": "The nt dt value returned by GSTN."
                          },
                          "nt_num": {
                            "type": "string",
                            "description": "The nt num value returned by GSTN."
                          },
                          "ntty": {
                            "type": "string",
                            "description": "The ntty value returned by GSTN."
                          },
                          "p_gst": {
                            "type": "string",
                            "description": "The p gst value returned by GSTN."
                          },
                          "rsn": {
                            "type": "string",
                            "description": "The rsn value returned by GSTN."
                          },
                          "val": {
                            "type": "number",
                            "description": "The val value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "cdnur": {
                "type": "array",
                "description": "The cdnur value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value returned by GSTN."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value returned by GSTN."
                    },
                    "itms": {
                      "type": "array",
                      "description": "The itms value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "itm_det": {
                            "type": "object",
                            "description": "The itm det value returned by GSTN.",
                            "properties": {
                              "csamt": {
                                "type": "number",
                                "description": "The csamt value returned by GSTN."
                              },
                              "iamt": {
                                "type": "number",
                                "description": "The iamt value returned by GSTN."
                              },
                              "rt": {
                                "type": "number",
                                "description": "The rt value returned by GSTN."
                              },
                              "txval": {
                                "type": "number",
                                "description": "The txval value returned by GSTN."
                              }
                            }
                          },
                          "num": {
                            "type": "number",
                            "description": "The num value returned by GSTN."
                          }
                        }
                      }
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value returned by GSTN."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value returned by GSTN."
                    },
                    "ntty": {
                      "type": "string",
                      "description": "The ntty value returned by GSTN."
                    },
                    "p_gst": {
                      "type": "string",
                      "description": "The p gst value returned by GSTN."
                    },
                    "rsn": {
                      "type": "string",
                      "description": "The rsn value returned by GSTN."
                    },
                    "typ": {
                      "type": "string",
                      "description": "The typ value returned by GSTN."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value returned by GSTN."
                    }
                  }
                }
              },
              "doc_issue": {
                "type": "object",
                "description": "The doc issue value returned by GSTN.",
                "properties": {
                  "doc_det": {
                    "type": "array",
                    "description": "The doc det value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "doc_num": {
                          "type": "number",
                          "description": "The doc num value returned by GSTN."
                        },
                        "docs": {
                          "type": "array",
                          "description": "The docs value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "cancel": {
                                "type": "number",
                                "description": "The cancel value returned by GSTN."
                              },
                              "from": {
                                "type": "string",
                                "description": "The from value returned by GSTN."
                              },
                              "net_issue": {
                                "type": "number",
                                "description": "The net issue value returned by GSTN."
                              },
                              "num": {
                                "type": "number",
                                "description": "The num value returned by GSTN."
                              },
                              "to": {
                                "type": "string",
                                "description": "The to value returned by GSTN."
                              },
                              "totnum": {
                                "type": "number",
                                "description": "The totnum value returned by GSTN."
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "error_cd": {
                    "type": "string",
                    "description": "The error cd value returned by GSTN."
                  },
                  "error_msg": {
                    "type": "string",
                    "description": "The error msg value returned by GSTN."
                  }
                }
              },
              "exp": {
                "type": "array",
                "description": "The exp value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "exp_typ": {
                      "type": "string",
                      "description": "The exp typ value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "idt": {
                            "type": "string",
                            "description": "The idt value returned by GSTN."
                          },
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "iamt": {
                                  "type": "number",
                                  "description": "The iamt value returned by GSTN."
                                },
                                "rt": {
                                  "type": "number",
                                  "description": "The rt value returned by GSTN."
                                },
                                "txval": {
                                  "type": "number",
                                  "description": "The txval value returned by GSTN."
                                }
                              }
                            }
                          },
                          "sbdt": {
                            "type": "string",
                            "description": "The sbdt value returned by GSTN."
                          },
                          "sbnum": {
                            "type": "number",
                            "description": "The sbnum value returned by GSTN."
                          },
                          "sbpcode": {
                            "type": "string",
                            "description": "The sbpcode value returned by GSTN."
                          },
                          "val": {
                            "type": "number",
                            "description": "The val value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "hsn": {
                "description": "The HSN error report. GSTN can return one report object or a list of report objects.",
                "oneOf": [
                  {
                    "type": "object",
                    "properties": {
                      "chksum": {
                        "type": "string",
                        "description": "The chksum value returned by GSTN."
                      },
                      "data": {
                        "type": "array",
                        "description": "The data value returned by GSTN.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "camt": {
                              "type": "integer",
                              "description": "The camt value returned by GSTN."
                            },
                            "csamt": {
                              "type": "integer",
                              "description": "The csamt value returned by GSTN."
                            },
                            "desc": {
                              "type": "string",
                              "description": "The desc value returned by GSTN."
                            },
                            "hsn_sc": {
                              "type": "string",
                              "description": "The hsn sc value returned by GSTN."
                            },
                            "iamt": {
                              "type": "number",
                              "description": "The iamt value returned by GSTN."
                            },
                            "num": {
                              "type": "integer",
                              "description": "The num value returned by GSTN."
                            },
                            "qty": {
                              "type": "number",
                              "description": "The qty value returned by GSTN."
                            },
                            "rt": {
                              "type": "integer",
                              "description": "The rt value returned by GSTN."
                            },
                            "samt": {
                              "type": "integer",
                              "description": "The samt value returned by GSTN."
                            },
                            "txval": {
                              "type": "number",
                              "description": "The txval value returned by GSTN."
                            },
                            "uqc": {
                              "type": "string",
                              "description": "The uqc value returned by GSTN."
                            }
                          }
                        }
                      },
                      "error_cd": {
                        "type": "string",
                        "description": "The error cd value returned by GSTN."
                      },
                      "error_msg": {
                        "type": "string",
                        "description": "The error msg value returned by GSTN."
                      }
                    }
                  },
                  {
                    "type": "array",
                    "description": "The hsn value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "chksum": {
                          "type": "string",
                          "description": "The chksum value returned by GSTN."
                        },
                        "data": {
                          "type": "array",
                          "description": "The data value returned by GSTN.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "camt": {
                                "type": "integer",
                                "description": "The camt value returned by GSTN."
                              },
                              "csamt": {
                                "type": "integer",
                                "description": "The csamt value returned by GSTN."
                              },
                              "desc": {
                                "type": "string",
                                "description": "The desc value returned by GSTN."
                              },
                              "hsn_sc": {
                                "type": "string",
                                "description": "The hsn sc value returned by GSTN."
                              },
                              "iamt": {
                                "type": "number",
                                "description": "The iamt value returned by GSTN."
                              },
                              "num": {
                                "type": "integer",
                                "description": "The num value returned by GSTN."
                              },
                              "qty": {
                                "type": "number",
                                "description": "The qty value returned by GSTN."
                              },
                              "rt": {
                                "type": "integer",
                                "description": "The rt value returned by GSTN."
                              },
                              "samt": {
                                "type": "integer",
                                "description": "The samt value returned by GSTN."
                              },
                              "txval": {
                                "type": "number",
                                "description": "The txval value returned by GSTN."
                              },
                              "uqc": {
                                "type": "string",
                                "description": "The uqc value returned by GSTN."
                              }
                            }
                          }
                        },
                        "error_cd": {
                          "type": "string",
                          "description": "The error cd value returned by GSTN."
                        },
                        "error_msg": {
                          "type": "string",
                          "description": "The error msg value returned by GSTN."
                        }
                      }
                    }
                  }
                ]
              },
              "nil": {
                "type": "object",
                "description": "The nil value returned by GSTN.",
                "properties": {
                  "error_cd": {
                    "type": "string",
                    "description": "The error cd value returned by GSTN."
                  },
                  "error_msg": {
                    "type": "string",
                    "description": "The error msg value returned by GSTN."
                  },
                  "inv": {
                    "type": "array",
                    "description": "The inv value returned by GSTN.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "expt_amt": {
                          "type": "number",
                          "description": "The expt amt value returned by GSTN."
                        },
                        "ngsup_amt": {
                          "type": "number",
                          "description": "The ngsup amt value returned by GSTN."
                        },
                        "nil_amt": {
                          "type": "number",
                          "description": "The nil amt value returned by GSTN."
                        },
                        "sply_ty": {
                          "type": "string",
                          "description": "The sply ty value returned by GSTN."
                        }
                      }
                    }
                  }
                }
              },
              "txpd": {
                "type": "array",
                "description": "The txpd value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "itms": {
                      "type": "array",
                      "description": "The itms value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ad_amt": {
                            "type": "number",
                            "description": "The ad amt value returned by GSTN."
                          },
                          "csamt": {
                            "type": "number",
                            "description": "The csamt value returned by GSTN."
                          },
                          "iamt": {
                            "type": "number",
                            "description": "The iamt value returned by GSTN."
                          },
                          "rt": {
                            "type": "number",
                            "description": "The rt value returned by GSTN."
                          }
                        }
                      }
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value returned by GSTN."
                    },
                    "sply_ty": {
                      "type": "string",
                      "description": "The sply ty value returned by GSTN."
                    }
                  }
                }
              },
              "error_cd": {
                "type": "string",
                "description": "The error cd value returned by GSTN.",
                "example": "RET191106"
              },
              "error_msg": {
                "type": "string",
                "description": "The error msg value returned by GSTN.",
                "example": "Error in Json structure validation."
              },
              "table17": {
                "type": "object",
                "description": "The table17 value returned by GSTN.",
                "properties": {
                  "items": {
                    "type": "array",
                    "description": "The items value returned by GSTN.",
                    "example": [
                      {
                        "camt": 48287.66,
                        "csamt": 0,
                        "error_cd": "RET91708",
                        "error_msg": "The reported tax amount differs with the computed value by more than Rs. 10/-. Please report the correct tax amount within the acceptable range to proceed with the record",
                        "hsn_sc": "997331",
                        "iamt": 0,
                        "isconcesstional": "N",
                        "rt": 18,
                        "samt": 48287.66,
                        "txval": 536762
                      },
                      {
                        "camt": 207620.5,
                        "csamt": 0,
                        "error_cd": "RET91708",
                        "error_msg": "The reported tax amount differs with the computed value by more than Rs. 10/-. Please report the correct tax amount within the acceptable range to proceed with the record",
                        "hsn_sc": "998232",
                        "iamt": 5676040.91,
                        "isconcesstional": "N",
                        "rt": 18,
                        "samt": 207620.5,
                        "txval": 33840209.41
                      }
                    ],
                    "items": {
                      "type": "object",
                      "properties": {
                        "camt": {
                          "type": "number",
                          "description": "The camt value returned by GSTN.",
                          "example": 48287.66
                        },
                        "csamt": {
                          "type": "number",
                          "description": "The csamt value returned by GSTN.",
                          "example": 0
                        },
                        "error_cd": {
                          "type": "string",
                          "description": "The error cd value returned by GSTN.",
                          "example": "RET91708"
                        },
                        "error_msg": {
                          "type": "string",
                          "description": "The error msg value returned by GSTN.",
                          "example": "The reported tax amount differs with the computed value by more than Rs. 10/-. Please report the correct tax amount within the acceptable range to proceed with the record"
                        },
                        "hsn_sc": {
                          "type": "string",
                          "description": "The hsn sc value returned by GSTN.",
                          "example": "997331"
                        },
                        "iamt": {
                          "type": "number",
                          "description": "The iamt value returned by GSTN.",
                          "example": 0
                        },
                        "isconcesstional": {
                          "type": "string",
                          "description": "The isconcesstional value returned by GSTN.",
                          "example": "N"
                        },
                        "rt": {
                          "type": "number",
                          "description": "The rt value returned by GSTN.",
                          "example": 18
                        },
                        "samt": {
                          "type": "number",
                          "description": "The samt value returned by GSTN.",
                          "example": 48287.66
                        },
                        "txval": {
                          "type": "number",
                          "description": "The txval value returned by GSTN.",
                          "example": 536762
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "form_typ": {
            "type": "string",
            "description": "The form typ value returned by GSTN."
          },
          "status_cd": {
            "type": "string",
            "description": "The status cd value returned by GSTN."
          },
          "action": {
            "type": "string",
            "description": "The action value returned by GSTN.",
            "example": "SAVE"
          }
        }
      },
      "GetGstReturnStatusSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetGstReturnStatusSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetGstReturnStatusResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetGstReturnStatusSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "TrackReturnsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Track Returns.",
        "properties": {
          "EFiledlist": {
            "type": "array",
            "description": "The EFiledlist value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "arn": {
                  "type": "string",
                  "description": "The arn value returned by GSTN."
                },
                "ret_prd": {
                  "type": "string",
                  "description": "The ret prd value returned by GSTN."
                },
                "mof": {
                  "type": "string",
                  "description": "The mof value returned by GSTN."
                },
                "dof": {
                  "type": "string",
                  "description": "The dof value returned by GSTN."
                },
                "rtntype": {
                  "type": "string",
                  "description": "The rtntype value returned by GSTN."
                },
                "status": {
                  "type": "string",
                  "description": "The status value returned by GSTN."
                },
                "valid": {
                  "type": "string",
                  "description": "The valid value returned by GSTN."
                }
              }
            }
          }
        }
      },
      "TrackReturnsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/TrackReturnsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "TrackReturnsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/TrackReturnsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetInvoicesSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Invoices.",
        "properties": {
          "b2b": {
            "type": "array",
            "description": "The b2b value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "GSTIN of supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnprd": {
                  "type": "string",
                  "description": "Return period of invoice"
                },
                "srcform": {
                  "type": "string",
                  "description": "Invoice source form",
                  "enum": [
                    "R1",
                    "R1A",
                    "IFF"
                  ]
                },
                "inum": {
                  "type": "string",
                  "description": "Invoice Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "idt": {
                  "type": "string",
                  "description": "Invoice Date",
                  "minLength": 1
                },
                "inv_typ": {
                  "type": "string",
                  "description": "Invoice Type",
                  "enum": [
                    "R",
                    "DE",
                    "SEWP",
                    "SEWOP",
                    "CBW"
                  ]
                },
                "action": {
                  "type": "string",
                  "description": "Action taken by recipient",
                  "enum": [
                    "A",
                    "R",
                    "P",
                    "N"
                  ]
                },
                "pos": {
                  "type": "string",
                  "description": "Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "ispendactblocked": {
                  "type": "string",
                  "description": "Is pending action allowed for recipient",
                  "enum": [
                    "N",
                    "Y"
                  ]
                },
                "srcfilstatus": {
                  "type": "string",
                  "description": "Supplier filing status",
                  "enum": [
                    "Filed",
                    "Not Filed"
                  ]
                },
                "hash": {
                  "type": "string",
                  "description": "Check sum of the invoice",
                  "minLength": 1,
                  "maxLength": 64
                },
                "val": {
                  "type": "number",
                  "description": "Invoice Value",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "iamt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "camt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "samt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "cess": {
                  "type": "number",
                  "description": "cess",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          },
          "b2ba": {
            "type": "array",
            "description": "The b2ba value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "GSTIN of supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnprd": {
                  "type": "string",
                  "description": "Return period of invoice"
                },
                "srcform": {
                  "type": "string",
                  "description": "Invoice source form",
                  "enum": [
                    "R1",
                    "R1A",
                    "IFF"
                  ]
                },
                "inum": {
                  "type": "string",
                  "description": "Invoice Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "oinum": {
                  "type": "string",
                  "description": "original invoice number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "idt": {
                  "type": "string",
                  "description": "Invoice Date",
                  "minLength": 1
                },
                "oidt": {
                  "type": "string",
                  "description": "original invoice date",
                  "minLength": 1
                },
                "inv_typ": {
                  "type": "string",
                  "description": "Invoice Type",
                  "enum": [
                    "R",
                    "DE",
                    "SEWP",
                    "SEWOP",
                    "CBW"
                  ]
                },
                "action": {
                  "type": "string",
                  "description": "Action taken by recipient",
                  "enum": [
                    "A",
                    "R",
                    "P",
                    "N"
                  ]
                },
                "pos": {
                  "type": "string",
                  "description": "Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "srcfilstatus": {
                  "type": "string",
                  "description": "Supplier filing status",
                  "enum": [
                    "Filed",
                    "Not Filed"
                  ]
                },
                "hash": {
                  "type": "string",
                  "description": "Check sum of the invoice",
                  "minLength": 1,
                  "maxLength": 64
                },
                "ispendactblocked": {
                  "type": "string",
                  "description": "Is pending action allowed for recipient",
                  "enum": [
                    "N",
                    "Y"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Invoice Value",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "iamt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "camt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "samt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "cess": {
                  "type": "number",
                  "description": "cess",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          },
          "b2bdn": {
            "type": "array",
            "description": "The b2bdn value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "GSTIN of supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnprd": {
                  "type": "string",
                  "description": "Return period of invoice"
                },
                "srcform": {
                  "type": "string",
                  "description": "Invoice source form",
                  "enum": [
                    "R1",
                    "R1A",
                    "IFF"
                  ]
                },
                "nt_num": {
                  "type": "string",
                  "description": "Note Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "nt_dt": {
                  "type": "string",
                  "description": "Note Date",
                  "minLength": 1
                },
                "inv_typ": {
                  "type": "string",
                  "description": "Invoice Type",
                  "enum": [
                    "R",
                    "DE",
                    "SEWP",
                    "SEWOP",
                    "CBW"
                  ]
                },
                "action": {
                  "type": "string",
                  "description": "Action taken by recipient",
                  "enum": [
                    "A",
                    "R",
                    "P",
                    "N"
                  ]
                },
                "pos": {
                  "type": "string",
                  "description": "Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "srcfilstatus": {
                  "type": "string",
                  "description": "Supplier filing status",
                  "enum": [
                    "Filed",
                    "Not Filed"
                  ]
                },
                "hash": {
                  "type": "string",
                  "description": "Check sum of the invoice",
                  "minLength": 1,
                  "maxLength": 64
                },
                "ispendactblocked": {
                  "type": "string",
                  "description": "Is pending action allowed for recipient",
                  "enum": [
                    "N",
                    "Y"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Invoice Value",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "iamt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "camt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "samt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "cess": {
                  "type": "number",
                  "description": "cess",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          },
          "b2bdna": {
            "type": "array",
            "description": "The b2bdna value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "GSTIN of supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnprd": {
                  "type": "string",
                  "description": "Return period of invoice"
                },
                "srcform": {
                  "type": "string",
                  "description": "Invoice source form",
                  "enum": [
                    "R1",
                    "R1A",
                    "IFF"
                  ]
                },
                "nt_num": {
                  "type": "string",
                  "description": "Note Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "ont_num": {
                  "type": "string",
                  "description": "old note number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "nt_dt": {
                  "type": "string",
                  "description": "Note Date",
                  "minLength": 1
                },
                "ont_dt": {
                  "type": "string",
                  "description": "old note date",
                  "minLength": 1
                },
                "inv_typ": {
                  "type": "string",
                  "description": "Invoice Type",
                  "enum": [
                    "R",
                    "DE",
                    "SEWP",
                    "SEWOP",
                    "CBW"
                  ]
                },
                "pos": {
                  "type": "string",
                  "description": "Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "srcfilstatus": {
                  "type": "string",
                  "description": "Supplier filing status",
                  "enum": [
                    "Filed",
                    "Not Filed"
                  ]
                },
                "hash": {
                  "type": "string",
                  "description": "Check sum of the invoice",
                  "minLength": 1,
                  "maxLength": 64
                },
                "ispendactblocked": {
                  "type": "string",
                  "description": "Is pending action allowed for recipient",
                  "enum": [
                    "N",
                    "Y"
                  ]
                },
                "action": {
                  "type": "string",
                  "description": "Action taken by recipient",
                  "enum": [
                    "A",
                    "R",
                    "P",
                    "N"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Invoice Value",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "iamt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "camt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "samt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "cess": {
                  "type": "number",
                  "description": "cess",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          },
          "b2bcn": {
            "type": "array",
            "description": "The b2bcn value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "GSTIN of supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnprd": {
                  "type": "string",
                  "description": "Return period of invoice"
                },
                "srcform": {
                  "type": "string",
                  "description": "Invoice source form",
                  "enum": [
                    "R1",
                    "R1A",
                    "IFF"
                  ]
                },
                "nt_num": {
                  "type": "string",
                  "description": "Note Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "nt_dt": {
                  "type": "string",
                  "description": "Note Date",
                  "minLength": 1
                },
                "inv_typ": {
                  "type": "string",
                  "description": "Invoice Type",
                  "enum": [
                    "R",
                    "DE",
                    "SEWP",
                    "SEWOP",
                    "CBW"
                  ]
                },
                "pos": {
                  "type": "string",
                  "description": "Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "srcfilstatus": {
                  "type": "string",
                  "description": "Supplier filing status",
                  "enum": [
                    "Filed",
                    "Not Filed"
                  ]
                },
                "hash": {
                  "type": "string",
                  "description": "Check sum of the invoice",
                  "minLength": 1,
                  "maxLength": 64
                },
                "ispendactblocked": {
                  "type": "string",
                  "description": "Is pending action allowed for recipient",
                  "enum": [
                    "N",
                    "Y"
                  ]
                },
                "action": {
                  "type": "string",
                  "description": "Action taken by recipient",
                  "enum": [
                    "A",
                    "R",
                    "P",
                    "N"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Invoice Value",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "iamt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "camt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "samt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "cess": {
                  "type": "number",
                  "description": "cess",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          },
          "b2bcna": {
            "type": "array",
            "description": "The b2bcna value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "GSTIN of supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnprd": {
                  "type": "string",
                  "description": "Return period of invoice"
                },
                "srcform": {
                  "type": "string",
                  "description": "Invoice source form",
                  "enum": [
                    "R1",
                    "R1A",
                    "IFF"
                  ]
                },
                "nt_num": {
                  "type": "string",
                  "description": "Note Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "ont_num": {
                  "type": "string",
                  "description": "old note number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "nt_dt": {
                  "type": "string",
                  "description": "Note Date",
                  "minLength": 1
                },
                "ont_dt": {
                  "type": "string",
                  "description": "old note date",
                  "minLength": 1
                },
                "inv_typ": {
                  "type": "string",
                  "description": "Invoice Type",
                  "enum": [
                    "R",
                    "DE",
                    "SEWP",
                    "SEWOP",
                    "CBW"
                  ]
                },
                "pos": {
                  "type": "string",
                  "description": "Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "srcfilstatus": {
                  "type": "string",
                  "description": "Supplier filing status",
                  "enum": [
                    "Filed",
                    "Not Filed"
                  ]
                },
                "hash": {
                  "type": "string",
                  "description": "Check sum of the invoice",
                  "minLength": 1,
                  "maxLength": 64
                },
                "ispendactblocked": {
                  "type": "string",
                  "description": "Is pending action allowed for recipient",
                  "enum": [
                    "N",
                    "Y"
                  ]
                },
                "action": {
                  "type": "string",
                  "description": "Action taken by recipient",
                  "enum": [
                    "A",
                    "R",
                    "P",
                    "N"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Invoice Value",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "iamt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "camt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "samt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "cess": {
                  "type": "number",
                  "description": "cess",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          },
          "ecom": {
            "type": "array",
            "description": "The ecom value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "GSTIN of supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnprd": {
                  "type": "string",
                  "description": "Return period of invoice"
                },
                "srcform": {
                  "type": "string",
                  "description": "Invoice source form",
                  "enum": [
                    "R1",
                    "R1A",
                    "IFF"
                  ]
                },
                "inum": {
                  "type": "string",
                  "description": "Document Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "idt": {
                  "type": "string",
                  "description": "Document Date",
                  "minLength": 1
                },
                "pos": {
                  "type": "string",
                  "description": "Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "srcfilstatus": {
                  "type": "string",
                  "description": "Supplier filing status",
                  "enum": [
                    "Filed",
                    "Not Filed"
                  ]
                },
                "hash": {
                  "type": "string",
                  "description": "Check sum of the invoice",
                  "minLength": 1,
                  "maxLength": 64
                },
                "ispendactblocked": {
                  "type": "string",
                  "description": "Is pending action allowed for recipient",
                  "enum": [
                    "N",
                    "Y"
                  ]
                },
                "action": {
                  "type": "string",
                  "description": "Action taken by recipient",
                  "enum": [
                    "A",
                    "R",
                    "P",
                    "N"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Document Value",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "iamt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "camt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "samt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "cess": {
                  "type": "number",
                  "description": "cess",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          },
          "ecoma": {
            "type": "array",
            "description": "The ecoma value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "type": "string",
                  "description": "GSTIN of supplier",
                  "minLength": 15,
                  "maxLength": 15
                },
                "rtnprd": {
                  "type": "string",
                  "description": "Return period of invoice"
                },
                "srcform": {
                  "type": "string",
                  "description": "Invoice source form",
                  "enum": [
                    "R1",
                    "R1A",
                    "IFF"
                  ]
                },
                "inum": {
                  "type": "string",
                  "description": "Document Number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "oinum": {
                  "type": "string",
                  "description": "old document number",
                  "minLength": 1,
                  "maxLength": 16
                },
                "idt": {
                  "type": "string",
                  "description": "Document Date",
                  "minLength": 1
                },
                "oidt": {
                  "type": "string",
                  "description": "old document date",
                  "minLength": 1
                },
                "pos": {
                  "type": "string",
                  "description": "Place of Supply",
                  "minLength": 2,
                  "maxLength": 2
                },
                "srcfilstatus": {
                  "type": "string",
                  "description": "Supplier filing status",
                  "enum": [
                    "Filed",
                    "Not Filed"
                  ]
                },
                "hash": {
                  "type": "string",
                  "description": "Check sum of the invoice",
                  "minLength": 1,
                  "maxLength": 64
                },
                "action": {
                  "type": "string",
                  "description": "Action taken by recipient",
                  "enum": [
                    "A",
                    "R",
                    "P",
                    "N"
                  ]
                },
                "ispendactblocked": {
                  "type": "string",
                  "description": "Is pending action allowed for recipient",
                  "enum": [
                    "N",
                    "Y"
                  ]
                },
                "val": {
                  "type": "number",
                  "description": "Document Value",
                  "minimum": 0,
                  "maximum": 9999999999999.99
                },
                "txval": {
                  "type": "number",
                  "description": "Taxable value",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "iamt": {
                  "type": "number",
                  "description": "iamt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "camt": {
                  "type": "number",
                  "description": "camt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "samt": {
                  "type": "number",
                  "description": "samt",
                  "minimum": 0,
                  "maximum": 99999999999.99
                },
                "cess": {
                  "type": "number",
                  "description": "cess",
                  "minimum": 0,
                  "maximum": 99999999999.99
                }
              }
            }
          }
        }
      },
      "GetInvoicesSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetInvoicesSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetInvoicesResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetInvoicesSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetInvoicesAddedBackLiabilitiesYearMonthSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Invoices Added Back Liabilities Year Month.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "GSTIN of the taxpayer",
            "maxLength": 15
          },
          "rtnprd": {
            "type": "string",
            "description": "Return period in MMYYYY format"
          },
          "rejInvAddBackLiab": {
            "type": "object",
            "description": "The rej Inv Add Back Liab value returned by GSTN.",
            "properties": {
              "cdnr": {
                "type": "array",
                "description": "The cdnr value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN pattern",
                      "maxLength": 15
                    },
                    "tradenm": {
                      "type": "string",
                      "description": "The tradenm value returned by GSTN."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "Invoice type",
                      "enum": [
                        "SEWP",
                        "SEWOP",
                        "R",
                        "DE"
                      ]
                    },
                    "val": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "txval": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "camt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "samt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value returned by GSTN."
                    },
                    "supPrd": {
                      "type": "string",
                      "description": "Month year in MMYYYY format"
                    },
                    "form": {
                      "type": "string",
                      "description": "Form type",
                      "enum": [
                        "R1",
                        "R1A"
                      ]
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value returned by GSTN."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "Date in DD-MM-YYYY format"
                    },
                    "ntty": {
                      "type": "string",
                      "description": "Note type - C/Credit, D/Debit",
                      "enum": [
                        "C",
                        "D"
                      ]
                    }
                  }
                }
              },
              "b2ba": {
                "type": "array",
                "description": "The b2ba value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN pattern",
                      "maxLength": 15
                    },
                    "tradenm": {
                      "type": "string",
                      "description": "The tradenm value returned by GSTN."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "Invoice type",
                      "enum": [
                        "SEWP",
                        "SEWOP",
                        "R",
                        "DE"
                      ]
                    },
                    "val": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "txval": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "camt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "samt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value returned by GSTN."
                    },
                    "supPrd": {
                      "type": "string",
                      "description": "Month year in MMYYYY format"
                    },
                    "form": {
                      "type": "string",
                      "description": "Form type",
                      "enum": [
                        "R1",
                        "R1A"
                      ]
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value returned by GSTN."
                    },
                    "idt": {
                      "type": "string",
                      "description": "Date in DD-MM-YYYY format"
                    },
                    "oinum": {
                      "type": "string",
                      "description": "The oinum value returned by GSTN."
                    },
                    "oidt": {
                      "type": "string",
                      "description": "Date in DD-MM-YYYY format"
                    }
                  }
                }
              },
              "cdnra": {
                "type": "array",
                "description": "The cdnra value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN pattern",
                      "maxLength": 15
                    },
                    "tradenm": {
                      "type": "string",
                      "description": "The tradenm value returned by GSTN."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "Invoice type",
                      "enum": [
                        "SEWP",
                        "SEWOP",
                        "R",
                        "DE"
                      ]
                    },
                    "val": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "txval": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "camt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "samt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value returned by GSTN."
                    },
                    "supPrd": {
                      "type": "string",
                      "description": "Month year in MMYYYY format"
                    },
                    "form": {
                      "type": "string",
                      "description": "Form type",
                      "enum": [
                        "R1",
                        "R1A"
                      ]
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value returned by GSTN."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "Date in DD-MM-YYYY format"
                    },
                    "ntty": {
                      "type": "string",
                      "description": "Note type - C/Credit, D/Debit",
                      "enum": [
                        "C",
                        "D"
                      ]
                    },
                    "ont_num": {
                      "type": "string",
                      "description": "The ont num value returned by GSTN."
                    },
                    "ont_dt": {
                      "type": "string",
                      "description": "Date in DD-MM-YYYY format"
                    }
                  }
                }
              },
              "ecoma": {
                "type": "array",
                "description": "The ecoma value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "val": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "txval": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "iamt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "camt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "samt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "csamt": {
                      "type": "number",
                      "description": "Amount value",
                      "minimum": 0
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value returned by GSTN."
                    },
                    "supPrd": {
                      "type": "string",
                      "description": "Month year in MMYYYY format"
                    },
                    "form": {
                      "type": "string",
                      "description": "Form type",
                      "enum": [
                        "R1",
                        "R1A"
                      ]
                    },
                    "rtin": {
                      "type": "string",
                      "description": "GSTIN pattern",
                      "maxLength": 15
                    },
                    "rtinNam": {
                      "type": "string",
                      "description": "The rtin Nam value returned by GSTN."
                    },
                    "stin": {
                      "type": "string",
                      "description": "GSTIN pattern",
                      "maxLength": 15
                    },
                    "stinNam": {
                      "type": "string",
                      "description": "The stin Nam value returned by GSTN."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value returned by GSTN."
                    },
                    "idt": {
                      "type": "string",
                      "description": "Date in DD-MM-YYYY format"
                    },
                    "oinum": {
                      "type": "string",
                      "description": "The oinum value returned by GSTN."
                    },
                    "oidt": {
                      "type": "string",
                      "description": "Date in DD-MM-YYYY format"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetInvoicesAddedBackLiabilitiesYearMonthSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetInvoicesAddedBackLiabilitiesYearMonthSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetInvoicesAddedBackLiabilitiesYearMonthResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetInvoicesAddedBackLiabilitiesYearMonthSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetInvoiceCountSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Invoice Count.",
        "properties": {
          "all_oth": {
            "type": "object",
            "description": "The all oth value returned by GSTN.",
            "properties": {
              "b2b": {
                "type": "object",
                "description": "The b2b value returned by GSTN.",
                "properties": {
                  "accept": {
                    "type": "number",
                    "description": "The accept value returned by GSTN.",
                    "example": 1
                  },
                  "noaction": {
                    "type": "number",
                    "description": "The noaction value returned by GSTN.",
                    "example": 11
                  },
                  "pending": {
                    "type": "number",
                    "description": "The pending value returned by GSTN.",
                    "example": 0
                  },
                  "reject": {
                    "type": "number",
                    "description": "The reject value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "b2ba": {
                "type": "object",
                "description": "The b2ba value returned by GSTN.",
                "properties": {
                  "accept": {
                    "type": "number",
                    "description": "The accept value returned by GSTN.",
                    "example": 0
                  },
                  "noaction": {
                    "type": "number",
                    "description": "The noaction value returned by GSTN.",
                    "example": 0
                  },
                  "pending": {
                    "type": "number",
                    "description": "The pending value returned by GSTN.",
                    "example": 0
                  },
                  "reject": {
                    "type": "number",
                    "description": "The reject value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "b2bcn": {
                "type": "object",
                "description": "The b2bcn value returned by GSTN.",
                "properties": {
                  "accept": {
                    "type": "number",
                    "description": "The accept value returned by GSTN.",
                    "example": 0
                  },
                  "noaction": {
                    "type": "number",
                    "description": "The noaction value returned by GSTN.",
                    "example": 0
                  },
                  "pending": {
                    "type": "number",
                    "description": "The pending value returned by GSTN.",
                    "example": 0
                  },
                  "reject": {
                    "type": "number",
                    "description": "The reject value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "b2bcna": {
                "type": "object",
                "description": "The b2bcna value returned by GSTN.",
                "properties": {
                  "accept": {
                    "type": "number",
                    "description": "The accept value returned by GSTN.",
                    "example": 0
                  },
                  "noaction": {
                    "type": "number",
                    "description": "The noaction value returned by GSTN.",
                    "example": 0
                  },
                  "pending": {
                    "type": "number",
                    "description": "The pending value returned by GSTN.",
                    "example": 0
                  },
                  "reject": {
                    "type": "number",
                    "description": "The reject value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "b2bdn": {
                "type": "object",
                "description": "The b2bdn value returned by GSTN.",
                "properties": {
                  "accept": {
                    "type": "number",
                    "description": "The accept value returned by GSTN.",
                    "example": 0
                  },
                  "noaction": {
                    "type": "number",
                    "description": "The noaction value returned by GSTN.",
                    "example": 0
                  },
                  "pending": {
                    "type": "number",
                    "description": "The pending value returned by GSTN.",
                    "example": 0
                  },
                  "reject": {
                    "type": "number",
                    "description": "The reject value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "b2bdna": {
                "type": "object",
                "description": "The b2bdna value returned by GSTN.",
                "properties": {
                  "accept": {
                    "type": "number",
                    "description": "The accept value returned by GSTN.",
                    "example": 0
                  },
                  "noaction": {
                    "type": "number",
                    "description": "The noaction value returned by GSTN.",
                    "example": 0
                  },
                  "pending": {
                    "type": "number",
                    "description": "The pending value returned by GSTN.",
                    "example": 0
                  },
                  "reject": {
                    "type": "number",
                    "description": "The reject value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "ecom": {
                "type": "object",
                "description": "The ecom value returned by GSTN.",
                "properties": {
                  "accept": {
                    "type": "number",
                    "description": "The accept value returned by GSTN.",
                    "example": 0
                  },
                  "noaction": {
                    "type": "number",
                    "description": "The noaction value returned by GSTN.",
                    "example": 0
                  },
                  "pending": {
                    "type": "number",
                    "description": "The pending value returned by GSTN.",
                    "example": 0
                  },
                  "reject": {
                    "type": "number",
                    "description": "The reject value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "ecoma": {
                "type": "object",
                "description": "The ecoma value returned by GSTN.",
                "properties": {
                  "accept": {
                    "type": "number",
                    "description": "The accept value returned by GSTN.",
                    "example": 0
                  },
                  "noaction": {
                    "type": "number",
                    "description": "The noaction value returned by GSTN.",
                    "example": 0
                  },
                  "pending": {
                    "type": "number",
                    "description": "The pending value returned by GSTN.",
                    "example": 0
                  },
                  "reject": {
                    "type": "number",
                    "description": "The reject value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "ttl_cnt": {
                "type": "number",
                "description": "The ttl cnt value returned by GSTN.",
                "example": 12
              }
            }
          }
        }
      },
      "GetInvoiceCountSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetInvoiceCountSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetInvoiceCountResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetInvoiceCountSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "CheckInvoiceStatusSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Check Invoice Status.",
        "properties": {
          "status_cd": {
            "type": "string",
            "description": "Status of the request"
          },
          "transTypCd": {
            "type": "string",
            "description": "Transaction type code"
          },
          "proc_cnt": {
            "type": "string",
            "description": "Count of processed records",
            "minimum": 0
          },
          "err_cnt": {
            "type": "string",
            "description": "Count of errored records",
            "minimum": 0
          },
          "err_cd": {
            "type": "string",
            "description": "Error code"
          },
          "err_msg": {
            "type": "string",
            "description": "Error message"
          },
          "error_report": {
            "type": "object",
            "description": "The error report value returned by GSTN.",
            "properties": {
              "b2b": {
                "type": "array",
                "description": "The b2b value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "b2ba": {
                "type": "array",
                "description": "The b2ba value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "b2bdn": {
                "type": "array",
                "description": "The b2bdn value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "b2bdna": {
                "type": "array",
                "description": "The b2bdna value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "b2bcn": {
                "type": "array",
                "description": "The b2bcn value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "b2bcna": {
                "type": "array",
                "description": "The b2bcna value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "ecom": {
                "type": "array",
                "description": "The ecom value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "ecoma": {
                "type": "array",
                "description": "The ecoma value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN."
                    },
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN."
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN."
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN."
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "dn": {
                "type": "array",
                "description": "The dn value returned by GSTN.",
                "example": [
                  {
                    "error_cd": "IMSSAV0010",
                    "error_msg": "Either previous action is incorrect/ invoice might have edited by supplier",
                    "inv": [
                      {
                        "inum": "invoice-dn",
                        "rtnprd": "042023"
                      }
                    ],
                    "stin": "32TAAOA2947A1Z7"
                  }
                ],
                "items": {
                  "type": "object",
                  "properties": {
                    "error_cd": {
                      "type": "string",
                      "description": "The error cd value returned by GSTN.",
                      "example": "IMSSAV0010"
                    },
                    "error_msg": {
                      "type": "string",
                      "description": "The error msg value returned by GSTN.",
                      "example": "Either previous action is incorrect/ invoice might have edited by supplier"
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "example": [
                        {
                          "inum": "invoice-dn",
                          "rtnprd": "042023"
                        }
                      ],
                      "items": {
                        "type": "object",
                        "properties": {
                          "inum": {
                            "type": "string",
                            "description": "The inum value returned by GSTN.",
                            "example": "invoice-dn"
                          },
                          "rtnprd": {
                            "type": "string",
                            "description": "The rtnprd value returned by GSTN.",
                            "example": "042023"
                          }
                        }
                      }
                    },
                    "stin": {
                      "type": "string",
                      "description": "The stin value returned by GSTN.",
                      "example": "32TAAOA2947A1Z7"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "CheckInvoiceStatusSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/CheckInvoiceStatusSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "CheckInvoiceStatusResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/CheckInvoiceStatusSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "ResetInvoiceStatusSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Reset Invoice Status.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "b34b5a43e4b1"
          }
        }
      },
      "ResetInvoiceStatusSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/ResetInvoiceStatusSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "ResetInvoiceStatusResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/ResetInvoiceStatusSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "ResetInvoiceStatusRequest": {
        "type": "object",
        "description": "Public request body for Reset Invoice Status.",
        "properties": {
          "rtin": {
            "type": "string",
            "description": "The rtin value provided in the request."
          },
          "reqtyp": {
            "type": "string",
            "description": "The reqtyp value provided in the request."
          },
          "invdata": {
            "type": "object",
            "description": "The invdata value provided in the request.",
            "properties": {
              "b2b": {
                "type": "array",
                "description": "The b2b value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value provided in the request."
                    },
                    "val": {
                      "type": "integer",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    }
                  }
                }
              },
              "b2ba": {
                "type": "array",
                "description": "The b2ba value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value provided in the request."
                    },
                    "oinum": {
                      "type": "string",
                      "description": "The oinum value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value provided in the request."
                    },
                    "oidt": {
                      "type": "string",
                      "description": "The oidt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    }
                  }
                }
              },
              "b2bdn": {
                "type": "array",
                "description": "The b2bdn value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    }
                  }
                }
              },
              "b2bdna": {
                "type": "array",
                "description": "The b2bdna value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "ont_num": {
                      "type": "string",
                      "description": "The ont num value provided in the request."
                    },
                    "ont_dt": {
                      "type": "string",
                      "description": "The ont dt value provided in the request."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    }
                  }
                }
              },
              "b2bcn": {
                "type": "array",
                "description": "The b2bcn value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    }
                  }
                }
              },
              "b2bcna": {
                "type": "array",
                "description": "The b2bcna value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "ont_num": {
                      "type": "string",
                      "description": "The ont num value provided in the request."
                    },
                    "ont_dt": {
                      "type": "string",
                      "description": "The ont dt value provided in the request."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    }
                  }
                }
              },
              "ecom": {
                "type": "array",
                "description": "The ecom value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value provided in the request."
                    },
                    "val": {
                      "type": "integer",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    }
                  }
                }
              },
              "ecoma": {
                "type": "array",
                "description": "The ecoma value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "oinum": {
                      "type": "string",
                      "description": "The oinum value provided in the request."
                    },
                    "oidt": {
                      "type": "string",
                      "description": "The oidt value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value provided in the request."
                    },
                    "val": {
                      "type": "integer",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "SaveInvoiceStatusSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Save Invoice Status.",
        "properties": {
          "reference_id": {
            "type": "string",
            "description": "The reference id value returned by GSTN.",
            "example": "0032e479bcb644c"
          }
        }
      },
      "SaveInvoiceStatusSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/SaveInvoiceStatusSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "SaveInvoiceStatusResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/SaveInvoiceStatusSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "SaveInvoiceStatusRequest": {
        "type": "object",
        "description": "Public request body for Save Invoice Status.",
        "properties": {
          "rtin": {
            "type": "string",
            "description": "The rtin value provided in the request."
          },
          "reqtyp": {
            "type": "string",
            "description": "The reqtyp value provided in the request."
          },
          "invdata": {
            "type": "object",
            "description": "The invdata value provided in the request.",
            "properties": {
              "b2b": {
                "type": "array",
                "description": "The b2b value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "action": {
                      "type": "string",
                      "description": "The action value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value provided in the request."
                    },
                    "val": {
                      "type": "integer",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value provided in the request."
                    }
                  }
                }
              },
              "b2ba": {
                "type": "array",
                "description": "The b2ba value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "oinum": {
                      "type": "string",
                      "description": "The oinum value provided in the request."
                    },
                    "oidt": {
                      "type": "string",
                      "description": "The oidt value provided in the request."
                    },
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value provided in the request."
                    },
                    "action": {
                      "type": "string",
                      "description": "The action value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value provided in the request."
                    },
                    "val": {
                      "type": "integer",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    },
                    "itcRedReq": {
                      "type": "string",
                      "description": "The itc Red Req value provided in the request."
                    },
                    "declIgst": {
                      "type": "integer",
                      "description": "The decl Igst value provided in the request."
                    },
                    "declSgst": {
                      "type": "integer",
                      "description": "The decl Sgst value provided in the request."
                    },
                    "declCgst": {
                      "type": "integer",
                      "description": "The decl Cgst value provided in the request."
                    },
                    "declCess": {
                      "type": "integer",
                      "description": "The decl Cess value provided in the request."
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value provided in the request."
                    }
                  }
                }
              },
              "b2bdn": {
                "type": "array",
                "description": "The b2bdn value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value provided in the request."
                    },
                    "action": {
                      "type": "string",
                      "description": "The action value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value provided in the request."
                    }
                  }
                }
              },
              "b2bdna": {
                "type": "array",
                "description": "The b2bdna value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "ont_num": {
                      "type": "string",
                      "description": "The ont num value provided in the request."
                    },
                    "ont_dt": {
                      "type": "string",
                      "description": "The ont dt value provided in the request."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value provided in the request."
                    },
                    "action": {
                      "type": "string",
                      "description": "The action value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    },
                    "itcRedReq": {
                      "type": "string",
                      "description": "The itc Red Req value provided in the request."
                    },
                    "declIgst": {
                      "type": "integer",
                      "description": "The decl Igst value provided in the request."
                    },
                    "declSgst": {
                      "type": "integer",
                      "description": "The decl Sgst value provided in the request."
                    },
                    "declCgst": {
                      "type": "integer",
                      "description": "The decl Cgst value provided in the request."
                    },
                    "declCess": {
                      "type": "integer",
                      "description": "The decl Cess value provided in the request."
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value provided in the request."
                    }
                  }
                }
              },
              "b2bcn": {
                "type": "array",
                "description": "The b2bcn value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value provided in the request."
                    },
                    "action": {
                      "type": "string",
                      "description": "The action value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    },
                    "itcRedReq": {
                      "type": "string",
                      "description": "The itc Red Req value provided in the request."
                    },
                    "declIgst": {
                      "type": "integer",
                      "description": "The decl Igst value provided in the request."
                    },
                    "declSgst": {
                      "type": "integer",
                      "description": "The decl Sgst value provided in the request."
                    },
                    "declCgst": {
                      "type": "integer",
                      "description": "The decl Cgst value provided in the request."
                    },
                    "declCess": {
                      "type": "integer",
                      "description": "The decl Cess value provided in the request."
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value provided in the request."
                    }
                  }
                }
              },
              "b2bcna": {
                "type": "array",
                "description": "The b2bcna value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "ont_num": {
                      "type": "string",
                      "description": "The ont num value provided in the request."
                    },
                    "ont_dt": {
                      "type": "string",
                      "description": "The ont dt value provided in the request."
                    },
                    "nt_num": {
                      "type": "string",
                      "description": "The nt num value provided in the request."
                    },
                    "action": {
                      "type": "string",
                      "description": "The action value provided in the request."
                    },
                    "inv_typ": {
                      "type": "string",
                      "description": "The inv typ value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "nt_dt": {
                      "type": "string",
                      "description": "The nt dt value provided in the request."
                    },
                    "val": {
                      "type": "number",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "number",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    },
                    "itcRedReq": {
                      "type": "string",
                      "description": "The itc Red Req value provided in the request."
                    },
                    "declIgst": {
                      "type": "integer",
                      "description": "The decl Igst value provided in the request."
                    },
                    "declSgst": {
                      "type": "integer",
                      "description": "The decl Sgst value provided in the request."
                    },
                    "declCgst": {
                      "type": "integer",
                      "description": "The decl Cgst value provided in the request."
                    },
                    "declCess": {
                      "type": "integer",
                      "description": "The decl Cess value provided in the request."
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value provided in the request."
                    }
                  }
                }
              },
              "ecom": {
                "type": "array",
                "description": "The ecom value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value provided in the request."
                    },
                    "action": {
                      "type": "string",
                      "description": "The action value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value provided in the request."
                    },
                    "val": {
                      "type": "integer",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value provided in the request."
                    }
                  }
                }
              },
              "ecoma": {
                "type": "array",
                "description": "The ecoma value provided in the request.",
                "items": {
                  "type": "object",
                  "properties": {
                    "stin": {
                      "type": "string",
                      "description": "The stin value provided in the request."
                    },
                    "oinum": {
                      "type": "string",
                      "description": "The oinum value provided in the request."
                    },
                    "oidt": {
                      "type": "string",
                      "description": "The oidt value provided in the request."
                    },
                    "rtnprd": {
                      "type": "string",
                      "description": "The rtnprd value provided in the request."
                    },
                    "inum": {
                      "type": "string",
                      "description": "The inum value provided in the request."
                    },
                    "action": {
                      "type": "string",
                      "description": "The action value provided in the request."
                    },
                    "srcform": {
                      "type": "string",
                      "description": "The srcform value provided in the request."
                    },
                    "idt": {
                      "type": "string",
                      "description": "The idt value provided in the request."
                    },
                    "val": {
                      "type": "integer",
                      "description": "The val value provided in the request."
                    },
                    "pos": {
                      "type": "string",
                      "description": "The pos value provided in the request."
                    },
                    "txval": {
                      "type": "integer",
                      "description": "The txval value provided in the request."
                    },
                    "iamt": {
                      "type": "integer",
                      "description": "The iamt value provided in the request."
                    },
                    "camt": {
                      "type": "integer",
                      "description": "The camt value provided in the request."
                    },
                    "samt": {
                      "type": "integer",
                      "description": "The samt value provided in the request."
                    },
                    "cess": {
                      "type": "integer",
                      "description": "The cess value provided in the request."
                    },
                    "prev_status": {
                      "type": "string",
                      "description": "The prev status value provided in the request."
                    },
                    "itcRedReq": {
                      "type": "string",
                      "description": "The itc Red Req value provided in the request."
                    },
                    "declIgst": {
                      "type": "integer",
                      "description": "The decl Igst value provided in the request."
                    },
                    "declSgst": {
                      "type": "integer",
                      "description": "The decl Sgst value provided in the request."
                    },
                    "declCgst": {
                      "type": "integer",
                      "description": "The decl Cgst value provided in the request."
                    },
                    "declCess": {
                      "type": "integer",
                      "description": "The decl Cess value provided in the request."
                    },
                    "remarks": {
                      "type": "string",
                      "description": "The remarks value provided in the request."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetInvoicesYearMonthSalesSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Invoices Year Month Sales.",
        "properties": {
          "gstin": {
            "type": "string",
            "description": "Supplier GSTIN",
            "minLength": 15,
            "maxLength": 15
          },
          "rtnprd": {
            "type": "string",
            "description": "Return Period",
            "minLength": 1
          },
          "gstr1": {
            "type": "object",
            "description": "The gstr1 value returned by GSTN.",
            "properties": {
              "b2b": {
                "type": "array",
                "description": "The b2b value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "flag": {
                      "type": "string",
                      "description": "Status of Invoice"
                    },
                    "cfs": {
                      "type": "string",
                      "description": "GSTR2 filing status of counter party"
                    },
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cflag": {
                            "type": "string",
                            "description": "Status of counter party"
                          },
                          "etin": {
                            "type": "string",
                            "description": "Ecom Tin",
                            "minLength": 15,
                            "maxLength": 15
                          },
                          "inum": {
                            "type": "string",
                            "description": "Supplier Invoice Number",
                            "maxLength": 16
                          },
                          "chksum": {
                            "type": "string",
                            "description": "Invoice checksum value",
                            "minLength": 1,
                            "maxLength": 64
                          },
                          "idt": {
                            "type": "string",
                            "description": "Supplier Invoice Date"
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "Invoice Type"
                          },
                          "diff_percent": {
                            "type": "number",
                            "description": "Differential percentage"
                          },
                          "opd": {
                            "type": "string",
                            "description": "Original Period"
                          },
                          "srctyp": {
                            "type": "string",
                            "description": "Source Type of Invoice"
                          },
                          "irn": {
                            "type": "string",
                            "description": "Invoice Referrence Number",
                            "minLength": 64,
                            "maxLength": 64
                          },
                          "irngendate": {
                            "type": "string",
                            "description": "IRN Generated Date",
                            "minLength": 1
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "rt": {
                                      "type": "number",
                                      "description": "rate as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "Serial no"
                                }
                              }
                            }
                          },
                          "pos": {
                            "type": "string",
                            "description": "Actual Place of Supply",
                            "minLength": 2,
                            "maxLength": 2
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "Reverse Charge"
                          },
                          "updby": {
                            "type": "string",
                            "description": "Uploaded by"
                          },
                          "val": {
                            "type": "number",
                            "description": "Supplier Invoice Value"
                          },
                          "imsactn": {
                            "type": "string",
                            "description": "Action taken by the recipient against the invoice",
                            "enum": [
                              "A",
                              "R",
                              "P"
                            ]
                          },
                          "flag": {
                            "type": "string",
                            "description": "The flag value returned by GSTN."
                          },
                          "remarks": {
                            "type": "string",
                            "description": "The remarks value returned by GSTN."
                          }
                        }
                      }
                    }
                  }
                }
              },
              "b2ba": {
                "type": "array",
                "description": "The b2ba value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "flag": {
                      "type": "string",
                      "description": "Status of Invoice"
                    },
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cflag": {
                            "type": "string",
                            "description": "Status of counter party"
                          },
                          "etin": {
                            "type": "string",
                            "description": "Ecom Tin",
                            "minLength": 15,
                            "maxLength": 15
                          },
                          "oinum": {
                            "type": "string",
                            "description": "Original Invoice Number",
                            "maxLength": 16
                          },
                          "oidt": {
                            "type": "string",
                            "description": "Original Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "description": "Supplier Invoice Number",
                            "maxLength": 16
                          },
                          "chksum": {
                            "type": "string",
                            "description": "Invoice checksum value",
                            "minLength": 1,
                            "maxLength": 64
                          },
                          "idt": {
                            "type": "string",
                            "description": "Supplier Invoice Date"
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "Invoice Type"
                          },
                          "diff_percent": {
                            "type": "number",
                            "description": "Differential percentage"
                          },
                          "opd": {
                            "type": "string",
                            "description": "Original Period"
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "rt": {
                                      "type": "number",
                                      "description": "rate as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "Serial no"
                                }
                              }
                            }
                          },
                          "pos": {
                            "type": "string",
                            "description": "Actual Place of Supply",
                            "minLength": 2,
                            "maxLength": 2
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "Reverse Charge"
                          },
                          "updby": {
                            "type": "string",
                            "description": "Uploaded by"
                          },
                          "val": {
                            "type": "number",
                            "description": "Supplier Invoice Value"
                          },
                          "imsactn": {
                            "type": "string",
                            "description": "Action taken by the recipient against the invoice",
                            "enum": [
                              "A",
                              "R",
                              "P"
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              "cdnr": {
                "type": "array",
                "description": "The cdnr value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "nt": {
                      "type": "array",
                      "description": "The nt value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cflag": {
                            "type": "string",
                            "description": "Status of counter party"
                          },
                          "flag": {
                            "type": "string",
                            "description": "Status of Invoice"
                          },
                          "chksum": {
                            "type": "string",
                            "description": "Invoice checksum value",
                            "minLength": 1,
                            "maxLength": 64
                          },
                          "idt": {
                            "type": "string",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "description": "Supplier Invoice Number",
                            "maxLength": 16
                          },
                          "p_gst": {
                            "type": "string",
                            "description": "Pre GST Regime Dr./ Cr. Notes",
                            "enum": [
                              "Y",
                              "N"
                            ],
                            "maxLength": 1
                          },
                          "pos": {
                            "type": "string",
                            "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                            "minLength": 2,
                            "maxLength": 2
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "Reverse Charge",
                            "enum": [
                              "Y",
                              "N"
                            ]
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "tax payer action",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP",
                              "CBW"
                            ]
                          },
                          "d_flag": {
                            "type": "string",
                            "description": "delink flag",
                            "enum": [
                              "Y"
                            ]
                          },
                          "diff_percent": {
                            "type": "number",
                            "description": "Differential percentage"
                          },
                          "opd": {
                            "type": "string",
                            "description": "Original Period"
                          },
                          "srctyp": {
                            "type": "string",
                            "description": "Source Type of Invoice"
                          },
                          "irn": {
                            "type": "string",
                            "description": "Invoice Referrence Number",
                            "minLength": 64,
                            "maxLength": 64
                          },
                          "irngendate": {
                            "type": "string",
                            "description": "IRN Generated Date",
                            "minLength": 1
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "rt": {
                                      "type": "number",
                                      "description": "rate as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "Serial no"
                                }
                              }
                            }
                          },
                          "nt_dt": {
                            "type": "string",
                            "description": "Credit Note/Debit Note/  Refund Voucher date"
                          },
                          "nt_num": {
                            "type": "string",
                            "description": "Credit note/debit note / Refund Voucher Number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "ntty": {
                            "type": "string",
                            "description": "Credit/debit note type/ Refund Voucher",
                            "enum": [
                              "C",
                              "R",
                              "D"
                            ]
                          },
                          "updby": {
                            "type": "string",
                            "description": "Uploaded by"
                          },
                          "val": {
                            "type": "number",
                            "description": "Total Note Value"
                          },
                          "imsactn": {
                            "type": "string",
                            "description": "Action taken by the recipient against the invoice",
                            "enum": [
                              "A",
                              "R",
                              "P"
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              "cdnra": {
                "type": "array",
                "description": "The cdnra value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "nt": {
                      "type": "array",
                      "description": "The nt value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cflag": {
                            "type": "string",
                            "description": "Status of counter party"
                          },
                          "flag": {
                            "type": "string",
                            "description": "Status of Invoice"
                          },
                          "chksum": {
                            "type": "string",
                            "description": "Invoice checksum value",
                            "minLength": 1,
                            "maxLength": 64
                          },
                          "idt": {
                            "type": "string",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "description": "Supplier Invoice Number",
                            "maxLength": 16
                          },
                          "p_gst": {
                            "type": "string",
                            "description": "Pre GST Regime Dr./ Cr. Notes",
                            "enum": [
                              "Y",
                              "N"
                            ],
                            "maxLength": 1
                          },
                          "pos": {
                            "type": "string",
                            "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                            "minLength": 2,
                            "maxLength": 2
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "Reverse Charge",
                            "enum": [
                              "Y",
                              "N"
                            ]
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "tax payer action",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP",
                              "CBW"
                            ]
                          },
                          "d_flag": {
                            "type": "string",
                            "description": "delink flag",
                            "enum": [
                              "Y"
                            ]
                          },
                          "diff_percent": {
                            "type": "number",
                            "description": "Differential percentage"
                          },
                          "opd": {
                            "type": "string",
                            "description": "Original Period"
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "rt": {
                                      "type": "number",
                                      "description": "rate as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "Serial no"
                                }
                              }
                            }
                          },
                          "ont_dt": {
                            "type": "string",
                            "description": "Original Credit Note/Debit Note/  Refund Voucher date"
                          },
                          "ont_num": {
                            "type": "string",
                            "description": "Original Credit note/debit note / Refund Voucher Number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "nt_dt": {
                            "type": "string",
                            "description": "Credit Note/Debit Note/  Refund Voucher date"
                          },
                          "nt_num": {
                            "type": "string",
                            "description": "Credit note/debit note / Refund Voucher Number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "ntty": {
                            "type": "string",
                            "description": "Credit/debit note type/ Refund Voucher",
                            "enum": [
                              "C",
                              "R",
                              "D"
                            ]
                          },
                          "updby": {
                            "type": "string",
                            "description": "Uploaded by"
                          },
                          "val": {
                            "type": "number",
                            "description": "Total Note Value"
                          },
                          "imsactn": {
                            "type": "string",
                            "description": "Action taken by the recipient against the invoice",
                            "enum": [
                              "A",
                              "R",
                              "P"
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              "ecom": {
                "$ref": "#/components/schemas/Gstr1EcomData"
              },
              "ecoma": {
                "$ref": "#/components/schemas/Gstr1EcomaData"
              }
            }
          },
          "gstr1a": {
            "type": "object",
            "description": "The gstr1a value returned by GSTN.",
            "properties": {
              "b2b": {
                "type": "array",
                "description": "The b2b value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "flag": {
                      "type": "string",
                      "description": "Status of Invoice"
                    },
                    "cfs": {
                      "type": "string",
                      "description": "GSTR2 filing status of counter party"
                    },
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cflag": {
                            "type": "string",
                            "description": "Status of counter party"
                          },
                          "etin": {
                            "type": "string",
                            "description": "Ecom Tin",
                            "minLength": 15,
                            "maxLength": 15
                          },
                          "inum": {
                            "type": "string",
                            "description": "Supplier Invoice Number",
                            "maxLength": 16
                          },
                          "chksum": {
                            "type": "string",
                            "description": "Invoice checksum value",
                            "minLength": 1,
                            "maxLength": 64
                          },
                          "idt": {
                            "type": "string",
                            "description": "Supplier Invoice Date"
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "Invoice Type"
                          },
                          "diff_percent": {
                            "type": "number",
                            "description": "Differential percentage"
                          },
                          "opd": {
                            "type": "string",
                            "description": "Original Period"
                          },
                          "srctyp": {
                            "type": "string",
                            "description": "Source Type of Invoice"
                          },
                          "irn": {
                            "type": "string",
                            "description": "Invoice Referrence Number",
                            "minLength": 64,
                            "maxLength": 64
                          },
                          "irngendate": {
                            "type": "string",
                            "description": "IRN Generated Date",
                            "minLength": 1
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "rt": {
                                      "type": "number",
                                      "description": "rate as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "Serial no"
                                }
                              }
                            }
                          },
                          "pos": {
                            "type": "string",
                            "description": "Actual Place of Supply",
                            "minLength": 2,
                            "maxLength": 2
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "Reverse Charge"
                          },
                          "updby": {
                            "type": "string",
                            "description": "Uploaded by"
                          },
                          "val": {
                            "type": "number",
                            "description": "Supplier Invoice Value"
                          },
                          "imsactn": {
                            "type": "string",
                            "description": "Action taken by the recipient against the invoice",
                            "enum": [
                              "A",
                              "R",
                              "P"
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              "b2ba": {
                "type": "array",
                "description": "The b2ba value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "flag": {
                      "type": "string",
                      "description": "Status of Invoice"
                    },
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "inv": {
                      "type": "array",
                      "description": "The inv value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cflag": {
                            "type": "string",
                            "description": "Status of counter party"
                          },
                          "etin": {
                            "type": "string",
                            "description": "Ecom Tin",
                            "minLength": 15,
                            "maxLength": 15
                          },
                          "oinum": {
                            "type": "string",
                            "description": "Original Invoice Number",
                            "maxLength": 16
                          },
                          "oidt": {
                            "type": "string",
                            "description": "Original Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "description": "Supplier Invoice Number",
                            "maxLength": 16
                          },
                          "chksum": {
                            "type": "string",
                            "description": "Invoice checksum value",
                            "minLength": 1,
                            "maxLength": 64
                          },
                          "idt": {
                            "type": "string",
                            "description": "Supplier Invoice Date"
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "Invoice Type"
                          },
                          "diff_percent": {
                            "type": "number",
                            "description": "Differential percentage"
                          },
                          "opd": {
                            "type": "string",
                            "description": "Original Period"
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "rt": {
                                      "type": "number",
                                      "description": "rate as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "Serial no"
                                }
                              }
                            }
                          },
                          "pos": {
                            "type": "string",
                            "description": "Actual Place of Supply",
                            "minLength": 2,
                            "maxLength": 2
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "Reverse Charge"
                          },
                          "updby": {
                            "type": "string",
                            "description": "Uploaded by"
                          },
                          "val": {
                            "type": "number",
                            "description": "Supplier Invoice Value"
                          },
                          "imsactn": {
                            "type": "string",
                            "description": "Action taken by the recipient against the invoice",
                            "enum": [
                              "A",
                              "R",
                              "P"
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              "cdnr": {
                "type": "array",
                "description": "The cdnr value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "nt": {
                      "type": "array",
                      "description": "The nt value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cflag": {
                            "type": "string",
                            "description": "Status of counter party"
                          },
                          "flag": {
                            "type": "string",
                            "description": "Status of Invoice"
                          },
                          "chksum": {
                            "type": "string",
                            "description": "Invoice checksum value",
                            "minLength": 1,
                            "maxLength": 64
                          },
                          "idt": {
                            "type": "string",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "description": "Supplier Invoice Number",
                            "maxLength": 16
                          },
                          "p_gst": {
                            "type": "string",
                            "description": "Pre GST Regime Dr./ Cr. Notes",
                            "enum": [
                              "Y",
                              "N"
                            ],
                            "maxLength": 1
                          },
                          "pos": {
                            "type": "string",
                            "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                            "minLength": 2,
                            "maxLength": 2
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "Reverse Charge",
                            "enum": [
                              "Y",
                              "N"
                            ]
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "tax payer action",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP",
                              "CBW"
                            ]
                          },
                          "d_flag": {
                            "type": "string",
                            "description": "delink flag",
                            "enum": [
                              "Y"
                            ]
                          },
                          "diff_percent": {
                            "type": "number",
                            "description": "Differential percentage"
                          },
                          "opd": {
                            "type": "string",
                            "description": "Original Period"
                          },
                          "srctyp": {
                            "type": "string",
                            "description": "Source Type of Invoice"
                          },
                          "irn": {
                            "type": "string",
                            "description": "Invoice Referrence Number",
                            "minLength": 64,
                            "maxLength": 64
                          },
                          "irngendate": {
                            "type": "string",
                            "description": "IRN Generated Date",
                            "minLength": 1
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "rt": {
                                      "type": "number",
                                      "description": "rate as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "Serial no"
                                }
                              }
                            }
                          },
                          "nt_dt": {
                            "type": "string",
                            "description": "Credit Note/Debit Note/  Refund Voucher date"
                          },
                          "nt_num": {
                            "type": "string",
                            "description": "Credit note/debit note / Refund Voucher Number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "ntty": {
                            "type": "string",
                            "description": "Credit/debit note type/ Refund Voucher",
                            "enum": [
                              "C",
                              "R",
                              "D"
                            ]
                          },
                          "updby": {
                            "type": "string",
                            "description": "Uploaded by"
                          },
                          "val": {
                            "type": "number",
                            "description": "Total Note Value"
                          },
                          "imsactn": {
                            "type": "string",
                            "description": "Action taken by the recipient against the invoice",
                            "enum": [
                              "A",
                              "R",
                              "P"
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              "cdnra": {
                "type": "array",
                "description": "The cdnra value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ctin": {
                      "type": "string",
                      "description": "GSTIN/UID of the Receiver taxpayer/UN,Govt Bodies",
                      "minLength": 15,
                      "maxLength": 15
                    },
                    "nt": {
                      "type": "array",
                      "description": "The nt value returned by GSTN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cflag": {
                            "type": "string",
                            "description": "Status of counter party"
                          },
                          "flag": {
                            "type": "string",
                            "description": "Status of Invoice"
                          },
                          "chksum": {
                            "type": "string",
                            "description": "Invoice checksum value",
                            "minLength": 1,
                            "maxLength": 64
                          },
                          "idt": {
                            "type": "string",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "description": "Supplier Invoice Number",
                            "maxLength": 16
                          },
                          "p_gst": {
                            "type": "string",
                            "description": "Pre GST Regime Dr./ Cr. Notes",
                            "enum": [
                              "Y",
                              "N"
                            ],
                            "maxLength": 1
                          },
                          "pos": {
                            "type": "string",
                            "description": "Maintained in GST System common database POS as provided in law / actual provision of service.",
                            "minLength": 2,
                            "maxLength": 2
                          },
                          "rchrg": {
                            "type": "string",
                            "description": "Reverse Charge",
                            "enum": [
                              "Y",
                              "N"
                            ]
                          },
                          "inv_typ": {
                            "type": "string",
                            "description": "tax payer action",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP",
                              "CBW"
                            ]
                          },
                          "d_flag": {
                            "type": "string",
                            "description": "delink flag",
                            "enum": [
                              "Y"
                            ]
                          },
                          "diff_percent": {
                            "type": "number",
                            "description": "Differential percentage"
                          },
                          "opd": {
                            "type": "string",
                            "description": "Original Period"
                          },
                          "itms": {
                            "type": "array",
                            "description": "The itms value returned by GSTN.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "itm_det": {
                                  "type": "object",
                                  "description": "The itm det value returned by GSTN.",
                                  "properties": {
                                    "rt": {
                                      "type": "number",
                                      "description": "rate as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "txval": {
                                      "type": "number",
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    }
                                  }
                                },
                                "num": {
                                  "type": "number",
                                  "description": "Serial no"
                                }
                              }
                            }
                          },
                          "ont_dt": {
                            "type": "string",
                            "description": "Original Credit Note/Debit Note/  Refund Voucher date"
                          },
                          "ont_num": {
                            "type": "string",
                            "description": "Original Credit note/debit note / Refund Voucher Number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "nt_dt": {
                            "type": "string",
                            "description": "Credit Note/Debit Note/  Refund Voucher date"
                          },
                          "nt_num": {
                            "type": "string",
                            "description": "Credit note/debit note / Refund Voucher Number",
                            "minLength": 1,
                            "maxLength": 16
                          },
                          "ntty": {
                            "type": "string",
                            "description": "Credit/debit note type/ Refund Voucher",
                            "enum": [
                              "C",
                              "R",
                              "D"
                            ]
                          },
                          "updby": {
                            "type": "string",
                            "description": "Uploaded by"
                          },
                          "val": {
                            "type": "number",
                            "description": "Total Note Value"
                          },
                          "imsactn": {
                            "type": "string",
                            "description": "Action taken by the recipient against the invoice",
                            "enum": [
                              "A",
                              "R",
                              "P"
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              "ecom": {
                "$ref": "#/components/schemas/Gstr1aEcomData"
              },
              "ecoma": {
                "$ref": "#/components/schemas/Gstr1aEcomaData"
              }
            }
          }
        }
      },
      "GetInvoicesYearMonthSalesSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetInvoicesYearMonthSalesSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetInvoicesYearMonthSalesResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetInvoicesYearMonthSalesSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetCashItcBalanceSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Cash Itc Balance.",
        "properties": {
          "cash_bal": {
            "type": "object",
            "description": "The cash bal value returned by GSTN.",
            "properties": {
              "cess": {
                "type": "object",
                "description": "The cess value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN."
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN."
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN."
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN."
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN."
                  }
                }
              },
              "cess_tot_bal": {
                "type": "number",
                "description": "The cess tot bal value returned by GSTN."
              },
              "cgst": {
                "type": "object",
                "description": "The cgst value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN."
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN."
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN."
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN."
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN."
                  }
                }
              },
              "cgst_tot_bal": {
                "type": "number",
                "description": "The cgst tot bal value returned by GSTN."
              },
              "igst": {
                "type": "object",
                "description": "The igst value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN."
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN."
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN."
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN."
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN."
                  }
                }
              },
              "igst_tot_bal": {
                "type": "number",
                "description": "The igst tot bal value returned by GSTN."
              },
              "sgst": {
                "type": "object",
                "description": "The sgst value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN."
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN."
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN."
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN."
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN."
                  }
                }
              },
              "sgst_tot_bal": {
                "type": "number",
                "description": "The sgst tot bal value returned by GSTN."
              }
            }
          },
          "gstin": {
            "type": "string",
            "description": "The gstin value returned by GSTN."
          },
          "itc_bal": {
            "type": "object",
            "description": "The itc bal value returned by GSTN.",
            "properties": {
              "cess_bal": {
                "type": "number",
                "description": "The cess bal value returned by GSTN."
              },
              "cgst_bal": {
                "type": "number",
                "description": "The cgst bal value returned by GSTN."
              },
              "igst_bal": {
                "type": "number",
                "description": "The igst bal value returned by GSTN."
              },
              "sgst_bal": {
                "type": "number",
                "description": "The sgst bal value returned by GSTN."
              }
            }
          },
          "itc_blck_bal": {
            "type": "object",
            "description": "The itc blck bal value returned by GSTN.",
            "properties": {
              "cess_blck_bal": {
                "type": "number",
                "description": "The cess blck bal value returned by GSTN."
              },
              "cgst_blck_bal": {
                "type": "number",
                "description": "The cgst blck bal value returned by GSTN."
              },
              "igst_blck_bal": {
                "type": "number",
                "description": "The igst blck bal value returned by GSTN."
              },
              "sgst_blck_bal": {
                "type": "number",
                "description": "The sgst blck bal value returned by GSTN."
              }
            }
          }
        }
      },
      "GetCashItcBalanceSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetCashItcBalanceSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetCashItcBalanceResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetCashItcBalanceSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetCashLedgerSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Cash Ledger.",
        "properties": {
          "gstin": {
            "description": "GSTIN",
            "minLength": 15,
            "maxLength": 15,
            "type": "string"
          },
          "fr_dt": {
            "description": "from date",
            "type": "string"
          },
          "to_dt": {
            "description": "to date",
            "type": "string"
          },
          "op_bal": {
            "type": "object",
            "description": "Opening Balance",
            "properties": {
              "desc": {
                "type": "string",
                "description": "description about opening balance"
              },
              "tot_rng_bal": {
                "description": "total opening balance",
                "type": "number"
              },
              "igst": {
                "type": "object",
                "description": "IGST",
                "properties": {
                  "tx": {
                    "description": "tax balance",
                    "type": "number"
                  },
                  "intr": {
                    "description": "interest balance",
                    "type": "number"
                  },
                  "pen": {
                    "description": "penalty balance",
                    "type": "number"
                  },
                  "oth": {
                    "description": "others balance",
                    "type": "number"
                  },
                  "fee": {
                    "description": "fee balance",
                    "type": "number"
                  },
                  "tot": {
                    "description": "total igst balance",
                    "type": "number"
                  }
                }
              },
              "cgst": {
                "type": "object",
                "description": "CGST",
                "properties": {
                  "tx": {
                    "description": "tax balance",
                    "type": "number"
                  },
                  "intr": {
                    "description": "interest balance",
                    "type": "number"
                  },
                  "pen": {
                    "description": "penalty balance",
                    "type": "number"
                  },
                  "oth": {
                    "description": "others balance",
                    "type": "number"
                  },
                  "fee": {
                    "description": "fee balance",
                    "type": "number"
                  },
                  "tot": {
                    "description": "total cgst balance",
                    "type": "number"
                  }
                }
              },
              "sgst": {
                "type": "object",
                "description": "SGST",
                "properties": {
                  "tx": {
                    "description": "tax balance",
                    "type": "number"
                  },
                  "intr": {
                    "description": "interest balance",
                    "type": "number"
                  },
                  "pen": {
                    "description": "penalty balance",
                    "type": "number"
                  },
                  "oth": {
                    "description": "others balance",
                    "type": "number"
                  },
                  "fee": {
                    "description": "fee balance",
                    "type": "number"
                  },
                  "tot": {
                    "description": "total sgst balance",
                    "type": "number"
                  }
                }
              },
              "cess": {
                "type": "object",
                "description": "CESS",
                "properties": {
                  "tx": {
                    "description": "tax balance",
                    "type": "number"
                  },
                  "intr": {
                    "description": "interest balance",
                    "type": "number"
                  },
                  "pen": {
                    "description": "penalty balance",
                    "type": "number"
                  },
                  "oth": {
                    "description": "others balance",
                    "type": "number"
                  },
                  "fee": {
                    "description": "fee balance",
                    "type": "number"
                  },
                  "tot": {
                    "description": "total cess balance",
                    "type": "number"
                  }
                }
              },
              "cessbal": {
                "type": "object",
                "description": "The cessbal value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN.",
                    "example": 0
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN.",
                    "example": 0
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN.",
                    "example": 0
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN.",
                    "example": 0
                  },
                  "tot": {
                    "type": "number",
                    "description": "The tot value returned by GSTN.",
                    "example": 0
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "cgstbal": {
                "type": "object",
                "description": "The cgstbal value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN.",
                    "example": 0
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN.",
                    "example": 0
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN.",
                    "example": 0
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN.",
                    "example": 0
                  },
                  "tot": {
                    "type": "number",
                    "description": "The tot value returned by GSTN.",
                    "example": 0
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "igstbal": {
                "type": "object",
                "description": "The igstbal value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN.",
                    "example": 0
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN.",
                    "example": 0
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN.",
                    "example": 0
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN.",
                    "example": 0
                  },
                  "tot": {
                    "type": "number",
                    "description": "The tot value returned by GSTN.",
                    "example": 0
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "sgstbal": {
                "type": "object",
                "description": "The sgstbal value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN.",
                    "example": 0
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN.",
                    "example": 0
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN.",
                    "example": 0
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN.",
                    "example": 0
                  },
                  "tot": {
                    "type": "number",
                    "description": "The tot value returned by GSTN.",
                    "example": 0
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN.",
                    "example": 0
                  }
                }
              }
            }
          },
          "tr": {
            "type": "array",
            "description": "The tr value returned by GSTN.",
            "items": {
              "type": "object",
              "description": "A GSTN record whose fields vary by return section.",
              "properties": {
                "dpt_dt": {
                  "description": "deposited date",
                  "type": "string"
                },
                "rpt_dt": {
                  "description": "reporting date",
                  "type": "string"
                },
                "desc": {
                  "type": "string",
                  "description": "Transaction description"
                },
                "dpt_time": {
                  "type": "string",
                  "description": "deposit time stamp"
                },
                "ref_no": {
                  "type": "string",
                  "description": "Reference number"
                },
                "tot_tr_amt": {
                  "type": "number",
                  "description": "total Transaction amount"
                },
                "tot_rng_bal": {
                  "type": "number",
                  "description": "total transaction  balance"
                },
                "ret_period": {
                  "type": "string",
                  "description": "Return Period"
                },
                "tr_typ": {
                  "type": "string",
                  "description": "Transaction Type to specify credit or debit"
                },
                "igst": {
                  "type": "object",
                  "description": "IGST",
                  "properties": {
                    "tx": {
                      "description": "tax",
                      "type": "number"
                    },
                    "intr": {
                      "description": "interest",
                      "type": "number"
                    },
                    "pen": {
                      "description": "penalty",
                      "type": "number"
                    },
                    "oth": {
                      "description": "others",
                      "type": "number"
                    },
                    "fee": {
                      "description": "fee",
                      "type": "number"
                    },
                    "tot": {
                      "description": "total",
                      "type": "number"
                    }
                  }
                },
                "cgst": {
                  "type": "object",
                  "description": "CGST",
                  "properties": {
                    "tx": {
                      "description": "tax",
                      "type": "number"
                    },
                    "intr": {
                      "description": "interest",
                      "type": "number"
                    },
                    "pen": {
                      "description": "penalty",
                      "type": "number"
                    },
                    "oth": {
                      "description": "others",
                      "type": "number"
                    },
                    "fee": {
                      "description": "fee",
                      "type": "number"
                    },
                    "tot": {
                      "description": "total",
                      "type": "number"
                    }
                  }
                },
                "sgst": {
                  "type": "object",
                  "description": "SGST",
                  "properties": {
                    "tx": {
                      "description": "tax",
                      "type": "number"
                    },
                    "intr": {
                      "description": "interest",
                      "type": "number"
                    },
                    "pen": {
                      "description": "penalty",
                      "type": "number"
                    },
                    "oth": {
                      "description": "others",
                      "type": "number"
                    },
                    "fee": {
                      "description": "fee",
                      "type": "number"
                    },
                    "tot": {
                      "description": "total",
                      "type": "number"
                    }
                  }
                },
                "cess": {
                  "type": "object",
                  "description": "CESS",
                  "properties": {
                    "tx": {
                      "description": "tax",
                      "type": "number"
                    },
                    "intr": {
                      "description": "interest",
                      "type": "number"
                    },
                    "pen": {
                      "description": "penalty",
                      "type": "number"
                    },
                    "oth": {
                      "description": "others",
                      "type": "number"
                    },
                    "fee": {
                      "description": "fee",
                      "type": "number"
                    },
                    "tot": {
                      "description": "total",
                      "type": "number"
                    }
                  }
                },
                "igstbal": {
                  "type": "object",
                  "description": "IGST",
                  "properties": {
                    "tx": {
                      "description": "tax",
                      "type": "number"
                    },
                    "intr": {
                      "description": "interest",
                      "type": "number"
                    },
                    "pen": {
                      "description": "penalty",
                      "type": "number"
                    },
                    "oth": {
                      "description": "others",
                      "type": "number"
                    },
                    "fee": {
                      "description": "fee",
                      "type": "number"
                    },
                    "tot": {
                      "description": "total",
                      "type": "number"
                    }
                  }
                },
                "cgstbal": {
                  "type": "object",
                  "description": "CGST",
                  "properties": {
                    "tx": {
                      "description": "tax",
                      "type": "number"
                    },
                    "intr": {
                      "description": "interest",
                      "type": "number"
                    },
                    "pen": {
                      "description": "penalty",
                      "type": "number"
                    },
                    "oth": {
                      "description": "others",
                      "type": "number"
                    },
                    "fee": {
                      "description": "fee",
                      "type": "number"
                    },
                    "tot": {
                      "description": "total",
                      "type": "number"
                    }
                  }
                },
                "sgstbal": {
                  "type": "object",
                  "description": "SGST",
                  "properties": {
                    "tx": {
                      "description": "tax",
                      "type": "number"
                    },
                    "intr": {
                      "description": "interest",
                      "type": "number"
                    },
                    "pen": {
                      "description": "penalty",
                      "type": "number"
                    },
                    "oth": {
                      "description": "others",
                      "type": "number"
                    },
                    "fee": {
                      "description": "fee",
                      "type": "number"
                    },
                    "tot": {
                      "description": "total",
                      "type": "number"
                    }
                  }
                },
                "cessbal": {
                  "type": "object",
                  "description": "CESS",
                  "properties": {
                    "tx": {
                      "description": "tax",
                      "type": "number"
                    },
                    "intr": {
                      "description": "interest",
                      "type": "number"
                    },
                    "pen": {
                      "description": "penalty",
                      "type": "number"
                    },
                    "oth": {
                      "description": "others",
                      "type": "number"
                    },
                    "fee": {
                      "description": "fee",
                      "type": "number"
                    },
                    "tot": {
                      "description": "total",
                      "type": "number"
                    }
                  }
                }
              }
            }
          },
          "cl_bal": {
            "type": "object",
            "description": "Closing Balance",
            "properties": {
              "desc": {
                "type": "string",
                "description": "description about Closing balance"
              },
              "tot_rng_bal": {
                "description": "total closing balance",
                "type": "number"
              },
              "igst": {
                "type": "object",
                "description": "IGST",
                "properties": {
                  "tx": {
                    "description": "tax balance",
                    "type": "number"
                  },
                  "intr": {
                    "description": "interest balance",
                    "type": "number"
                  },
                  "pen": {
                    "description": "penalty balance",
                    "type": "number"
                  },
                  "oth": {
                    "description": "others balance",
                    "type": "number"
                  },
                  "fee": {
                    "description": "fee balance",
                    "type": "number"
                  },
                  "tot": {
                    "description": "total igst balance",
                    "type": "number"
                  }
                }
              },
              "cgst": {
                "type": "object",
                "description": "CGST",
                "properties": {
                  "tx": {
                    "description": "tax balance",
                    "type": "number"
                  },
                  "intr": {
                    "description": "interest balance",
                    "type": "number"
                  },
                  "pen": {
                    "description": "penalty balance",
                    "type": "number"
                  },
                  "oth": {
                    "description": "others balance",
                    "type": "number"
                  },
                  "fee": {
                    "description": "fee balance",
                    "type": "number"
                  },
                  "tot": {
                    "description": "total cgst balance",
                    "type": "number"
                  }
                }
              },
              "sgst": {
                "type": "object",
                "description": "SGST",
                "properties": {
                  "tx": {
                    "description": "tax balance",
                    "type": "number"
                  },
                  "intr": {
                    "description": "interest balance",
                    "type": "number"
                  },
                  "pen": {
                    "description": "penalty balance",
                    "type": "number"
                  },
                  "oth": {
                    "description": "others balance",
                    "type": "number"
                  },
                  "fee": {
                    "description": "fee balance",
                    "type": "number"
                  },
                  "tot": {
                    "description": "total sgst balance",
                    "type": "number"
                  }
                }
              },
              "cess": {
                "type": "object",
                "description": "CESS",
                "properties": {
                  "tx": {
                    "description": "tax balance",
                    "type": "number"
                  },
                  "intr": {
                    "description": "interest balance",
                    "type": "number"
                  },
                  "pen": {
                    "description": "penalty balance",
                    "type": "number"
                  },
                  "oth": {
                    "description": "others balance",
                    "type": "number"
                  },
                  "fee": {
                    "description": "fee balance",
                    "type": "number"
                  },
                  "tot": {
                    "description": "total cess balance",
                    "type": "number"
                  }
                }
              },
              "cessbal": {
                "type": "object",
                "description": "The cessbal value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN.",
                    "example": 0
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN.",
                    "example": 0
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN.",
                    "example": 0
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN.",
                    "example": 0
                  },
                  "tot": {
                    "type": "number",
                    "description": "The tot value returned by GSTN.",
                    "example": 0
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "cgstbal": {
                "type": "object",
                "description": "The cgstbal value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN.",
                    "example": 0
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN.",
                    "example": 0
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN.",
                    "example": 0
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN.",
                    "example": 0
                  },
                  "tot": {
                    "type": "number",
                    "description": "The tot value returned by GSTN.",
                    "example": 0
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "igstbal": {
                "type": "object",
                "description": "The igstbal value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN.",
                    "example": 0
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN.",
                    "example": 0
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN.",
                    "example": 0
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN.",
                    "example": 0
                  },
                  "tot": {
                    "type": "number",
                    "description": "The tot value returned by GSTN.",
                    "example": 0
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN.",
                    "example": 0
                  }
                }
              },
              "sgstbal": {
                "type": "object",
                "description": "The sgstbal value returned by GSTN.",
                "properties": {
                  "fee": {
                    "type": "number",
                    "description": "The fee value returned by GSTN.",
                    "example": 0
                  },
                  "intr": {
                    "type": "number",
                    "description": "The intr value returned by GSTN.",
                    "example": 0
                  },
                  "oth": {
                    "type": "number",
                    "description": "The oth value returned by GSTN.",
                    "example": 0
                  },
                  "pen": {
                    "type": "number",
                    "description": "The pen value returned by GSTN.",
                    "example": 0
                  },
                  "tot": {
                    "type": "number",
                    "description": "The tot value returned by GSTN.",
                    "example": 0
                  },
                  "tx": {
                    "type": "number",
                    "description": "The tx value returned by GSTN.",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      },
      "GetCashLedgerSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetCashLedgerSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetCashLedgerResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetCashLedgerSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetItcLedgerSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Itc Ledger.",
        "properties": {
          "itcLdgDtls": {
            "type": "object",
            "description": "The itc Ldg Dtls value returned by GSTN.",
            "properties": {
              "cl_bal": {
                "type": "object",
                "description": "The cl bal value returned by GSTN.",
                "properties": {
                  "tot_rng_bal": {
                    "type": "number",
                    "description": "The tot rng bal value returned by GSTN."
                  },
                  "cessTaxBal": {
                    "type": "number",
                    "description": "The cess Tax Bal value returned by GSTN."
                  },
                  "cgstTaxBal": {
                    "type": "number",
                    "description": "The cgst Tax Bal value returned by GSTN."
                  },
                  "desc": {
                    "type": "string",
                    "description": "The desc value returned by GSTN."
                  },
                  "igstTaxBal": {
                    "type": "number",
                    "description": "The igst Tax Bal value returned by GSTN."
                  },
                  "sgstTaxBal": {
                    "type": "number",
                    "description": "The sgst Tax Bal value returned by GSTN."
                  }
                }
              },
              "fr_dt": {
                "type": "string",
                "description": "The fr dt value returned by GSTN."
              },
              "gstin": {
                "type": "string",
                "description": "The gstin value returned by GSTN."
              },
              "op_bal": {
                "type": "object",
                "description": "The op bal value returned by GSTN.",
                "properties": {
                  "tot_rng_bal": {
                    "type": "number",
                    "description": "The tot rng bal value returned by GSTN."
                  },
                  "cessTaxBal": {
                    "type": "number",
                    "description": "The cess Tax Bal value returned by GSTN."
                  },
                  "cgstTaxBal": {
                    "type": "number",
                    "description": "The cgst Tax Bal value returned by GSTN."
                  },
                  "desc": {
                    "type": "string",
                    "description": "The desc value returned by GSTN."
                  },
                  "igstTaxBal": {
                    "type": "number",
                    "description": "The igst Tax Bal value returned by GSTN."
                  },
                  "sgstTaxBal": {
                    "type": "number",
                    "description": "The sgst Tax Bal value returned by GSTN."
                  }
                }
              },
              "to_dt": {
                "type": "string",
                "description": "The to dt value returned by GSTN."
              },
              "tr": {
                "type": "array",
                "description": "The tr value returned by GSTN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "tot_tr_amt": {
                      "type": "number",
                      "description": "The tot tr amt value returned by GSTN."
                    },
                    "tot_rng_bal": {
                      "type": "number",
                      "description": "The tot rng bal value returned by GSTN."
                    },
                    "cessTaxAmt": {
                      "type": "number",
                      "description": "The cess Tax Amt value returned by GSTN."
                    },
                    "cessTaxBal": {
                      "type": "number",
                      "description": "The cess Tax Bal value returned by GSTN."
                    },
                    "cgstTaxAmt": {
                      "type": "number",
                      "description": "The cgst Tax Amt value returned by GSTN."
                    },
                    "cgstTaxBal": {
                      "type": "number",
                      "description": "The cgst Tax Bal value returned by GSTN."
                    },
                    "desc": {
                      "type": "string",
                      "description": "The desc value returned by GSTN."
                    },
                    "dt": {
                      "type": "string",
                      "description": "The dt value returned by GSTN."
                    },
                    "igstTaxAmt": {
                      "type": "number",
                      "description": "The igst Tax Amt value returned by GSTN."
                    },
                    "igstTaxBal": {
                      "type": "number",
                      "description": "The igst Tax Bal value returned by GSTN."
                    },
                    "ref_no": {
                      "type": "string",
                      "description": "The ref no value returned by GSTN."
                    },
                    "sgstTaxAmt": {
                      "type": "number",
                      "description": "The sgst Tax Amt value returned by GSTN."
                    },
                    "sgstTaxBal": {
                      "type": "number",
                      "description": "The sgst Tax Bal value returned by GSTN."
                    },
                    "ret_period": {
                      "type": "string",
                      "description": "The ret period value returned by GSTN."
                    },
                    "tr_typ": {
                      "type": "string",
                      "description": "The tr typ value returned by GSTN."
                    },
                    "taxOffDesg": {
                      "type": "string",
                      "description": "The tax Off Desg value returned by GSTN."
                    },
                    "taxOffNam": {
                      "type": "string",
                      "description": "The tax Off Nam value returned by GSTN."
                    },
                    "taxOffJursd": {
                      "type": "string",
                      "description": "The tax Off Jursd value returned by GSTN."
                    },
                    "taxOffAdmn": {
                      "type": "string",
                      "description": "The tax Off Admn value returned by GSTN."
                    }
                  }
                }
              }
            }
          },
          "provCrdBalList": {
            "type": "object",
            "description": "The prov Crd Bal List value returned by GSTN.",
            "properties": {
              "provCrdBal": {
                "type": "array",
                "description": "The prov Crd Bal value returned by GSTN.",
                "items": {
                  "type": "object",
                  "description": "A GSTN record whose fields vary by return section.",
                  "properties": {
                    "cessProCrBal": {
                      "type": "number",
                      "description": "The cess Pro Cr Bal value returned by GSTN."
                    },
                    "cgstProCrBal": {
                      "type": "number",
                      "description": "The cgst Pro Cr Bal value returned by GSTN."
                    },
                    "igstProCrBal": {
                      "type": "number",
                      "description": "The igst Pro Cr Bal value returned by GSTN."
                    },
                    "ret_period": {
                      "type": "string",
                      "description": "The ret period value returned by GSTN."
                    },
                    "sgstProCrBal": {
                      "type": "number",
                      "description": "The sgst Pro Cr Bal value returned by GSTN."
                    },
                    "totProCrBal": {
                      "type": "number",
                      "description": "The tot Pro Cr Bal value returned by GSTN."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "GetItcLedgerSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetItcLedgerSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetItcLedgerResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetItcLedgerSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetReturnLiabilityLedgerSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Return Liability Ledger.",
        "properties": {
          "cl_bal": {
            "type": "object",
            "description": "The cl bal value returned by GSTN.",
            "properties": {
              "tot_rng_bal": {
                "type": "number",
                "description": "total Closing  Balance"
              },
              "cessbal": {
                "type": "object",
                "description": "The cessbal value returned by GSTN.",
                "properties": {
                  "tx": {
                    "type": "number",
                    "description": "Tax Balance"
                  },
                  "intr": {
                    "type": "number",
                    "description": "interest Balance"
                  },
                  "pen": {
                    "type": "number",
                    "description": "penalty Balance"
                  },
                  "oth": {
                    "type": "number",
                    "description": "others Balance"
                  },
                  "fee": {
                    "type": "number",
                    "description": "fees Balance"
                  },
                  "tot": {
                    "type": "number",
                    "description": "total Balance"
                  }
                }
              },
              "cgstbal": {
                "type": "object",
                "description": "The cgstbal value returned by GSTN.",
                "properties": {
                  "tx": {
                    "type": "number",
                    "description": "Tax Balance"
                  },
                  "intr": {
                    "type": "number",
                    "description": "interest Balance"
                  },
                  "pen": {
                    "type": "number",
                    "description": "penalty Balance"
                  },
                  "oth": {
                    "type": "number",
                    "description": "others Balance"
                  },
                  "fee": {
                    "type": "number",
                    "description": "fees Balance"
                  },
                  "tot": {
                    "type": "number",
                    "description": "total Balance"
                  }
                }
              },
              "desc": {
                "type": "string",
                "description": "closing balance"
              },
              "igstbal": {
                "type": "object",
                "description": "The igstbal value returned by GSTN.",
                "properties": {
                  "tx": {
                    "type": "number",
                    "description": "Tax Balance"
                  },
                  "intr": {
                    "type": "number",
                    "description": "interest Balance"
                  },
                  "pen": {
                    "type": "number",
                    "description": "penalty Balance"
                  },
                  "oth": {
                    "type": "number",
                    "description": "others Balance"
                  },
                  "fee": {
                    "type": "number",
                    "description": "fees Balance"
                  },
                  "tot": {
                    "type": "number",
                    "description": "total Balance"
                  }
                }
              },
              "sgstbal": {
                "type": "object",
                "description": "The sgstbal value returned by GSTN.",
                "properties": {
                  "tx": {
                    "type": "number",
                    "description": "Tax Balance"
                  },
                  "intr": {
                    "type": "number",
                    "description": "interest Balance"
                  },
                  "pen": {
                    "type": "number",
                    "description": "penalty Balance"
                  },
                  "oth": {
                    "type": "number",
                    "description": "others Balance"
                  },
                  "fee": {
                    "type": "number",
                    "description": "fees Balance"
                  },
                  "tot": {
                    "type": "number",
                    "description": "total Balance"
                  }
                }
              }
            }
          },
          "gstin": {
            "type": "string",
            "description": "GSTIN",
            "minLength": 15,
            "maxLength": 15
          },
          "fr_dt": {
            "type": "string",
            "description": "fr_dt"
          },
          "to_dt": {
            "type": "string",
            "description": "to_dt"
          },
          "tr": {
            "type": "array",
            "description": "The tr value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "tot_tr_amt": {
                  "type": "number",
                  "description": "total transaction amount"
                },
                "tot_rng_bal": {
                  "type": "number",
                  "description": "total transaction Running  balance"
                },
                "cess": {
                  "type": "object",
                  "description": "The cess value returned by GSTN.",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax Balance"
                    },
                    "intr": {
                      "type": "number",
                      "description": "interest Balance"
                    },
                    "pen": {
                      "type": "number",
                      "description": "penalty Balance"
                    },
                    "oth": {
                      "type": "number",
                      "description": "others Balance"
                    },
                    "fee": {
                      "type": "number",
                      "description": "fees Balance"
                    },
                    "tot": {
                      "type": "number",
                      "description": "total Balance"
                    }
                  }
                },
                "cessbal": {
                  "type": "object",
                  "description": "The cessbal value returned by GSTN.",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax Balance"
                    },
                    "intr": {
                      "type": "number",
                      "description": "interest Balance"
                    },
                    "pen": {
                      "type": "number",
                      "description": "penalty Balance"
                    },
                    "oth": {
                      "type": "number",
                      "description": "others Balance"
                    },
                    "fee": {
                      "type": "number",
                      "description": "fees Balance"
                    },
                    "tot": {
                      "type": "number",
                      "description": "total Balance"
                    }
                  }
                },
                "cgst": {
                  "type": "object",
                  "description": "The cgst value returned by GSTN.",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax Balance"
                    },
                    "intr": {
                      "type": "number",
                      "description": "interest Balance"
                    },
                    "pen": {
                      "type": "number",
                      "description": "penalty Balance"
                    },
                    "oth": {
                      "type": "number",
                      "description": "others Balance"
                    },
                    "fee": {
                      "type": "number",
                      "description": "fees Balance"
                    },
                    "tot": {
                      "type": "number",
                      "description": "total Balance"
                    }
                  }
                },
                "cgstbal": {
                  "type": "object",
                  "description": "The cgstbal value returned by GSTN.",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax Balance"
                    },
                    "intr": {
                      "type": "number",
                      "description": "interest Balance"
                    },
                    "pen": {
                      "type": "number",
                      "description": "penalty Balance"
                    },
                    "oth": {
                      "type": "number",
                      "description": "others Balance"
                    },
                    "fee": {
                      "type": "number",
                      "description": "fees Balance"
                    },
                    "tot": {
                      "type": "number",
                      "description": "total Balance"
                    }
                  }
                },
                "desc": {
                  "type": "string",
                  "description": "Desciption about transaction"
                },
                "dt": {
                  "type": "string",
                  "description": "Transaction date"
                },
                "igst": {
                  "type": "object",
                  "description": "The igst value returned by GSTN.",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax Balance"
                    },
                    "intr": {
                      "type": "number",
                      "description": "interest Balance"
                    },
                    "pen": {
                      "type": "number",
                      "description": "penalty Balance"
                    },
                    "oth": {
                      "type": "number",
                      "description": "others Balance"
                    },
                    "fee": {
                      "type": "number",
                      "description": "fees Balance"
                    },
                    "tot": {
                      "type": "number",
                      "description": "total Balance"
                    }
                  }
                },
                "igstbal": {
                  "type": "object",
                  "description": "The igstbal value returned by GSTN.",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax Balance"
                    },
                    "intr": {
                      "type": "number",
                      "description": "interest Balance"
                    },
                    "pen": {
                      "type": "number",
                      "description": "penalty Balance"
                    },
                    "oth": {
                      "type": "number",
                      "description": "others Balance"
                    },
                    "fee": {
                      "type": "number",
                      "description": "fees Balance"
                    },
                    "tot": {
                      "type": "number",
                      "description": "total Balance"
                    }
                  }
                },
                "ref_no": {
                  "type": "string",
                  "description": "Reference number"
                },
                "sgst": {
                  "type": "object",
                  "description": "The sgst value returned by GSTN.",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax Balance"
                    },
                    "intr": {
                      "type": "number",
                      "description": "interest Balance"
                    },
                    "pen": {
                      "type": "number",
                      "description": "penalty Balance"
                    },
                    "oth": {
                      "type": "number",
                      "description": "others Balance"
                    },
                    "fee": {
                      "type": "number",
                      "description": "fees Balance"
                    },
                    "tot": {
                      "type": "number",
                      "description": "total Balance"
                    }
                  }
                },
                "sgstbal": {
                  "type": "object",
                  "description": "The sgstbal value returned by GSTN.",
                  "properties": {
                    "tx": {
                      "type": "number",
                      "description": "Tax Balance"
                    },
                    "intr": {
                      "type": "number",
                      "description": "interest Balance"
                    },
                    "pen": {
                      "type": "number",
                      "description": "penalty Balance"
                    },
                    "oth": {
                      "type": "number",
                      "description": "others Balance"
                    },
                    "fee": {
                      "type": "number",
                      "description": "fees Balance"
                    },
                    "tot": {
                      "type": "number",
                      "description": "total Balance"
                    }
                  }
                },
                "tr_typ": {
                  "type": "string",
                  "description": "Describes whether it is Credit or Debit"
                },
                "dschrg_typ": {
                  "type": "string",
                  "description": "The dschrg typ value returned by GSTN.",
                  "example": ""
                }
              }
            }
          }
        }
      },
      "GetReturnLiabilityLedgerSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetReturnLiabilityLedgerSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetReturnLiabilityLedgerResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetReturnLiabilityLedgerSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetTaxpayerNoticesSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Taxpayer Notices.",
        "properties": {
          "notices": {
            "type": "array",
            "description": "The notices value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "refId": {
                  "type": "string",
                  "description": "Notice reference identifier."
                },
                "arn": {
                  "type": "string",
                  "description": "Application reference number."
                },
                "moduleCd": {
                  "type": "string",
                  "description": "GSTN module code."
                },
                "alertCd": {
                  "type": "string",
                  "description": "Notice alert code."
                },
                "dateOfIssue": {
                  "type": "string",
                  "description": "Date the notice was issued."
                },
                "dateOfRespond": {
                  "type": "string",
                  "description": "Date the notice was responded to."
                }
              }
            }
          }
        }
      },
      "GetTaxpayerNoticesSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetTaxpayerNoticesSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetTaxpayerNoticesResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetTaxpayerNoticesSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "GetTaxpayerNoticeDetailsSuccessPayload": {
        "type": "object",
        "description": "Successful GSTN payload for Get Taxpayer Notice Details.",
        "properties": {
          "arn": {
            "type": "string",
            "description": "The arn value returned by GSTN."
          },
          "dateOfIssue": {
            "type": "string",
            "description": "The date Of Issue value returned by GSTN."
          },
          "noticeType": {
            "type": "string",
            "description": "The notice Type value returned by GSTN."
          },
          "dueDateOfReply": {
            "type": "string",
            "description": "The due Date Of Reply value returned by GSTN."
          },
          "taxPeriod": {
            "type": "object",
            "description": "The tax Period value returned by GSTN.",
            "properties": {
              "fromMonth": {
                "type": "string",
                "description": "The from Month value returned by GSTN."
              },
              "toMonth": {
                "type": "string",
                "description": "The to Month value returned by GSTN."
              },
              "fromYear": {
                "type": "string",
                "description": "The from Year value returned by GSTN."
              },
              "toYear": {
                "type": "string",
                "description": "The to Year value returned by GSTN."
              }
            }
          },
          "maindocs": {
            "type": "array",
            "description": "The maindocs value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "dcupdtls": {
                  "type": "object",
                  "description": "Uploaded document details.",
                  "properties": {
                    "docName": {
                      "type": "string",
                      "description": "Document name."
                    },
                    "ct": {
                      "type": "string",
                      "description": "Document content type."
                    },
                    "ty": {
                      "type": "string",
                      "description": "Document type."
                    },
                    "id": {
                      "type": "string",
                      "description": "Main-document identifier."
                    }
                  }
                },
                "hash": {
                  "type": "string",
                  "description": "Document integrity hash."
                }
              }
            }
          },
          "suppdocs": {
            "type": "array",
            "description": "The suppdocs value returned by GSTN.",
            "items": {
              "type": "object",
              "properties": {
                "dcupdtls": {
                  "type": "object",
                  "description": "Uploaded document details.",
                  "properties": {
                    "docName": {
                      "type": "string",
                      "description": "Document name."
                    },
                    "ct": {
                      "type": "string",
                      "description": "Document content type."
                    },
                    "ty": {
                      "type": "string",
                      "description": "Document type."
                    },
                    "id": {
                      "type": "string",
                      "description": "Supporting-document identifier."
                    }
                  }
                },
                "hash": {
                  "type": "string",
                  "description": "Document integrity hash."
                }
              }
            }
          }
        }
      },
      "GetTaxpayerNoticeDetailsSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/TaxpayerResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "The GSTN success wrapper.",
                "required": [
                  "status_cd",
                  "data"
                ],
                "properties": {
                  "status_cd": {
                    "type": "string",
                    "enum": [
                      "1"
                    ],
                    "description": "GSTN success status.",
                    "example": "1"
                  },
                  "data": {
                    "$ref": "#/components/schemas/GetTaxpayerNoticeDetailsSuccessPayload"
                  }
                }
              }
            }
          }
        ]
      },
      "GetTaxpayerNoticeDetailsResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetTaxpayerNoticeDetailsSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/GstnBusinessErrorResponse"
          }
        ],
        "description": "A GSTN success or GSTN business-failure response. Both variants use HTTP 200."
      },
      "Gstr3bInterStateSupply": {
        "type": "object",
        "description": "Inter-state supply totals for a place of supply.",
        "properties": {
          "pos": {
            "type": "string",
            "description": "Place-of-supply state or Union Territory code."
          },
          "txval": {
            "type": "number",
            "description": "Taxable value."
          },
          "iamt": {
            "type": "number",
            "description": "Integrated tax amount."
          }
        }
      },
      "Gstr1EcomData": {
        "type": "object",
        "properties": {
          "b2b": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP"
                            ]
                          },
                          "flag": {
                            "type": "string",
                            "enum": [
                              "N",
                              "E",
                              "D"
                            ],
                            "description": "tax payer action"
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "val",
                          "itms",
                          "inv_typ",
                          "flag",
                          "pos",
                          "idt",
                          "inum",
                          "sply_ty",
                          "chksum"
                        ]
                      },
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP"
                            ]
                          },
                          "flag": {
                            "description": "tax payer action",
                            "type": "string",
                            "enum": [
                              "D"
                            ]
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "flag",
                          "idt",
                          "inum",
                          "sply_ty",
                          "chksum"
                        ]
                      }
                    ]
                  }
                },
                "rtin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Receiver taxpayer"
                },
                "stin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Supplier taxpayer"
                }
              },
              "required": [
                "inv",
                "rtin",
                "stin"
              ]
            }
          },
          "b2c": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Supplier taxpayer"
                },
                "csamt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "Cess Amount as per invoice"
                },
                "samt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "SGST Amount as per invoice"
                },
                "rt": {
                  "description": "rate",
                  "type": "number",
                  "minimum": 0,
                  "maximum": 999.99
                },
                "flag": {
                  "type": "string",
                  "enum": [
                    "N",
                    "E",
                    "D"
                  ],
                  "description": "tax payer action"
                },
                "pos": {
                  "type": "string",
                  "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                  "maxLength": 2,
                  "minLength": 2,
                  "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                },
                "txval": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "Taxable value of Goods or Service as per invoice"
                },
                "camt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "CGST Amount as per invoice"
                },
                "iamt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "IGST Amount as per invoice"
                },
                "sply_ty": {
                  "description": "Supply Type of B2cs",
                  "type": "string",
                  "maxLength": 5,
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "chksum": {
                  "maxLength": 64,
                  "description": "Invoice checksum",
                  "type": "string",
                  "pattern": "^[a-zA-Z0-9]+$",
                  "minLength": 1
                }
              },
              "required": [
                "stin",
                "rt",
                "flag",
                "pos",
                "txval",
                "sply_ty",
                "chksum"
              ]
            }
          },
          "urp2b": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "flag": {
                            "type": "string",
                            "enum": [
                              "N",
                              "E",
                              "D"
                            ],
                            "description": "tax payer action"
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "SEWP",
                              "DE",
                              "SEWOP"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "val",
                          "itms",
                          "flag",
                          "pos",
                          "idt",
                          "inum",
                          "sply_ty",
                          "inv_typ",
                          "chksum"
                        ]
                      },
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "flag": {
                            "description": "tax payer action",
                            "type": "string",
                            "enum": [
                              "D"
                            ]
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "SEWP",
                              "DE",
                              "SEWOP"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "flag",
                          "idt",
                          "inum",
                          "sply_ty",
                          "inv_typ",
                          "chksum"
                        ]
                      }
                    ]
                  }
                },
                "rtin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Receiver taxpayer"
                }
              },
              "required": [
                "inv",
                "rtin"
              ]
            }
          },
          "urp2c": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "csamt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "Cess Amount as per invoice"
                },
                "samt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "SGST Amount as per invoice"
                },
                "rt": {
                  "description": "rate",
                  "type": "number",
                  "minimum": 0,
                  "maximum": 999.99
                },
                "flag": {
                  "type": "string",
                  "enum": [
                    "N",
                    "E",
                    "D"
                  ],
                  "description": "tax payer action"
                },
                "pos": {
                  "type": "string",
                  "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                  "maxLength": 2,
                  "minLength": 2,
                  "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                },
                "txval": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "Taxable value of Goods or Service as per invoice"
                },
                "camt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "CGST Amount as per invoice"
                },
                "iamt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "IGST Amount as per invoice"
                },
                "sply_ty": {
                  "description": "Supply Type of UR2C",
                  "type": "string",
                  "maxLength": 5,
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "chksum": {
                  "maxLength": 64,
                  "description": "Invoice checksum",
                  "type": "string",
                  "pattern": "^[a-zA-Z0-9]+$",
                  "minLength": 1
                }
              },
              "required": [
                "rt",
                "flag",
                "pos",
                "txval",
                "sply_ty",
                "chksum"
              ]
            }
          }
        }
      },
      "Gstr1EcomaData": {
        "type": "object",
        "properties": {
          "b2ba": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP"
                            ]
                          },
                          "flag": {
                            "type": "string",
                            "enum": [
                              "N",
                              "E",
                              "D"
                            ],
                            "description": "tax payer action"
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "oinum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Original Supplier Invoice Number"
                          },
                          "oidt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Original Supplier Invoice Date"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "val",
                          "itms",
                          "inv_typ",
                          "flag",
                          "pos",
                          "idt",
                          "inum",
                          "oinum",
                          "oidt",
                          "sply_ty",
                          "chksum"
                        ]
                      },
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP"
                            ]
                          },
                          "flag": {
                            "description": "tax payer action",
                            "type": "string",
                            "enum": [
                              "D"
                            ]
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "oinum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Original Supplier Invoice Number"
                          },
                          "oidt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Original Supplier Invoice Date"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "flag",
                          "idt",
                          "inum",
                          "sply_ty",
                          "chksum"
                        ]
                      }
                    ]
                  }
                },
                "rtin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Receiver taxpayer"
                },
                "stin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Supplier taxpayer"
                }
              },
              "required": [
                "inv",
                "rtin",
                "stin"
              ]
            }
          },
          "b2ca": {
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "type": "object",
                  "properties": {
                    "posItms": {
                      "type": "array",
                      "items": {
                        "anyOf": [
                          {
                            "type": "object",
                            "properties": {
                              "stin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "itms": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "IGST Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "flag": {
                                "type": "string",
                                "enum": [
                                  "N",
                                  "E",
                                  "D"
                                ],
                                "description": "tax payer action"
                              },
                              "sply_ty": {
                                "description": "Supply Type of Ecom B2C",
                                "type": "string",
                                "maxLength": 5,
                                "enum": [
                                  "INTER",
                                  "INTRA"
                                ]
                              },
                              "omon": {
                                "description": "Original Month",
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                              },
                              "chksum": {
                                "maxLength": 64,
                                "description": "Invoice checksum",
                                "type": "string",
                                "pattern": "^[a-zA-Z0-9]+$",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "stin",
                              "flag",
                              "sply_ty",
                              "omon",
                              "chksum"
                            ]
                          },
                          {
                            "type": "object",
                            "properties": {
                              "stin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "itms": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "IGST Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "flag": {
                                "type": "string",
                                "enum": [
                                  "N",
                                  "E",
                                  "D"
                                ],
                                "description": "tax payer action"
                              },
                              "sply_ty": {
                                "description": "Supply Type of Ecom B2C",
                                "type": "string",
                                "maxLength": 5,
                                "enum": [
                                  "INTER",
                                  "INTRA"
                                ]
                              },
                              "omon": {
                                "description": "Original Month",
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                              },
                              "chksum": {
                                "maxLength": 64,
                                "description": "Invoice checksum",
                                "type": "string",
                                "pattern": "^[a-zA-Z0-9]+$",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "stin",
                              "flag",
                              "sply_ty",
                              "omon",
                              "chksum"
                            ]
                          }
                        ]
                      }
                    },
                    "pos": {
                      "type": "string",
                      "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                      "maxLength": 2,
                      "minLength": 2,
                      "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                    }
                  },
                  "required": [
                    "pos",
                    "posItms"
                  ]
                },
                {
                  "type": "object",
                  "properties": {
                    "posItms": {
                      "type": "array",
                      "items": {
                        "anyOf": [
                          {
                            "type": "object",
                            "properties": {
                              "stin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "itms": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "IGST Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "flag": {
                                "type": "string",
                                "enum": [
                                  "N",
                                  "E",
                                  "D"
                                ],
                                "description": "tax payer action"
                              },
                              "sply_ty": {
                                "description": "Supply Type of Ecom B2C",
                                "type": "string",
                                "maxLength": 5,
                                "enum": [
                                  "INTER",
                                  "INTRA"
                                ]
                              },
                              "omon": {
                                "description": "Original Month",
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                              },
                              "chksum": {
                                "maxLength": 64,
                                "description": "Invoice checksum",
                                "type": "string",
                                "pattern": "^[a-zA-Z0-9]+$",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "stin",
                              "flag",
                              "sply_ty",
                              "omon",
                              "chksum"
                            ]
                          },
                          {
                            "type": "object",
                            "properties": {
                              "stin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "itms": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "IGST Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "flag": {
                                "type": "string",
                                "enum": [
                                  "N",
                                  "E",
                                  "D"
                                ],
                                "description": "tax payer action"
                              },
                              "sply_ty": {
                                "description": "Supply Type of Ecom B2C",
                                "type": "string",
                                "maxLength": 5,
                                "enum": [
                                  "INTER",
                                  "INTRA"
                                ]
                              },
                              "omon": {
                                "description": "Original Month",
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                              },
                              "chksum": {
                                "maxLength": 64,
                                "description": "Invoice checksum",
                                "type": "string",
                                "pattern": "^[a-zA-Z0-9]+$",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "stin",
                              "flag",
                              "sply_ty",
                              "omon",
                              "chksum"
                            ]
                          }
                        ]
                      }
                    },
                    "pos": {
                      "type": "string",
                      "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                      "maxLength": 2,
                      "minLength": 2,
                      "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                    }
                  },
                  "required": [
                    "pos",
                    "posItms"
                  ]
                }
              ]
            }
          },
          "urp2ba": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "flag": {
                            "type": "string",
                            "enum": [
                              "N",
                              "E",
                              "D"
                            ],
                            "description": "tax payer action"
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "oinum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Original Supplier Invoice Number"
                          },
                          "oidt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Original Supplier Invoice Date"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "SEWP",
                              "SEWOP",
                              "DE"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "val",
                          "itms",
                          "flag",
                          "pos",
                          "idt",
                          "inum",
                          "oinum",
                          "oidt",
                          "sply_ty",
                          "inv_typ",
                          "chksum"
                        ]
                      },
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "flag": {
                            "description": "tax payer action",
                            "type": "string",
                            "enum": [
                              "D"
                            ]
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "oinum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Original Supplier Invoice Number"
                          },
                          "oidt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Original Supplier Invoice Date"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "SEWP",
                              "SEWOP",
                              "DE"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "flag",
                          "idt",
                          "inum",
                          "sply_ty",
                          "inv_typ",
                          "chksum"
                        ]
                      }
                    ]
                  }
                },
                "rtin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Receiver taxpayer"
                }
              },
              "required": [
                "inv",
                "rtin"
              ]
            }
          },
          "urp2ca": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "enum": [
                    "N",
                    "E",
                    "D"
                  ],
                  "description": "tax payer action"
                },
                "itms": {
                  "type": "array",
                  "minItems": 1,
                  "items": {
                    "type": "object",
                    "properties": {
                      "csamt": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "Cess Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "SGST Amount as per invoice"
                      },
                      "rt": {
                        "description": "rate",
                        "type": "number",
                        "minimum": 0,
                        "maximum": 999.99
                      },
                      "txval": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "Taxable value of Goods or Service as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "CGST Amount as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "IGST Amount as per invoice"
                      }
                    },
                    "required": [
                      "rt",
                      "txval"
                    ]
                  }
                },
                "pos": {
                  "type": "string",
                  "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                  "maxLength": 2,
                  "minLength": 2,
                  "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                },
                "sply_ty": {
                  "description": "Supply Type of UR2C",
                  "type": "string",
                  "maxLength": 5,
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "omon": {
                  "description": "Original Month",
                  "type": "string",
                  "minLength": 1,
                  "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                },
                "chksum": {
                  "maxLength": 64,
                  "description": "Invoice checksum",
                  "type": "string",
                  "pattern": "^[a-zA-Z0-9]+$",
                  "minLength": 1
                }
              },
              "required": [
                "flag",
                "pos",
                "sply_ty",
                "omon",
                "chksum"
              ]
            }
          }
        }
      },
      "Gstr1aEcomaData": {
        "type": "object",
        "properties": {
          "b2ba": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP"
                            ]
                          },
                          "flag": {
                            "type": "string",
                            "enum": [
                              "N",
                              "E",
                              "D"
                            ],
                            "description": "tax payer action"
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "oinum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Original Supplier Invoice Number"
                          },
                          "oidt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Original Supplier Invoice Date"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "val",
                          "itms",
                          "inv_typ",
                          "flag",
                          "pos",
                          "idt",
                          "inum",
                          "oinum",
                          "oidt",
                          "sply_ty",
                          "chksum"
                        ]
                      },
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP"
                            ]
                          },
                          "flag": {
                            "description": "tax payer action",
                            "type": "string",
                            "enum": [
                              "D"
                            ]
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "oinum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Original Supplier Invoice Number"
                          },
                          "oidt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Original Supplier Invoice Date"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "flag",
                          "idt",
                          "inum",
                          "sply_ty",
                          "chksum"
                        ]
                      }
                    ]
                  }
                },
                "rtin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Receiver taxpayer"
                },
                "stin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Supplier taxpayer"
                }
              },
              "required": [
                "inv",
                "rtin",
                "stin"
              ]
            }
          },
          "b2ca": {
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "type": "object",
                  "properties": {
                    "posItms": {
                      "type": "array",
                      "items": {
                        "anyOf": [
                          {
                            "type": "object",
                            "properties": {
                              "stin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "itms": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "IGST Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "flag": {
                                "type": "string",
                                "enum": [
                                  "N",
                                  "E",
                                  "D"
                                ],
                                "description": "tax payer action"
                              },
                              "sply_ty": {
                                "description": "Supply Type of Ecom B2C",
                                "type": "string",
                                "maxLength": 5,
                                "enum": [
                                  "INTER",
                                  "INTRA"
                                ]
                              },
                              "omon": {
                                "description": "Original Month",
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                              },
                              "ostin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "chksum": {
                                "maxLength": 64,
                                "description": "Invoice checksum",
                                "type": "string",
                                "pattern": "^[a-zA-Z0-9]+$",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "stin",
                              "flag",
                              "sply_ty",
                              "omon",
                              "chksum"
                            ]
                          },
                          {
                            "type": "object",
                            "properties": {
                              "stin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "itms": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "IGST Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "flag": {
                                "type": "string",
                                "enum": [
                                  "N",
                                  "E",
                                  "D"
                                ],
                                "description": "tax payer action"
                              },
                              "sply_ty": {
                                "description": "Supply Type of Ecom B2C",
                                "type": "string",
                                "maxLength": 5,
                                "enum": [
                                  "INTER",
                                  "INTRA"
                                ]
                              },
                              "omon": {
                                "description": "Original Month",
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                              },
                              "chksum": {
                                "maxLength": 64,
                                "description": "Invoice checksum",
                                "type": "string",
                                "pattern": "^[a-zA-Z0-9]+$",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "stin",
                              "flag",
                              "sply_ty",
                              "omon",
                              "chksum"
                            ]
                          }
                        ]
                      }
                    },
                    "pos": {
                      "type": "string",
                      "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                      "maxLength": 2,
                      "minLength": 2,
                      "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                    }
                  },
                  "required": [
                    "pos",
                    "posItms"
                  ]
                },
                {
                  "type": "object",
                  "properties": {
                    "posItms": {
                      "type": "array",
                      "items": {
                        "anyOf": [
                          {
                            "type": "object",
                            "properties": {
                              "stin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "itms": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "IGST Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "flag": {
                                "type": "string",
                                "enum": [
                                  "N",
                                  "E",
                                  "D"
                                ],
                                "description": "tax payer action"
                              },
                              "sply_ty": {
                                "description": "Supply Type of Ecom B2C",
                                "type": "string",
                                "maxLength": 5,
                                "enum": [
                                  "INTER",
                                  "INTRA"
                                ]
                              },
                              "omon": {
                                "description": "Original Month",
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                              },
                              "chksum": {
                                "maxLength": 64,
                                "description": "Invoice checksum",
                                "type": "string",
                                "pattern": "^[a-zA-Z0-9]+$",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "stin",
                              "flag",
                              "sply_ty",
                              "omon",
                              "chksum"
                            ]
                          },
                          {
                            "type": "object",
                            "properties": {
                              "stin": {
                                "anyOf": [
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                                  },
                                  {
                                    "type": "string",
                                    "maxLength": 15,
                                    "minLength": 15,
                                    "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                                  }
                                ],
                                "description": "GSTIN/UID of the Supplier taxpayer"
                              },
                              "itms": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Cess Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": -99999999999.99,
                                      "description": "IGST Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "flag": {
                                "type": "string",
                                "enum": [
                                  "N",
                                  "E",
                                  "D"
                                ],
                                "description": "tax payer action"
                              },
                              "sply_ty": {
                                "description": "Supply Type of Ecom B2C",
                                "type": "string",
                                "maxLength": 5,
                                "enum": [
                                  "INTER",
                                  "INTRA"
                                ]
                              },
                              "omon": {
                                "description": "Original Month",
                                "type": "string",
                                "minLength": 1,
                                "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                              },
                              "chksum": {
                                "maxLength": 64,
                                "description": "Invoice checksum",
                                "type": "string",
                                "pattern": "^[a-zA-Z0-9]+$",
                                "minLength": 1
                              }
                            },
                            "required": [
                              "stin",
                              "flag",
                              "sply_ty",
                              "omon",
                              "chksum"
                            ]
                          }
                        ]
                      }
                    },
                    "pos": {
                      "type": "string",
                      "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                      "maxLength": 2,
                      "minLength": 2,
                      "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                    }
                  },
                  "required": [
                    "pos",
                    "posItms"
                  ]
                }
              ]
            }
          },
          "urp2ba": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "flag": {
                            "type": "string",
                            "enum": [
                              "N",
                              "E",
                              "D"
                            ],
                            "description": "tax payer action"
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "oinum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Original Supplier Invoice Number"
                          },
                          "oidt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Original Supplier Invoice Date"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "SEWP",
                              "SEWOP",
                              "DE"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "val",
                          "itms",
                          "flag",
                          "pos",
                          "idt",
                          "inum",
                          "oinum",
                          "oidt",
                          "sply_ty",
                          "inv_typ",
                          "chksum"
                        ]
                      },
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "flag": {
                            "description": "tax payer action",
                            "type": "string",
                            "enum": [
                              "D"
                            ]
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "oinum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Original Supplier Invoice Number"
                          },
                          "oidt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Original Supplier Invoice Date"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "SEWP",
                              "SEWOP",
                              "DE"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "flag",
                          "idt",
                          "inum",
                          "sply_ty",
                          "inv_typ",
                          "chksum"
                        ]
                      }
                    ]
                  }
                },
                "rtin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Receiver taxpayer"
                }
              },
              "required": [
                "inv",
                "rtin"
              ]
            }
          },
          "urp2ca": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "flag": {
                  "type": "string",
                  "enum": [
                    "N",
                    "E",
                    "D"
                  ],
                  "description": "tax payer action"
                },
                "itms": {
                  "type": "array",
                  "minItems": 1,
                  "items": {
                    "type": "object",
                    "properties": {
                      "csamt": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "Cess Amount as per invoice"
                      },
                      "samt": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "SGST Amount as per invoice"
                      },
                      "rt": {
                        "description": "rate",
                        "type": "number",
                        "minimum": 0,
                        "maximum": 999.99
                      },
                      "txval": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "Taxable value of Goods or Service as per invoice"
                      },
                      "camt": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "CGST Amount as per invoice"
                      },
                      "iamt": {
                        "type": "number",
                        "maximum": 99999999999.99,
                        "minimum": -99999999999.99,
                        "description": "IGST Amount as per invoice"
                      }
                    },
                    "required": [
                      "rt",
                      "txval"
                    ]
                  }
                },
                "pos": {
                  "type": "string",
                  "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                  "maxLength": 2,
                  "minLength": 2,
                  "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                },
                "sply_ty": {
                  "description": "Supply Type of UR2C",
                  "type": "string",
                  "maxLength": 5,
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "omon": {
                  "description": "Original Month",
                  "type": "string",
                  "minLength": 1,
                  "pattern": "^((0[1-9]|1[012])((19|20)\\d\\d))$"
                },
                "chksum": {
                  "maxLength": 64,
                  "description": "Invoice checksum",
                  "type": "string",
                  "pattern": "^[a-zA-Z0-9]+$",
                  "minLength": 1
                }
              },
              "required": [
                "flag",
                "pos",
                "sply_ty",
                "omon",
                "chksum"
              ]
            }
          }
        }
      },
      "Gstr1aEcomData": {
        "type": "object",
        "properties": {
          "b2b": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP"
                            ]
                          },
                          "flag": {
                            "type": "string",
                            "enum": [
                              "N",
                              "E",
                              "D"
                            ],
                            "description": "tax payer action"
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "val",
                          "itms",
                          "inv_typ",
                          "flag",
                          "pos",
                          "idt",
                          "inum",
                          "sply_ty",
                          "chksum"
                        ]
                      },
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "DE",
                              "SEWP",
                              "SEWOP"
                            ]
                          },
                          "flag": {
                            "description": "tax payer action",
                            "type": "string",
                            "enum": [
                              "D"
                            ]
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "flag",
                          "idt",
                          "inum",
                          "sply_ty",
                          "chksum"
                        ]
                      }
                    ]
                  }
                },
                "rtin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Receiver taxpayer"
                },
                "stin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Supplier taxpayer"
                }
              },
              "required": [
                "inv",
                "rtin",
                "stin"
              ]
            }
          },
          "b2c": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "stin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Supplier taxpayer"
                },
                "csamt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "Cess Amount as per invoice"
                },
                "samt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "SGST Amount as per invoice"
                },
                "rt": {
                  "description": "rate",
                  "type": "number",
                  "minimum": 0,
                  "maximum": 999.99
                },
                "flag": {
                  "type": "string",
                  "enum": [
                    "N",
                    "E",
                    "D"
                  ],
                  "description": "tax payer action"
                },
                "pos": {
                  "type": "string",
                  "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                  "maxLength": 2,
                  "minLength": 2,
                  "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                },
                "txval": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "Taxable value of Goods or Service as per invoice"
                },
                "camt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "CGST Amount as per invoice"
                },
                "iamt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "IGST Amount as per invoice"
                },
                "sply_ty": {
                  "description": "Supply Type of B2cs",
                  "type": "string",
                  "maxLength": 5,
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "chksum": {
                  "maxLength": 64,
                  "description": "Invoice checksum",
                  "type": "string",
                  "pattern": "^[a-zA-Z0-9]+$",
                  "minLength": 1
                }
              },
              "required": [
                "stin",
                "rt",
                "flag",
                "pos",
                "txval",
                "sply_ty",
                "chksum"
              ]
            }
          },
          "urp2b": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "inv": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "flag": {
                            "type": "string",
                            "enum": [
                              "N",
                              "E",
                              "D"
                            ],
                            "description": "tax payer action"
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "SEWP",
                              "DE",
                              "SEWOP"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "val",
                          "itms",
                          "flag",
                          "pos",
                          "idt",
                          "inum",
                          "sply_ty",
                          "inv_typ",
                          "chksum"
                        ]
                      },
                      {
                        "type": "object",
                        "properties": {
                          "val": {
                            "type": "number",
                            "maximum": 9999999999999.99,
                            "minimum": 0,
                            "description": "Supplier Invoice Value"
                          },
                          "itms": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "num": {
                                  "description": "Serial no",
                                  "type": "integer",
                                  "minimum": 1
                                },
                                "itm_det": {
                                  "type": "object",
                                  "properties": {
                                    "rt": {
                                      "description": "rate",
                                      "type": "number",
                                      "minimum": 0,
                                      "maximum": 999.99
                                    },
                                    "txval": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Taxable value of Goods or Service as per invoice"
                                    },
                                    "iamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "IGST Amount as per invoice"
                                    },
                                    "camt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "CGST Amount as per invoice"
                                    },
                                    "samt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "SGST Amount as per invoice"
                                    },
                                    "csamt": {
                                      "type": "number",
                                      "maximum": 99999999999.99,
                                      "minimum": 0,
                                      "description": "Cess Amount as per invoice"
                                    }
                                  },
                                  "required": [
                                    "rt",
                                    "txval"
                                  ]
                                }
                              },
                              "required": [
                                "num",
                                "itm_det"
                              ]
                            }
                          },
                          "flag": {
                            "description": "tax payer action",
                            "type": "string",
                            "enum": [
                              "D"
                            ]
                          },
                          "pos": {
                            "type": "string",
                            "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                            "maxLength": 2,
                            "minLength": 2,
                            "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                          },
                          "idt": {
                            "type": "string",
                            "minLength": 1,
                            "pattern": "^(0[1-9]|1[0-9]|2[0-8]|29((?=-([0][13-9]|1[0-2])|(?=-(0[1-9]|1[0-2])-([0-9]{2}(0[48]|[13579][26]|[2468][048])|([02468][048]|[13579][26])00))))|30(?=-(0[13-9]|1[0-2]))|31(?=-(0[13578]|1[02])))-(0[1-9]|1[0-2])-[0-9]{4}$",
                            "description": "Supplier Invoice Date"
                          },
                          "inum": {
                            "type": "string",
                            "maxLength": 16,
                            "minLength": 1,
                            "pattern": "^(?=.{1,16}$)([/\\-0]*[a-zA-Z0-9/\\-]*[a-zA-Z1-9]+[a-zA-Z0-9/\\-]*)$",
                            "description": "Supplier Invoice Number"
                          },
                          "sply_ty": {
                            "description": "Supply Type of Ecom B2B",
                            "type": "string",
                            "maxLength": 5,
                            "enum": [
                              "INTER",
                              "INTRA"
                            ]
                          },
                          "inv_typ": {
                            "description": "Type of invoice",
                            "type": "string",
                            "enum": [
                              "R",
                              "SEWP",
                              "DE",
                              "SEWOP"
                            ]
                          },
                          "chksum": {
                            "maxLength": 64,
                            "description": "Invoice checksum",
                            "type": "string",
                            "pattern": "^[a-zA-Z0-9]+$",
                            "minLength": 1
                          }
                        },
                        "required": [
                          "flag",
                          "idt",
                          "inum",
                          "sply_ty",
                          "inv_typ",
                          "chksum"
                        ]
                      }
                    ]
                  }
                },
                "rtin": {
                  "anyOf": [
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}"
                    },
                    {
                      "type": "string",
                      "maxLength": 15,
                      "minLength": 15,
                      "pattern": "[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[D]{1}[0-9a-zA-Z]{1}"
                    }
                  ],
                  "description": "GSTIN/UID of the Receiver taxpayer"
                }
              },
              "required": [
                "inv",
                "rtin"
              ]
            }
          },
          "urp2c": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "csamt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "Cess Amount as per invoice"
                },
                "samt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "SGST Amount as per invoice"
                },
                "rt": {
                  "description": "rate",
                  "type": "number",
                  "minimum": 0,
                  "maximum": 999.99
                },
                "flag": {
                  "type": "string",
                  "enum": [
                    "N",
                    "E",
                    "D"
                  ],
                  "description": "tax payer action"
                },
                "pos": {
                  "type": "string",
                  "pattern": "^(3[0-8]|[12][0-9]|0[1-9]|96|97)$",
                  "maxLength": 2,
                  "minLength": 2,
                  "description": "Maintained in GST System common database Place of supply as provided in law / actual provision of service."
                },
                "txval": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "Taxable value of Goods or Service as per invoice"
                },
                "camt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "CGST Amount as per invoice"
                },
                "iamt": {
                  "type": "number",
                  "maximum": 99999999999.99,
                  "minimum": -99999999999.99,
                  "description": "IGST Amount as per invoice"
                },
                "sply_ty": {
                  "description": "Supply Type of UR2C",
                  "type": "string",
                  "maxLength": 5,
                  "enum": [
                    "INTER",
                    "INTRA"
                  ]
                },
                "chksum": {
                  "maxLength": 64,
                  "description": "Invoice checksum",
                  "type": "string",
                  "pattern": "^[a-zA-Z0-9]+$",
                  "minLength": 1
                }
              },
              "required": [
                "rt",
                "flag",
                "pos",
                "txval",
                "sply_ty",
                "chksum"
              ]
            }
          }
        }
      },
      "GenerateEInvoiceRequest": {
        "title": "GST-India Invoice Document",
        "required": [
          "BuyerDtls",
          "DocDtls",
          "ItemList",
          "SellerDtls",
          "TranDtls",
          "ValDtls",
          "Version"
        ],
        "type": "object",
        "properties": {
          "Version": {
            "maxLength": 6,
            "minLength": 1,
            "type": "string",
            "description": "Version of the schema"
          },
          "Irn": {
            "maxLength": 64,
            "minLength": 64,
            "type": "string",
            "nullable": true,
            "description": "Invoice Reference Number"
          },
          "TranDtls": {
            "required": [
              "SupTyp",
              "TaxSch"
            ],
            "type": "object",
            "properties": {
              "TaxSch": {
                "maxLength": 10,
                "minLength": 3,
                "pattern": "^(GST)$",
                "type": "string",
                "description": "GST- Goods and Services Tax Scheme",
                "enum": [
                  "GST"
                ]
              },
              "SupTyp": {
                "maxLength": 10,
                "minLength": 3,
                "pattern": "^((B2B)|(SEZWP)|(SEZWOP)|(EXPWP)|(EXPWOP)|(DEXP))$",
                "type": "string",
                "description": "Type of Supply: B2B-Business to Business, SEZWP - SEZ with payment, SEZWOP - SEZ without payment, EXPWP - Export with Payment, EXPWOP - Export without payment,DEXP - Deemed Export",
                "enum": [
                  "B2B",
                  "SEZWP",
                  "SEZWOP",
                  "EXPWP",
                  "EXPWOP",
                  "DEXP"
                ]
              },
              "RegRev": {
                "maxLength": 1,
                "minLength": 1,
                "pattern": "^([Y|N]{1})$",
                "type": "string",
                "nullable": true,
                "description": "Y- whether the tax liability is payable under reverse charge",
                "enum": [
                  "Y",
                  "N"
                ]
              },
              "EcmGstin": {
                "maxLength": 15,
                "minLength": 15,
                "pattern": "^([0-9]{2}[0-9A-Z]{13})$",
                "type": "string",
                "nullable": true,
                "description": "GSTIN of e-Commerce operator"
              },
              "IgstOnIntra": {
                "maxLength": 1,
                "minLength": 1,
                "pattern": "^([Y|N]{1})$",
                "type": "string",
                "nullable": true,
                "description": "Y- indicates the supply is intra state but chargeable to IGST",
                "enum": [
                  "Y",
                  "N"
                ]
              }
            }
          },
          "DocDtls": {
            "required": [
              "Dt",
              "No",
              "Typ"
            ],
            "type": "object",
            "properties": {
              "Typ": {
                "maxLength": 3,
                "minLength": 3,
                "pattern": "^((INV)|(CRN)|(DBN))$",
                "type": "string",
                "description": "Document Type: INVOICE, CREDIT NOTE, DEBIT NOTE",
                "enum": [
                  "INV",
                  "CRN",
                  "DBN"
                ]
              },
              "No": {
                "maxLength": 16,
                "minLength": 1,
                "pattern": "^([a-zA-Z1-9]{1}[a-zA-Z0-9/-]{0,15})$",
                "type": "string",
                "description": "Document Number"
              },
              "Dt": {
                "maxLength": 10,
                "minLength": 10,
                "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                "type": "string",
                "description": "Document Date"
              }
            }
          },
          "SellerDtls": {
            "required": [
              "Addr1",
              "Gstin",
              "LglNm",
              "Loc",
              "Pin",
              "Stcd"
            ],
            "type": "object",
            "properties": {
              "Gstin": {
                "maxLength": 15,
                "minLength": 15,
                "pattern": "^([0-9]{2}[0-9A-Z]{13})$",
                "type": "string",
                "description": "GSTIN of supplier"
              },
              "LglNm": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Legal Name"
              },
              "TrdNm": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Tradename"
              },
              "Addr1": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Building/Flat no, Road/Street"
              },
              "Addr2": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Address 2 of the supplier (Floor no., Name of the premises/building)"
              },
              "Loc": {
                "maxLength": 50,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Location"
              },
              "Pin": {
                "maximum": 999999,
                "minimum": 100000,
                "type": "number",
                "description": "Pincode"
              },
              "Stcd": {
                "maxLength": 2,
                "minLength": 1,
                "pattern": "^(?!0+$)([0-9]{1,2})$",
                "type": "string",
                "description": "State Code of the supplier. Refer the master"
              },
              "Ph": {
                "maxLength": 12,
                "minLength": 6,
                "pattern": "^([0-9]{6,12})$",
                "type": "string",
                "nullable": true,
                "description": "Phone or Mobile No."
              },
              "Em": {
                "maxLength": 100,
                "minLength": 6,
                "pattern": "^[a-zA-Z0-9+_.-]+@[a-zA-Z0-9.-]+$",
                "type": "string",
                "nullable": true,
                "description": "Email-Id"
              }
            }
          },
          "BuyerDtls": {
            "required": [
              "Addr1",
              "Gstin",
              "LglNm",
              "Loc",
              "Pos",
              "Stcd"
            ],
            "type": "object",
            "properties": {
              "Gstin": {
                "maxLength": 15,
                "minLength": 3,
                "pattern": "^(([0-9]{2}[0-9A-Z]{13})|URP)$",
                "type": "string",
                "description": "GSTIN of buyer , URP if exporting"
              },
              "LglNm": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Legal Name"
              },
              "TrdNm": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Trade Name"
              },
              "Pos": {
                "maxLength": 2,
                "minLength": 1,
                "pattern": "^(?!0+$)([0-9]{1,2})$",
                "type": "string",
                "description": "State code of Place of supply. If POS lies outside the country, the code shall be 96."
              },
              "Addr1": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Address 1 of the buyer. (Building/Flat no., Road/Street etc.)"
              },
              "Addr2": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Address 2 of the buyer. (Floor no., Name of the premises/ building)"
              },
              "Loc": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Location"
              },
              "Pin": {
                "maximum": 999999,
                "minimum": 100000,
                "type": "number",
                "description": "Pincode"
              },
              "Stcd": {
                "maxLength": 2,
                "minLength": 1,
                "pattern": "^(?!0+$)([0-9]{1,2})$",
                "type": "string",
                "description": "State Code of the buyer. Refer the master"
              },
              "Ph": {
                "maxLength": 12,
                "minLength": 6,
                "pattern": "^([0-9]{6,12})$",
                "type": "string",
                "nullable": true,
                "description": "Phone or Mobile No."
              },
              "Em": {
                "maxLength": 100,
                "minLength": 6,
                "pattern": "^[a-zA-Z0-9+_.-]+@[a-zA-Z0-9.-]+$",
                "type": "string",
                "nullable": true,
                "description": "Email-Id"
              }
            }
          },
          "DispDtls": {
            "required": [
              "Addr1",
              "Loc",
              "Nm",
              "Pin",
              "Stcd"
            ],
            "type": "object",
            "nullable": true,
            "properties": {
              "Nm": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Name of the company from which the goods are dispatched"
              },
              "Addr1": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Address 1 of the entity from which goods are dispatched. (Building/Flat no.Road/Street etc.)"
              },
              "Addr2": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Address 2 of the entity from which goods are dispatched. (Floor no., Name of the premises/building)"
              },
              "Loc": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Location"
              },
              "Pin": {
                "maximum": 999999,
                "minimum": 100000,
                "type": "number",
                "description": "Pincode"
              },
              "Stcd": {
                "maxLength": 2,
                "minLength": 1,
                "pattern": "^(?!0+$)([0-9]{1,2})$",
                "type": "string",
                "description": "State Code. Refer the master"
              }
            }
          },
          "ShipDtls": {
            "required": [
              "Addr1",
              "LglNm",
              "Loc",
              "Pin",
              "Stcd",
              "Gstin"
            ],
            "type": "object",
            "nullable": true,
            "properties": {
              "Gstin": {
                "maxLength": 15,
                "minLength": 3,
              "pattern": "^(([0-9]{2}[0-9A-Z]{13})|URP)$",
              "type": "string",
              "description": "GSTIN of entity to whom goods are shipped"
              },
              "LglNm": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Legal Name"
              },
              "TrdNm": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Trade Name"
              },
              "Addr1": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Address1 of the entity to whom the supplies are shipped to. (Building/Flat no., Road/Street etc.)"
              },
              "Addr2": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Address 2 of the entity to whom the supplies are shipped to. (Floor no., Name of the premises/building)."
              },
              "Loc": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "description": "Place (City,Town,Village) entity to whom the supplies are shipped to."
              },
              "Pin": {
                "maximum": 999999,
                "minimum": 100000,
                "type": "number",
                "description": "Pincode"
              },
              "Stcd": {
                "maxLength": 2,
                "minLength": 1,
                "pattern": "^(?!0+$)([0-9]{1,2})$",
                "type": "string",
                "description": "State Code to which supplies are shipped to. Refer the master"
              }
            }
          },
          "ItemList": {
            "type": "array",
            "items": {
              "required": [
                "AssAmt",
                "GstRt",
                "HsnCd",
                "IsServc",
                "SlNo",
                "TotAmt",
                "TotItemVal",
                "UnitPrice"
              ],
              "type": "object",
              "properties": {
                "SlNo": {
                  "maxLength": 6,
                  "minLength": 1,
                  "pattern": "^([0-9]{1,6})$",
                  "type": "string",
                  "description": "Serial No. of Item"
                },
                "PrdDesc": {
                  "maxLength": 300,
                  "minLength": 3,
                  "pattern": "^([^\\\"])*$",
                  "type": "string",
                  "nullable": true,
                  "description": "Product Description"
                },
                "IsServc": {
                  "maxLength": 1,
                  "minLength": 1,
                  "pattern": "^([Y|N]{1})$",
                  "type": "string",
                  "description": "Specify whether the supply is service or not. Specify Y-for Service",
                  "enum": [
                    "Y",
                    "N"
                  ]
                },
                "HsnCd": {
                  "maxLength": 8,
                  "minLength": 4,
                  "pattern": "^(?!0+$)([0-9]{4}|[0-9]{6}|[0-9]{8})$",
                  "type": "string",
                  "description": "HSN Code. Refer Master"
                },
                "Barcde": {
                  "maxLength": 30,
                  "minLength": 3,
                  "pattern": "^([^\\\"])*$",
                  "type": "string",
                  "nullable": true,
                  "description": "Bar Code"
                },
                "Qty": {
                  "maximum": 9999999999.999,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Quantity"
                },
                "FreeQty": {
                  "maximum": 9999999999.999,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Free Quantity"
                },
                "Unit": {
                  "maxLength": 8,
                  "minLength": 3,
                  "pattern": "^([A-Z|a-z]{3,8})$",
                  "type": "string",
                  "nullable": true,
                  "description": "Unit. Refer the master"
                },
                "UnitPrice": {
                  "maximum": 999999999999.999,
                  "minimum": 0,
                  "type": "number",
                  "description": "Unit Price - Rate"
                },
                "TotAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "description": "Gross Amount (Unit Price * Quantity)"
                },
                "Discount": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Discount"
                },
                "PreTaxVal": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Pre tax value"
                },
                "AssAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "description": "Taxable Value (Total Amount -Discount)"
                },
                "GstRt": {
                  "maximum": 999.999,
                  "minimum": 0,
                  "type": "number",
                  "description": "The GST rate, represented as percentage that applies to the invoiced item. It will IGST rate only."
                },
                "IgstAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Amount of IGST payable."
                },
                "CgstAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Amount of CGST payable."
                },
                "SgstAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Amount of SGST payable."
                },
                "CesRt": {
                  "maximum": 999.999,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Cess Rate"
                },
                "CesAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Cess Amount(Advalorem) on basis of rate and quantity of item"
                },
                "CesNonAdvlAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Cess Non-Advol Amount"
                },
                "StateCesRt": {
                  "maximum": 999.999,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "State CESS Rate"
                },
                "StateCesAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "State CESS Amount"
                },
                "StateCesNonAdvlAmt": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "State CESS Non Adval Amount"
                },
                "OthChrg": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "nullable": true,
                  "description": "Other Charges"
                },
                "TotItemVal": {
                  "maximum": 999999999999.99,
                  "minimum": 0,
                  "type": "number",
                  "description": "Total Item Value = Assessable Amount + CGST Amt + SGST Amt + Cess Amt + CesNonAdvlAmt + StateCesAmt + StateCesNonAdvlAmt+Otherchrg"
                },
                "OrdLineRef": {
                  "maxLength": 50,
                  "minLength": 1,
                  "pattern": "^([^\\\"])*$",
                  "type": "string",
                  "nullable": true,
                  "description": "Order line reference"
                },
                "OrgCntry": {
                  "maxLength": 2,
                  "minLength": 2,
                  "pattern": "^([A-Z|a-z]{2})$",
                  "type": "string",
                  "nullable": true,
                  "description": "Origin Country. Refer Master"
                },
                "PrdSlNo": {
                  "maxLength": 20,
                  "minLength": 1,
                  "pattern": "^([^\\\"])*$",
                  "type": "string",
                  "nullable": true,
                  "description": "Serial number in case of each item having a unique number."
                },
                "BchDtls": {
                  "required": [
                    "Nm"
                  ],
                  "type": "object",
                  "properties": {
                    "Nm": {
                      "maxLength": 20,
                      "minLength": 3,
                      "pattern": "^([^\\\"])*$",
                      "type": "string",
                      "description": "Batch number"
                    },
                    "ExpDt": {
                      "maxLength": 10,
                      "minLength": 10,
                      "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                      "type": "string",
                      "nullable": true,
                      "description": "Batch Expiry Date"
                    },
                    "WrDt": {
                      "maxLength": 10,
                      "minLength": 10,
                      "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                      "type": "string",
                      "nullable": true,
                      "description": "Warranty Date"
                    }
                  }
                },
                "AttribDtls": {
                  "type": "array",
                  "items": {
                    "required": [
                      "Nm",
                      "Val"
                    ],
                    "type": "object",
                    "properties": {
                      "Nm": {
                        "maxLength": 100,
                        "minLength": 1,
                        "pattern": "^([^\\\"])*$",
                        "type": "string",
                        "description": "Attribute name of the item"
                      },
                      "Val": {
                        "maxLength": 100,
                        "minLength": 1,
                        "pattern": "^([^\\\"])*$",
                        "type": "string",
                        "description": "Attribute value of the item"
                      }
                    }
                  }
                }
              }
            }
          },
          "ValDtls": {
            "required": [
              "AssVal",
              "TotInvVal"
            ],
            "type": "object",
            "properties": {
              "AssVal": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "description": "Total Assessable value of all items"
              },
              "CgstVal": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Total CGST value of all items"
              },
              "SgstVal": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Total SGST value of all items"
              },
              "IgstVal": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Total IGST value of all items"
              },
              "CesVal": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Total CESS value of all items"
              },
              "StCesVal": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Total State CESS value of all items"
              },
              "Discount": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Discount"
              },
              "OthChrg": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Other Charges"
              },
              "RndOffAmt": {
                "maximum": 99.99,
                "minimum": -99.99,
                "type": "number",
                "nullable": true,
                "description": "Rounded off amount"
              },
              "TotInvVal": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "description": "Final Invoice value"
              },
              "TotInvValFc": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Final Invoice value in Additional Currency"
              }
            }
          },
          "PayDtls": {
            "type": "object",
            "nullable": true,
            "properties": {
              "Nm": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Payee Name"
              },
              "AccDet": {
                "maxLength": 18,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Bank account number of payee"
              },
              "Mode": {
                "maxLength": 18,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Mode of Payment: Cash, Credit, Direct Transfer"
              },
              "FinInsBr": {
                "maxLength": 11,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Branch or IFSC code"
              },
              "PayTerm": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Terms of Payment"
              },
              "PayInstr": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Payment Instruction"
              },
              "CrTrn": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Credit Transfer"
              },
              "DirDr": {
                "maxLength": 100,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Direct Debit"
              },
              "CrDay": {
                "maximum": 9999,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Credit Days"
              },
              "PaidAmt": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "The sum of amount which have been paid in advance."
              },
              "PaymtDue": {
                "maximum": 99999999999999.98,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Outstanding amount that is required to be paid."
              }
            }
          },
          "RefDtls": {
            "type": "object",
            "nullable": true,
            "properties": {
              "InvRm": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Remarks/Note"
              },
              "DocPerdDtls": {
                "type": "object",
                "properties": {
                  "InvStDt": {
                    "maxLength": 10,
                    "minLength": 10,
                    "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                    "type": "string",
                    "nullable": true,
                    "description": "Invoice Period Start Date"
                  },
                  "InvEndDt": {
                    "maxLength": 10,
                    "minLength": 10,
                    "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                    "type": "string",
                    "nullable": true,
                    "description": "Invoice Period End Date"
                  }
                }
              },
              "PrecDocDtls": {
                "type": "array",
                "items": {
                  "required": [
                    "InvDt",
                    "InvNo"
                  ],
                  "type": "object",
                  "properties": {
                    "InvNo": {
                      "maxLength": 16,
                      "minLength": 1,
                      "pattern": "^[1-9a-zA-Z]{1}[0-9a-zA-Z/-]{1,15}$",
                      "type": "string",
                      "description": "Reference of original invoice, if any."
                    },
                    "InvDt": {
                      "maxLength": 10,
                      "minLength": 10,
                      "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                      "type": "string",
                      "description": "Date of preceding invoice"
                    },
                    "OthRefNo": {
                      "maxLength": 20,
                      "minLength": 1,
                      "pattern": "^([^\\\"])*$",
                      "type": "string",
                      "nullable": true,
                      "description": "Other Reference"
                    }
                  }
                }
              },
              "ContrDtls": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "RecAdvRefr": {
                      "maxLength": 20,
                      "minLength": 1,
                      "pattern": "^([^\\\"])*$",
                      "type": "string",
                      "nullable": true,
                      "description": "Receipt Advice No."
                    },
                    "RecAdvDt": {
                      "maxLength": 10,
                      "minLength": 10,
                      "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                      "type": "string",
                      "nullable": true,
                      "description": "Date of receipt advice"
                    },
                    "TendRefr": {
                      "maxLength": 20,
                      "minLength": 1,
                      "pattern": "^([^\\\"])*$",
                      "type": "string",
                      "nullable": true,
                      "description": "Lot/Batch Reference No."
                    },
                    "ContrRefr": {
                      "maxLength": 20,
                      "minLength": 1,
                      "pattern": "^([^\\\"])*$",
                      "type": "string",
                      "nullable": true,
                      "description": "Contract Reference Number"
                    },
                    "ExtRefr": {
                      "maxLength": 20,
                      "minLength": 1,
                      "pattern": "^([^\\\"])*$",
                      "type": "string",
                      "nullable": true,
                      "description": "Any other reference"
                    },
                    "ProjRefr": {
                      "maxLength": 20,
                      "minLength": 1,
                      "pattern": "^([^\\\"])*$",
                      "type": "string",
                      "nullable": true,
                      "description": "Project Reference Number"
                    },
                    "PORefr": {
                      "maxLength": 16,
                      "minLength": 1,
                      "pattern": "^([^\\\"])*$",
                      "type": "string",
                      "nullable": true,
                      "description": "PO Reference Number"
                    },
                    "PORefDt": {
                      "maxLength": 10,
                      "minLength": 10,
                      "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                      "type": "string",
                      "nullable": true,
                      "description": "POReferencedate"
                    }
                  }
                }
              }
            }
          },
          "AddlDocDtls": {
            "type": "array",
            "nullable": true,
            "items": {
              "type": "object",
              "properties": {
                "Url": {
                  "maxLength": 100,
                  "minLength": 3,
                  "pattern": "^([^\\\"])*$",
                  "type": "string",
                  "nullable": true,
                  "description": "Supporting document URL"
                },
                "Docs": {
                  "maxLength": 1000,
                  "minLength": 3,
                  "pattern": "^([^\\\"])*$",
                  "type": "string",
                  "nullable": true,
                  "description": "Supporting document in Base64 Format"
                },
                "Info": {
                  "maxLength": 1000,
                  "minLength": 3,
                  "pattern": "^([^\\\"])*$",
                  "type": "string",
                  "nullable": true,
                  "description": "Any additional information"
                }
              }
            }
          },
          "ExpDtls": {
            "type": "object",
            "nullable": true,
            "properties": {
              "ShipBNo": {
                "maxLength": 20,
                "minLength": 1,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Shipping Bill No."
              },
              "ShipBDt": {
                "maxLength": 10,
                "minLength": 10,
                "pattern": "^[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]$",
                "type": "string",
                "nullable": true,
                "description": "Shipping Bill Date"
              },
              "Port": {
                "maxLength": 10,
                "minLength": 2,
                "pattern": "^[0-9|A-Z|a-z]{2,10}$",
                "type": "string",
                "nullable": true,
                "description": "Port Code. Refer the master"
              },
              "RefClm": {
                "maxLength": 1,
                "minLength": 1,
                "pattern": "^([Y|N]{1})$",
                "type": "string",
                "nullable": true,
                "description": "Claiming Refund. Y/N"
              },
              "ForCur": {
                "maxLength": 16,
                "minLength": 3,
                "pattern": "^[A-Z|a-z]{3,16}$",
                "type": "string",
                "nullable": true,
                "description": "Additional Currency Code. Refer the master"
              },
              "CntCode": {
                "maxLength": 2,
                "minLength": 2,
                "pattern": "^([A-Z]{2})$",
                "type": "string",
                "nullable": true,
                "description": "Country Code. Refer the master"
              },
              "ExpDuty": {
                "maximum": 999999999999.99,
                "minimum": 0,
                "type": "number",
                "nullable": true,
                "description": "Export Duty"
              }
            }
          },
          "EwbDtls": {
            "required": [
              "Distance"
            ],
            "type": "object",
            "nullable": true,
            "properties": {
              "TransId": {
                "maxLength": 15,
                "minLength": 15,
                "pattern": "^([0-9]{2}[0-9A-Z]{13})$",
                "type": "string",
                "nullable": true,
                "description": "Transin/GSTIN"
              },
              "TransName": {
                "maxLength": 100,
                "minLength": 3,
                "pattern": "^([^\\\"])*$",
                "type": "string",
                "nullable": true,
                "description": "Name of the transporter"
              },
              "TransMode": {
                "maxLength": 1,
                "minLength": 1,
                "pattern": "^([1-4]{1})?$",
                "type": "string",
                "nullable": true,
                "description": "Mode of transport (Road-1, Rail-2, Air-3, Ship-4)",
                "enum": [
                  "1",
                  "2",
                  "3",
                  "4"
                ]
              },
              "Distance": {
                "maximum": 4000,
                "minimum": 0,
                "type": "number",
                "description": "Distance between source and destination PIN codes"
              },
              "TransDocNo": {
                "maxLength": 15,
                "minLength": 1,
                "pattern": "^([a-zA-Z0-9/-]{1,15})$",
                "type": "string",
                "nullable": true,
                "description": "Tranport Document Number"
              },
              "TransDocDt": {
                "maxLength": 10,
                "minLength": 10,
                "pattern": "^[a-zA-Z0-9]{1}[a-zA-Z0-9-/]*$",
                "type": "string",
                "nullable": true,
                "description": "Transport Document Date"
              },
              "VehNo": {
                "maxLength": 20,
                "minLength": 4,
                "pattern": "^([A-Z|a-z|0-9]{4,20})$",
                "type": "string",
                "nullable": true,
                "description": "Vehicle Number"
              },
              "VehType": {
                "maxLength": 1,
                "minLength": 1,
                "pattern": "^([O|R]{1})$",
                "type": "string",
                "nullable": true,
                "description": "Whether O-ODC or R-Regular",
                "enum": [
                  "O",
                  "R"
                ]
              }
            }
          }
        },
        "description": "GST Invoice format for IRN Generation in INDIA"
      },
      "EInvoiceAuthenticateRequest": {
        "required": [
          "password",
          "username",
          "gstin"
        ],
        "type": "object",
        "properties": {
          "password": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "gstin": {
            "maxLength": 15,
            "minLength": 15,
            "pattern": "^([0-9]{2}[0-9A-Z]{13})$",
            "type": "string"
          }
        }
      },
      "CancelEInvoiceRequest": {
        "type": "object",
        "properties": {
          "Irn": {
            "type": "string",
            "minLength": 64,
            "maxLength": 64,
            "description": "Invoice Reference Number"
          },
          "CnlRsn": {
            "type": "string",
            "minLength": 1,
            "maxLength": 1,
            "enum": [
              "1",
              "2",
              "3",
              "4"
            ],
            "description": "Cancel Reason 1- Duplicate, 2 - Data entry mistake, 3- Order Cancelled, 4 - Others"
          },
          "CnlRem": {
            "type": "string",
            "minLength": 0,
            "maxLength": 100,
            "description": "Cancel Remarks"
          }
        },
        "required": [
          "Irn",
          "CnlRsn"
        ]
      },
      "GenerateEWayBillByIrnRequest": {
        "type": "object",
        "required": [
          "Irn",
          "Distance"
        ],
        "properties": {
          "Irn": {
            "type": "string",
            "minLength": 64,
            "maxLength": 64,
            "description": "Irn Number"
          },
          "TransId": {
            "type": "string",
            "minLength": 15,
            "maxLength": 15,
            "pattern": "([0-9]{2}[0-9A-Z]{13})",
            "description": "Transin/GSTIN"
          },
          "TransName": {
            "type": "string",
            "minLength": 3,
            "maxLength": 100,
            "pattern": "^([^\\\"])*$",
            "description": "Name of the transporter"
          },
          "TransMode": {
            "type": "string",
            "maxLength": 1,
            "minLength": 1,
            "enum": [
              "1",
              "2",
              "3",
              "4"
            ],
            "pattern": "^([1-4]{1})?$",
            "description": "Mode of transport (Road-1, Rail-2, Air-3, Ship-4)"
          },
          "Distance": {
            "type": "number",
            "minimum": 0,
            "maximum": 4000,
            "description": "Distance between source and destination PIN codes"
          },
          "TransDocNo": {
            "type": "string",
            "minLength": 1,
            "maxLength": 15,
            "pattern": "^([a-zA-Z0-9/-]{1,15})$",
            "description": "Transport Document Number"
          },
          "TransDocDt": {
            "type": "string",
            "minLength": 10,
            "maxLength": 10,
            "pattern": "^[a-zA-Z0-9]{1}[a-zA-Z0-9-/]*$",
            "description": "Transport Document Date"
          },
          "VehNo": {
            "type": "string",
            "minLength": 4,
            "maxLength": 20,
            "pattern": "^([A-Z|a-z|0-9]{4,20})$",
            "description": "Vehicle Number"
          },
          "VehType": {
            "type": "string",
            "minLength": 1,
            "maxLength": 1,
            "enum": [
              "O",
              "R"
            ],
            "pattern": "^([O|R]{1})$",
            "description": "Whether O-ODC or R-Regular "
          },
          "ExpShipDtls": {
            "type": "object",
            "properties": {
              "Addr1": {
                "type": "string",
                "minLength": 3,
                "maxLength": 100,
                "pattern": "^([^\\\"])*$",
                "description": "Address1 of the entity to whom the supplies are shipped to. (Building/Flat no.,Road/Street etc.)"
              },
              "Addr2": {
                "type": "string",
                "minLength": 3,
                "maxLength": 100,
                "pattern": "^([^\\\"])*$",
                "description": "Address 2 of the entity to whom the supplies are shipped to. (Floor no., Name of the premises/building)."
              },
              "Loc": {
                "type": "string",
                "minLength": 3,
                "maxLength": 100,
                "pattern": "^([^\\\"])*$",
                "description": "Place (City,Town,Village) entity to whom the supplies are shipped to."
              },
              "Pin": {
                "type": "number",
                "minimum": 100000,
                "maximum": 999999,
                "description": "Pincode"
              },
              "Stcd": {
                "type": "string",
                "minLength": 1,
                "maxLength": 2,
                "pattern": "^(?!0+$)([0-9]{1,2})$",
                "description": "State Code to which supplies are shipped to. Refer the master"
              },
              "Gstin": {
                "type": "string",
                "minLength": 15,
                "maxLength": 15,
                "pattern": "^([0-9]{2}[0-9A-Z]{13})$",
                "description": "GSTIN of the entity to whom goods are shipped."
              },
              "TrdNm": {
                "type": "string",
                "minLength": 3,
                "maxLength": 100,
                "pattern": "^([^\\\"])*$",
                "description": "Trade name of the entity to whom goods are shipped."
              }
            },
            "required": [
              "Addr1",
              "Loc",
              "Pin",
              "Stcd"
            ]
          },
          "DispDtls": {
            "type": "object",
            "properties": {
              "Nm": {
                "type": "string",
                "minLength": 3,
                "maxLength": 100,
                "pattern": "^([^\\\"])*$",
                "description": "Name of the company from which the goods are dispatched"
              },
              "Addr1": {
                "type": "string",
                "minLength": 1,
                "maxLength": 100,
                "pattern": "^([^\\\"])*$",
                "description": "Address 1 of the entity from which goods are dispatched. (Building/Flat no.Road/Street etc.)"
              },
              "Addr2": {
                "type": "string",
                "minLength": 3,
                "maxLength": 100,
                "pattern": "^([^\\\"])*$",
                "description": "Address 2 of the entity from which goods are dispatched. (Floor no., Name of the premises/building)"
              },
              "Loc": {
                "type": "string",
                "minLength": 3,
                "maxLength": 100,
                "pattern": "^([^\\\"])*$",
                "description": "Location"
              },
              "Pin": {
                "type": "number",
                "minimum": 100000,
                "maximum": 999999,
                "description": "Pincode"
              },
              "Stcd": {
                "type": "string",
                "minLength": 1,
                "maxLength": 2,
                "pattern": "^(?!0+$)([0-9]{1,2})$",
                "description": "State Code. Refer the master"
              }
            },
            "required": [
              "Nm",
              "Addr1",
              "Loc",
              "Pin",
              "Stcd"
            ]
          }
        }
      },
      "SearchEInvoiceGstinRequest": {
        "required": [
          "gstin"
        ],
        "type": "object",
        "properties": {
          "gstin": {
            "maxLength": 15,
            "minLength": 15,
            "pattern": "^([0-9]{2}[0-9A-Z]{13})$",
            "type": "string"
          }
        }
      },
      "GenerateEInvoicePdfRequest": {
        "type": "object",
        "required": [
          "@entity",
          "irn",
          "signed_qr_code",
          "signed_invoice"
        ],
        "properties": {
          "@entity": {
            "type": "string",
            "default": "in.co.sandbox.gst.compliance.e-invoice.pdf.request",
            "description": "Entity name."
          },
          "irn": {
            "type": "string",
            "minLength": 64,
            "maxLength": 64,
            "description": "Invoice Reference Number."
          },
          "signed_qr_code": {
            "type": "string",
            "description": "Signed QR code returned by NIC."
          },
          "signed_invoice": {
            "type": "string",
            "description": "Signed e-Invoice returned by NIC."
          }
        }
      },
      "EInvoiceResponseMetadata": {
        "type": "object",
        "description": "Metadata returned with an e-Invoice API response.",
        "required": [
          "code",
          "timestamp",
          "transaction_id"
        ],
        "properties": {
          "code": {
            "type": "integer",
            "enum": [
              200
            ],
            "description": "HTTP-compatible Sandbox response code."
          },
          "timestamp": {
            "type": "integer",
            "format": "int64",
            "description": "Unix timestamp in milliseconds."
          },
          "transaction_id": {
            "type": "string",
            "description": "Request transaction identifier."
          }
        }
      },
      "EInvoiceErrorDetail": {
        "type": "object",
        "required": [
          "ErrorCode",
          "ErrorMessage"
        ],
        "properties": {
          "ErrorCode": {
            "type": "string",
            "description": "NIC error code."
          },
          "ErrorMessage": {
            "type": "string",
            "description": "NIC error message."
          }
        }
      },
      "EInvoiceInfoDetail": {
        "type": "object",
        "required": [
          "InfCd",
          "Desc"
        ],
        "properties": {
          "InfCd": {
            "type": "string",
            "description": "NIC informational code."
          },
          "Desc": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "required": [
                  "AckDt",
                  "AckNo",
                  "Irn"
                ],
                "properties": {
                  "AckDt": {
                    "type": "string"
                  },
                  "AckNo": {
                    "type": "integer",
                    "format": "int64"
                  },
                  "Irn": {
                    "type": "string",
                    "minLength": 64,
                    "maxLength": 64
                  }
                }
              }
            ],
            "description": "NIC informational message or duplicate-IRN acknowledgement details."
          }
        }
      },
      "EInvoiceBusinessErrorPayload": {
        "type": "object",
        "required": [
          "Data",
          "ErrorDetails",
          "Status"
        ],
        "properties": {
          "Data": {
            "type": "object",
            "nullable": true,
            "description": "Null for a NIC business-error response."
          },
          "ErrorDetails": {
            "type": "array",
            "minItems": 1,
            "items": {
              "$ref": "#/components/schemas/EInvoiceErrorDetail"
            },
            "nullable": true
          },
          "InfoDtls": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceInfoDetail"
            },
            "nullable": true
          },
          "Status": {
            "type": "integer",
            "enum": [
              0
            ],
            "description": "NIC business-error status."
          }
        }
      },
      "EInvoiceBusinessErrorResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EInvoiceResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "$ref": "#/components/schemas/EInvoiceBusinessErrorPayload"
              }
            }
          }
        ]
      },
      "EInvoicePlatformError": {
        "type": "object",
        "required": [
          "error_cd",
          "message"
        ],
        "properties": {
          "error_cd": {
            "type": "string",
            "description": "Platform error code."
          },
          "message": {
            "type": "string",
            "description": "Platform error message."
          }
        }
      },
      "EInvoicePlatformErrorPayload": {
        "type": "object",
        "required": [
          "error",
          "status_cd"
        ],
        "properties": {
          "error": {
            "$ref": "#/components/schemas/EInvoicePlatformError"
          },
          "status_cd": {
            "type": "string",
            "enum": [
              "0"
            ],
            "description": "Platform failure status."
          }
        }
      },
      "EInvoicePlatformErrorResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EInvoiceResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "$ref": "#/components/schemas/EInvoicePlatformErrorPayload"
              }
            }
          }
        ]
      },
      "EInvoiceAuthenticateSuccessPayload": {
        "type": "object",
        "required": [
          "Status",
          "access_token",
          "expiry"
        ],
        "properties": {
          "ErrorDetails": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceErrorDetail"
            },
            "nullable": true
          },
          "InfoDtls": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceInfoDetail"
            },
            "nullable": true
          },
          "Status": {
            "type": "integer",
            "enum": [
              1
            ]
          },
          "access_token": {
            "type": "string",
            "description": "Access token for subsequent e-Invoice calls."
          },
          "expiry": {
            "type": "integer",
            "format": "int64",
            "description": "Access-token expiry as a Unix timestamp in milliseconds."
          }
        }
      },
      "EInvoiceAuthenticateSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EInvoiceResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "$ref": "#/components/schemas/EInvoiceAuthenticateSuccessPayload"
              }
            }
          }
        ]
      },
      "EInvoiceAuthenticateResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/EInvoiceAuthenticateSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/EInvoiceBusinessErrorResponse"
          },
          {
            "$ref": "#/components/schemas/EInvoicePlatformErrorResponse"
          }
        ],
        "description": "Authentication success, NIC business error, or platform error. These variants use HTTP 200."
      },
      "EInvoiceDetails": {
        "description": "NIC e-Invoice payload returned at data.Data for a successful Sandbox response.",
        "type": "object",
        "properties": {
          "AckDt": {
            "type": "string",
            "description": "Date and time when the Invoice Registration Portal acknowledged the invoice."
          },
          "AckNo": {
            "type": "number",
            "description": "Acknowledgement number assigned by the Invoice Registration Portal.",
            "format": "int64"
          },
          "EwbDt": {
            "type": "string",
            "nullable": true,
            "description": "Date and time when the E-Way Bill was generated, if available."
          },
          "EwbNo": {
            "type": "number",
            "nullable": true,
            "description": "E-Way Bill number associated with the IRN, if available.",
            "format": "int64"
          },
          "EwbValidTill": {
            "type": "string",
            "nullable": true,
            "description": "Date and time until which the associated E-Way Bill is valid."
          },
          "Irn": {
            "type": "string",
            "minLength": 64,
            "maxLength": 64,
            "description": "Invoice Registration Number assigned to the e-Invoice."
          },
          "Remarks": {
            "type": "string",
            "nullable": true,
            "description": "Additional information returned by the Invoice Registration Portal."
          },
          "SignedInvoice": {
            "type": "string",
            "description": "Invoice payload digitally signed by the Invoice Registration Portal."
          },
          "SignedQRCode": {
            "type": "string",
            "description": "QR code payload digitally signed by the Invoice Registration Portal."
          },
          "Status": {
            "type": "string",
            "description": "Current status of the IRN, such as ACT for active or CNL for cancelled."
          }
        },
        "required": [
          "AckDt",
          "AckNo",
          "Irn",
          "SignedInvoice",
          "SignedQRCode",
          "Status"
        ]
      },
      "EInvoiceSuccessPayload": {
        "type": "object",
        "required": [
          "Data",
          "ErrorDetails",
          "InfoDtls",
          "Status"
        ],
        "properties": {
          "Data": {
            "$ref": "#/components/schemas/EInvoiceDetails"
          },
          "ErrorDetails": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceErrorDetail"
            },
            "nullable": true
          },
          "InfoDtls": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceInfoDetail"
            },
            "nullable": true
          },
          "Status": {
            "type": "integer",
            "enum": [
              1
            ],
            "description": "NIC success status."
          }
        }
      },
      "EInvoiceSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EInvoiceResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "$ref": "#/components/schemas/EInvoiceSuccessPayload"
              }
            }
          }
        ]
      },
      "GenerateEInvoiceResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/EInvoiceSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/EInvoiceBusinessErrorResponse"
          }
        ],
        "description": "A successful NIC response or a NIC business-error response. Both variants use HTTP 200."
      },
      "GetEInvoiceResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/EInvoiceSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/EInvoiceBusinessErrorResponse"
          }
        ],
        "description": "A successful NIC response or a NIC business-error response. Both variants use HTTP 200."
      },
      "CancelEInvoiceDetails": {
        "type": "object",
        "required": [
          "Irn",
          "CancelDate"
        ],
        "properties": {
          "Irn": {
            "type": "string",
            "minLength": 64,
            "maxLength": 64,
            "description": "Cancelled Invoice Reference Number."
          },
          "CancelDate": {
            "type": "string",
            "description": "Date and time when the IRN was cancelled."
          }
        }
      },
      "CancelEInvoiceSuccessPayload": {
        "type": "object",
        "required": [
          "Data",
          "ErrorDetails",
          "InfoDtls",
          "Status"
        ],
        "properties": {
          "Data": {
            "$ref": "#/components/schemas/CancelEInvoiceDetails"
          },
          "ErrorDetails": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceErrorDetail"
            },
            "nullable": true
          },
          "InfoDtls": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceInfoDetail"
            },
            "nullable": true
          },
          "Status": {
            "type": "integer",
            "enum": [
              1
            ],
            "description": "NIC success status."
          }
        }
      },
      "CancelEInvoiceSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EInvoiceResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "$ref": "#/components/schemas/CancelEInvoiceSuccessPayload"
              }
            }
          }
        ]
      },
      "CancelEInvoiceResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/CancelEInvoiceSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/EInvoiceBusinessErrorResponse"
          }
        ],
        "description": "A successful NIC response or a NIC business-error response. Both variants use HTTP 200."
      },
      "GenerateEWayBillByIrnDetails": {
        "type": "object",
        "required": [
          "EwbNo",
          "EwbDt",
          "EwbValidTill"
        ],
        "properties": {
          "EwbNo": {
            "type": "integer",
            "format": "int64",
            "description": "E-Way Bill number generated for the IRN."
          },
          "EwbDt": {
            "type": "string",
            "description": "Date and time when the E-Way Bill was generated."
          },
          "EwbValidTill": {
            "type": "string",
            "description": "Date and time until which the E-Way Bill is valid."
          },
          "Remarks": {
            "type": "string",
            "nullable": true,
            "description": "Additional information returned by NIC."
          }
        }
      },
      "GenerateEWayBillByIrnSuccessPayload": {
        "type": "object",
        "required": [
          "Data",
          "ErrorDetails",
          "InfoDtls",
          "Status"
        ],
        "properties": {
          "Data": {
            "$ref": "#/components/schemas/GenerateEWayBillByIrnDetails"
          },
          "ErrorDetails": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceErrorDetail"
            },
            "nullable": true
          },
          "InfoDtls": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceInfoDetail"
            },
            "nullable": true
          },
          "Status": {
            "type": "integer",
            "enum": [
              1
            ],
            "description": "NIC success status."
          }
        }
      },
      "GenerateEWayBillByIrnSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EInvoiceResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "$ref": "#/components/schemas/GenerateEWayBillByIrnSuccessPayload"
              }
            }
          }
        ]
      },
      "GenerateEWayBillByIrnResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GenerateEWayBillByIrnSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/EInvoiceBusinessErrorResponse"
          }
        ],
        "description": "A successful NIC response or a NIC business-error response. Both variants use HTTP 200."
      },
      "GetEWayBillByIrnDetails": {
        "description": "NIC E-Way Bill payload returned at data.Data for a successful Sandbox response.",
        "type": "object",
        "properties": {
          "EwbDt": {
            "type": "string",
            "description": "Date and time when the E-Way Bill was generated."
          },
          "EwbNo": {
            "type": "number",
            "description": "E-Way Bill number associated with the IRN.",
            "format": "int64"
          },
          "EwbValidTill": {
            "type": "string",
            "description": "Date and time until which the E-Way Bill is valid."
          },
          "GenGstin": {
            "type": "string",
            "description": "GSTIN that generated the E-Way Bill.",
            "minLength": 15,
            "maxLength": 15
          },
          "Status": {
            "type": "string",
            "description": "Current status of the E-Way Bill."
          }
        },
        "required": [
          "EwbNo",
          "EwbDt",
          "EwbValidTill",
          "GenGstin",
          "Status"
        ]
      },
      "GetEWayBillByIrnSuccessPayload": {
        "type": "object",
        "required": [
          "Data",
          "ErrorDetails",
          "InfoDtls",
          "Status"
        ],
        "properties": {
          "Data": {
            "$ref": "#/components/schemas/GetEWayBillByIrnDetails"
          },
          "ErrorDetails": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceErrorDetail"
            },
            "nullable": true
          },
          "InfoDtls": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceInfoDetail"
            },
            "nullable": true
          },
          "Status": {
            "type": "integer",
            "enum": [
              1
            ],
            "description": "NIC success status."
          }
        }
      },
      "GetEWayBillByIrnSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EInvoiceResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "$ref": "#/components/schemas/GetEWayBillByIrnSuccessPayload"
              }
            }
          }
        ]
      },
      "GetEWayBillByIrnResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/GetEWayBillByIrnSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/EInvoiceBusinessErrorResponse"
          }
        ],
        "description": "A successful NIC response or a NIC business-error response. Both variants use HTTP 200."
      },
      "SearchEInvoiceGstinDetails": {
        "description": "NIC taxpayer payload returned at data.Data for a successful Sandbox response.",
        "type": "object",
        "properties": {
          "AddrBnm": {
            "type": "string",
            "nullable": true,
            "description": "Registered building name."
          },
          "AddrBno": {
            "type": "string",
            "nullable": true,
            "description": "Registered building number."
          },
          "AddrFlno": {
            "type": "string",
            "nullable": true,
            "description": "Registered floor number."
          },
          "AddrLoc": {
            "type": "string",
            "nullable": true,
            "description": "Registered locality."
          },
          "AddrPncd": {
            "type": "number",
            "description": "PIN code of the registered address."
          },
          "AddrSt": {
            "type": "string",
            "nullable": true,
            "description": "Registered street name."
          },
          "BlkStatus": {
            "type": "string",
            "description": "Status indicating whether invoice or E-Way Bill generation is blocked for the GSTIN."
          },
          "DtDReg": {
            "type": "string",
            "nullable": true,
            "description": "GST registration cancellation date, if applicable."
          },
          "DtReg": {
            "type": "string",
            "nullable": true,
            "description": "GST registration date, if available."
          },
          "Gstin": {
            "type": "string",
            "minLength": 15,
            "maxLength": 15,
            "description": "GSTIN for which taxpayer details were requested.",
            "pattern": "^([0-9]{2}[0-9A-Z]{13})$"
          },
          "LegalName": {
            "type": "string",
            "description": "Legal name registered against the GSTIN."
          },
          "StateCode": {
            "type": "number",
            "description": "GST state code associated with the registered address."
          },
          "Status": {
            "type": "string",
            "description": "GST registration status, such as ACT for active."
          },
          "TradeName": {
            "type": "string",
            "nullable": true,
            "description": "Trade name registered against the GSTIN, if available."
          },
          "TxpType": {
            "type": "string",
            "description": "Taxpayer registration type."
          }
        },
        "required": [
          "AddrPncd",
          "BlkStatus",
          "Gstin",
          "LegalName",
          "StateCode",
          "Status",
          "TxpType"
        ]
      },
      "SearchEInvoiceGstinSuccessPayload": {
        "type": "object",
        "required": [
          "Data",
          "ErrorDetails",
          "InfoDtls",
          "Status"
        ],
        "properties": {
          "Data": {
            "$ref": "#/components/schemas/SearchEInvoiceGstinDetails"
          },
          "ErrorDetails": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceErrorDetail"
            },
            "nullable": true
          },
          "InfoDtls": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EInvoiceInfoDetail"
            },
            "nullable": true
          },
          "Status": {
            "type": "integer",
            "enum": [
              1
            ],
            "description": "NIC success status."
          }
        }
      },
      "SearchEInvoiceGstinSuccessResponse": {
        "allOf": [
          {
            "$ref": "#/components/schemas/EInvoiceResponseMetadata"
          },
          {
            "type": "object",
            "required": [
              "data"
            ],
            "properties": {
              "data": {
                "$ref": "#/components/schemas/SearchEInvoiceGstinSuccessPayload"
              }
            }
          }
        ]
      },
      "SearchEInvoiceGstinResponse": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/SearchEInvoiceGstinSuccessResponse"
          },
          {
            "$ref": "#/components/schemas/EInvoiceBusinessErrorResponse"
          }
        ],
        "description": "A successful NIC response or a NIC business-error response. Both variants use HTTP 200."
      },
      "EInvoicePdfTimestamp": {
        "oneOf": [
          {
            "type": "integer",
            "format": "int64",
            "description": "Unix timestamp in milliseconds."
          },
          {
            "type": "string",
            "format": "date-time",
            "description": "ISO 8601 timestamp."
          }
        ]
      },
      "GenerateEInvoicePdfData": {
        "type": "object",
        "required": [
          "@entity",
          "e-invoice_pdf_url",
          "irn"
        ],
        "properties": {
          "@entity": {
            "type": "string",
            "description": "Entity name for the generated PDF."
          },
          "e-invoice_pdf_url": {
            "type": "string",
            "format": "uri",
            "description": "Temporary URL of the generated e-Invoice PDF."
          },
          "irn": {
            "type": "string",
            "minLength": 64,
            "maxLength": 64,
            "description": "Invoice Reference Number."
          }
        }
      },
      "GenerateEInvoicePdfResponse": {
        "type": "object",
        "required": [
          "code",
          "data",
          "timestamp",
          "transaction_id"
        ],
        "properties": {
          "code": {
            "type": "integer",
            "enum": [
              200
            ]
          },
          "data": {
            "$ref": "#/components/schemas/GenerateEInvoicePdfData"
          },
          "timestamp": {
            "$ref": "#/components/schemas/EInvoicePdfTimestamp"
          },
          "transaction_id": {
            "type": "string"
          }
        }
      },
      "EInvoiceValidationErrorResponse": {
        "type": "object",
        "required": [
          "code",
          "message",
          "timestamp",
          "transaction_id"
        ],
        "properties": {
          "code": {
            "type": "integer",
            "enum": [
              422
            ]
          },
          "message": {
            "type": "string",
            "description": "Request validation error message."
          },
          "timestamp": {
            "type": "integer",
            "format": "int64"
          },
          "transaction_id": {
            "type": "string"
          }
        }
      },
      "Gstr2bCounterpartyGstin": {
       "type": "string",
       "description": "GSTIN or UIN of the counterparty.",
       "minLength": 15,
       "maxLength": 15
      }
    },
    "securitySchemes": {}
  },
  "security": []
}
